text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<p dir="auto">I run <code class="notranslate">pip install scrapy</code>, and it only gives me the error:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2557461/6941420/6aebc342-d8b2-11e4-9f6a-b1549981b424.png"><img src="https://cloud.githubusercontent.com/assets/2557461/6941420/6aebc342-d8b2-11e4-9f6a-b1549981b424.png" alt="screen shot 2015-04-01 at 9 01 34 pm" style="max-width: 100%;"></a></p> <p dir="auto">then I realized there is something wrong with <code class="notranslate">cryptography</code>, then I found this would be helpful: <a href="https://cryptography.io/en/latest/installation/#using-your-own-openssl-on-os-x" rel="nofollow">Install Cryptography using your own openssl on os x</a></p> <p dir="auto">Accroding to the link above, I run the following command:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ brew install openssl $ env ARCHFLAGS=&quot;-arch x86_64&quot; LDFLAGS=&quot;-L/usr/local/opt/openssl/lib&quot; CFLAGS=&quot;-I/usr/local/opt/openssl/include&quot; pip install cryptography $ pip install scrapy"><pre class="notranslate"><code class="notranslate">$ brew install openssl $ env ARCHFLAGS="-arch x86_64" LDFLAGS="-L/usr/local/opt/openssl/lib" CFLAGS="-I/usr/local/opt/openssl/include" pip install cryptography $ pip install scrapy </code></pre></div> <p dir="auto">Then I successfully installed scrapy.<br> I don't know whether it's common for OS X users, if so, I think maybe the installation guide could be more specific for OS X.</p> <p dir="auto">System: OS X Yosemite 10.10.2<br> Python : 2.7.9</p>
<p dir="auto">[jooddang@a ~]$ scrapy startproject tutorial<br> Traceback (most recent call last):<br> File "/usr/local/bin/scrapy", line 7, in <br> from scrapy.cmdline import execute<br> File "/Library/Python/2.7/site-packages/scrapy/<strong>init</strong>.py", line 48, in <br> from scrapy.spiders import Spider<br> File "/Library/Python/2.7/site-packages/scrapy/spiders/<strong>init</strong>.py", line 10, in <br> from scrapy.http import Request<br> File "/Library/Python/2.7/site-packages/scrapy/http/<strong>init</strong>.py", line 12, in <br> from scrapy.http.request.rpc import XmlRpcRequest<br> File "/Library/Python/2.7/site-packages/scrapy/http/request/rpc.py", line 7, in <br> from six.moves import xmlrpc_client as xmlrpclib<br> ImportError: cannot import name xmlrpc_client</p> <h1 dir="auto"></h1> <p dir="auto">On Python console</p> <blockquote> <blockquote> <blockquote> <p dir="auto">import scrapy</p> </blockquote> </blockquote> </blockquote> <p dir="auto">makes error - can't import _monkeypatches module</p>
1
<p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p> <p dir="auto">The <code class="notranslate">orm/inheritance/abc_inheritance</code> test relies upon <code class="notranslate">fold_equivalents</code> to spell out a UNION which builds a polymorphic discriminator column on the fly. This whole use case (i.e., joined table inheritance with no discriminator column) is more easily managed by using regular joined table inheritance, joining to all tables (i.e. with_polymorphic), and using a callable <code class="notranslate">polymorphic_on</code> function which checks for the presence of each joined table in order to determine the type. This is an easy enhancement and makes us compatible with Hibernate's joined table inheritance behavior. the whole <code class="notranslate">fold_equivalents</code> feature <del>which nobody is using anyway can then be removed</del> won't be needed in this case (a nicer fold_equivalents proposed in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384619824" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/1729" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/1729/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/1729">#1729</a>).</p>
<h3 dir="auto">Describe the bug</h3> <p dir="auto">It's not possible to create <code class="notranslate">type-decorator</code> for <code class="notranslate">postgresql</code> <code class="notranslate">Range</code> classes.</p> <h3 dir="auto">To Reproduce</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from dataclasses import dataclass from typing import Any from sqlalchemy import create_engine, TypeDecorator, literal, select from sqlalchemy.dialects.postgresql import INT4RANGE, Range engine = create_engine('...') @dataclass(frozen=True) class MyRange: start: int end: int class MyINT4RANGE(TypeDecorator): cache_ok = True impl = INT4RANGE def process_bind_param(self, value: Any, dialect: Any) -&gt; Any: match value: case MyRange(start, end): return Range(start, end, bounds='[]') case _: return value with engine.begin() as conn: res = conn.scalar(select(literal(MyRange(1, 10), MyINT4RANGE))) print(res)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">dataclasses</span> <span class="pl-k">import</span> <span class="pl-s1">dataclass</span> <span class="pl-k">from</span> <span class="pl-s1">typing</span> <span class="pl-k">import</span> <span class="pl-v">Any</span> <span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span> <span class="pl-k">import</span> <span class="pl-s1">create_engine</span>, <span class="pl-v">TypeDecorator</span>, <span class="pl-s1">literal</span>, <span class="pl-s1">select</span> <span class="pl-k">from</span> <span class="pl-s1">sqlalchemy</span>.<span class="pl-s1">dialects</span>.<span class="pl-s1">postgresql</span> <span class="pl-k">import</span> <span class="pl-v">INT4RANGE</span>, <span class="pl-v">Range</span> <span class="pl-s1">engine</span> <span class="pl-c1">=</span> <span class="pl-en">create_engine</span>(<span class="pl-s">'...'</span>) <span class="pl-en">@<span class="pl-en">dataclass</span>(<span class="pl-s1">frozen</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)</span> <span class="pl-k">class</span> <span class="pl-v">MyRange</span>: <span class="pl-s1">start</span>: <span class="pl-s1">int</span> <span class="pl-s1">end</span>: <span class="pl-s1">int</span> <span class="pl-k">class</span> <span class="pl-v">MyINT4RANGE</span>(<span class="pl-v">TypeDecorator</span>): <span class="pl-s1">cache_ok</span> <span class="pl-c1">=</span> <span class="pl-c1">True</span> <span class="pl-s1">impl</span> <span class="pl-c1">=</span> <span class="pl-v">INT4RANGE</span> <span class="pl-k">def</span> <span class="pl-en">process_bind_param</span>(<span class="pl-s1">self</span>, <span class="pl-s1">value</span>: <span class="pl-v">Any</span>, <span class="pl-s1">dialect</span>: <span class="pl-v">Any</span>) <span class="pl-c1">-&gt;</span> <span class="pl-v">Any</span>: <span class="pl-k">match</span> <span class="pl-s1">value</span>: <span class="pl-k">case</span> <span class="pl-v">MyRange</span>(<span class="pl-s1">start</span>, <span class="pl-s1">end</span>): <span class="pl-k">return</span> <span class="pl-v">Range</span>(<span class="pl-s1">start</span>, <span class="pl-s1">end</span>, <span class="pl-s1">bounds</span><span class="pl-c1">=</span><span class="pl-s">'[]'</span>) <span class="pl-k">case</span> <span class="pl-s1">_</span>: <span class="pl-k">return</span> <span class="pl-s1">value</span> <span class="pl-k">with</span> <span class="pl-s1">engine</span>.<span class="pl-en">begin</span>() <span class="pl-k">as</span> <span class="pl-s1">conn</span>: <span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">conn</span>.<span class="pl-en">scalar</span>(<span class="pl-en">select</span>(<span class="pl-en">literal</span>(<span class="pl-v">MyRange</span>(<span class="pl-c1">1</span>, <span class="pl-c1">10</span>), <span class="pl-v">MyINT4RANGE</span>))) <span class="pl-en">print</span>(<span class="pl-s1">res</span>)</pre></div> <h3 dir="auto">Error</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Copy complete stack trace and error message here, including SQL log output if applicable. Traceback (most recent call last): File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/foo.py&quot;, line 29, in &lt;module&gt; res = conn.scalar(select(literal(MyRange(1, 10), MyINT4RANGE))) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/engine/base.py&quot;, line 1299, in scalar return meth( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py&quot;, line 507, in _execute_on_scalar return self._execute_on_connection( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py&quot;, line 489, in _execute_on_connection return connection._execute_clauseelement( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/engine/base.py&quot;, line 1630, in _execute_clauseelement compiled_sql, extracted_params, cache_hit = elem._compile_w_cache( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py&quot;, line 654, in _compile_w_cache compiled_sql = self._compiler( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py&quot;, line 289, in _compiler return dialect.statement_compiler(dialect, self, **kw) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 1137, in __init__ Compiled.__init__(self, dialect, statement, **kwargs) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 664, in __init__ self.string = self.process(self.statement, **compile_kwargs) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 701, in process return obj._compiler_dispatch(self, **kwargs) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/visitors.py&quot;, line 143, in _compiler_dispatch return meth(self, **kw) # type: ignore # noqa: E501 File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 4265, in visit_select for c in [ File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 4266, in &lt;listcomp&gt; self._label_select_column( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 4091, in _label_select_column return result_expr._compiler_dispatch(self, **column_clause_args) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/visitors.py&quot;, line 143, in _compiler_dispatch return meth(self, **kw) # type: ignore # noqa: E501 File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 2134, in visit_label label.element._compiler_dispatch( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/visitors.py&quot;, line 143, in _compiler_dispatch return meth(self, **kw) # type: ignore # noqa: E501 File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 3317, in visit_bindparam ret = self.bindparam_string( File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py&quot;, line 3481, in bindparam_string type_impl = bindparam_type._unwrapped_dialect_impl(self.dialect) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/type_api.py&quot;, line 1853, in _unwrapped_dialect_impl return typ.load_dialect_impl(dialect).dialect_impl(dialect) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/type_api.py&quot;, line 875, in dialect_impl return self._dialect_info(dialect)[&quot;impl&quot;] File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/type_api.py&quot;, line 974, in _dialect_info impl = self.adapt(type(self)) File &quot;/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/ranges.py&quot;, line 702, in adapt return type( # type: ignore TypeError: duplicate base class INT4RANGERangeImpl"><pre class="notranslate"><code class="notranslate"># Copy complete stack trace and error message here, including SQL log output if applicable. Traceback (most recent call last): File "/Users/yuriikarabas/PycharmProjects/sandbox/foo.py", line 29, in &lt;module&gt; res = conn.scalar(select(literal(MyRange(1, 10), MyINT4RANGE))) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/engine/base.py", line 1299, in scalar return meth( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py", line 507, in _execute_on_scalar return self._execute_on_connection( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py", line 489, in _execute_on_connection return connection._execute_clauseelement( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/engine/base.py", line 1630, in _execute_clauseelement compiled_sql, extracted_params, cache_hit = elem._compile_w_cache( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py", line 654, in _compile_w_cache compiled_sql = self._compiler( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/elements.py", line 289, in _compiler return dialect.statement_compiler(dialect, self, **kw) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 1137, in __init__ Compiled.__init__(self, dialect, statement, **kwargs) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 664, in __init__ self.string = self.process(self.statement, **compile_kwargs) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 701, in process return obj._compiler_dispatch(self, **kwargs) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/visitors.py", line 143, in _compiler_dispatch return meth(self, **kw) # type: ignore # noqa: E501 File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 4265, in visit_select for c in [ File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 4266, in &lt;listcomp&gt; self._label_select_column( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 4091, in _label_select_column return result_expr._compiler_dispatch(self, **column_clause_args) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/visitors.py", line 143, in _compiler_dispatch return meth(self, **kw) # type: ignore # noqa: E501 File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 2134, in visit_label label.element._compiler_dispatch( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/visitors.py", line 143, in _compiler_dispatch return meth(self, **kw) # type: ignore # noqa: E501 File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 3317, in visit_bindparam ret = self.bindparam_string( File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/compiler.py", line 3481, in bindparam_string type_impl = bindparam_type._unwrapped_dialect_impl(self.dialect) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/type_api.py", line 1853, in _unwrapped_dialect_impl return typ.load_dialect_impl(dialect).dialect_impl(dialect) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/type_api.py", line 875, in dialect_impl return self._dialect_info(dialect)["impl"] File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/sql/type_api.py", line 974, in _dialect_info impl = self.adapt(type(self)) File "/Users/yuriikarabas/PycharmProjects/sandbox/venv310/lib/python3.10/site-packages/sqlalchemy/dialects/postgresql/ranges.py", line 702, in adapt return type( # type: ignore TypeError: duplicate base class INT4RANGERangeImpl </code></pre></div> <h3 dir="auto">Versions</h3> <ul dir="auto"> <li>OS: macOS</li> <li>Python: 3.10</li> <li>SQLAlchemy: 2.0.0b4</li> <li>Database: postgresql</li> <li>DBAPI (eg: psycopg, cx_oracle, mysqlclient): psycopg</li> </ul> <h3 dir="auto">Additional context</h3> <p dir="auto">Please, delete <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1506617176" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/9019" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/9019/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/9019">#9019</a> as it's a duplicate of this issue.</p>
0
<p dir="auto">Just a documentation issue that - <code class="notranslate">http.ServeMux</code> (cleanPath) gets also rid of duplicate <code class="notranslate">/</code>-s. <code class="notranslate">http.ServeMux</code> already contains:</p> <blockquote> <p dir="auto">ServeMux also takes care of sanitizing the URL request path, redirecting any request containing . or .. elements to an equivalent .- and ..-free URL.</p> </blockquote> <p dir="auto">I'm not sure how to reword it nicely to include the case of empty path segments, hence I didn't make a CL. Here's shortest example:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="package main import (&quot;fmt&quot;; &quot;net/http&quot;) func main() { http.HandleFunc(&quot;/&quot;, func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, &quot;%s&quot;, r.URL.Path) }) http.ListenAndServe(&quot;:8001&quot;, nil) }"><pre class="notranslate"><code class="notranslate">package main import ("fmt"; "net/http") func main() { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "%s", r.URL.Path) }) http.ListenAndServe(":8001", nil) } </code></pre></div> <p dir="auto"><code class="notranslate">/hello////world</code> will redirect to <code class="notranslate">/hello/world</code>. From URI standpoint they are different and both valid (<a href="https://tools.ietf.org/html/rfc3986#section-3.3" rel="nofollow">https://tools.ietf.org/html/rfc3986#section-3.3</a>).</p>
<pre class="notranslate">Some examples: //Example 1 package main import "fmt" func main() { const num = 1e1 s := make([]int, 10) fmt.Println(s[num]) } ./test.go:8: non-integer slice index num // Example 2 package main import "fmt" func main() { const num = 1e1 s := make([]int, num) fmt.Println(s[num]) } panic: runtime error: index out of range goroutine 1 [running]: main.main() /Users/kamil/tmp/test.go:8 +0xb6 exit status 2 num is assignable to a variable of type int, so shouldn't it work as a slice index as well? It seems like it's being allowed in example 2 and triggering an out of range panic, but disallowed in example 1.</pre>
0
<h3 dir="auto">Description</h3> <p dir="auto">When multiplying two sparse BCOO matrices it seems the result always stores explicit zero-entries even when the corresponding row/column of <code class="notranslate">a</code> and <code class="notranslate">b</code> are all zero:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax import numpy as np a = jax.experimental.sparse.BCOO.fromdense(np.diag([1., 2.])) b = jax.experimental.sparse.BCOO.fromdense(np.diag([3., 4.])) (a @ b).data, (a @ b).indices &gt;&gt;&gt; (Array([3., 0., 0., 8.], dtype=float64), Array([[0, 0], [0, 1], [1, 0], [1, 1]], dtype=int32))"><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">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">jax</span>.<span class="pl-s1">experimental</span>.<span class="pl-s1">sparse</span>.<span class="pl-v">BCOO</span>.<span class="pl-en">fromdense</span>(<span class="pl-s1">np</span>.<span class="pl-en">diag</span>([<span class="pl-c1">1.</span>, <span class="pl-c1">2.</span>])) <span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-s1">jax</span>.<span class="pl-s1">experimental</span>.<span class="pl-s1">sparse</span>.<span class="pl-v">BCOO</span>.<span class="pl-en">fromdense</span>(<span class="pl-s1">np</span>.<span class="pl-en">diag</span>([<span class="pl-c1">3.</span>, <span class="pl-c1">4.</span>])) (<span class="pl-s1">a</span> @ <span class="pl-s1">b</span>).<span class="pl-s1">data</span>, (<span class="pl-s1">a</span> @ <span class="pl-s1">b</span>).<span class="pl-s1">indices</span> <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> (<span class="pl-v">Array</span>([<span class="pl-c1">3.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">8.</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float64</span>), <span class="pl-v">Array</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">0</span>], [<span class="pl-c1">1</span>, <span class="pl-c1">1</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">int32</span>))</pre></div> <p dir="auto">Expected output:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; (Array([3., 8.], dtype=float64), Array([[0, 0], [1, 1]], dtype=int32))"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> (<span class="pl-v">Array</span>([<span class="pl-c1">3.</span>, <span class="pl-c1">8.</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float64</span>), <span class="pl-v">Array</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-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">int32</span>))</pre></div> <h3 dir="auto">What jax/jaxlib version are you using?</h3> <p dir="auto">0.4.8</p> <h3 dir="auto">Which accelerator(s) are you using?</h3> <p dir="auto">GPU</p> <h3 dir="auto">Additional system info</h3> <p dir="auto"><em>No response</em></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> </ul> <p dir="auto">Does jaxlib support building with GCC 11? I'm seeing a number of errors.</p> <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> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: /build/output/external/org_tensorflow/tensorflow/tools/proto_text/BUILD:31:10: Linking external/org_tensorflow/tensorflow/tools/proto_text/gen_proto_text_functions failed: (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc @bazel-out/k8-opt/bin/external/org_tensorflow/tensorflow/tools/proto_text/gen_proto_text_functions-2.params /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(parser.o): in function `std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, google::protobuf::FieldDescriptorProto_Type&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, google::protobuf::FieldDescriptorProto_Type&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_rehash(unsigned long, unsigned long const&amp;)': (.text._ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N6google8protobuf25FieldDescriptorProto_TypeEESaISB_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm[_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N6google8protobuf25FieldDescriptorProto_TypeEESaISB_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm]+0xff): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `bool google::protobuf::InsertIfNotPresent&lt;std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt; &gt;(std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt;*, std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt;::value_type::first_type const&amp;, std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt;::value_type::second_type const&amp;) [clone .isra.0]': (.text+0xd33): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `std::pair&lt;std::__detail::_Node_iterator&lt;google::protobuf::Symbol, true, true&gt;, bool&gt; std::_Hashtable&lt;google::protobuf::Symbol, google::protobuf::Symbol, std::allocator&lt;google::protobuf::Symbol&gt;, std::__detail::_Identity, google::protobuf::(anonymous namespace)::FieldsByNumberEq, google::protobuf::(anonymous namespace)::FieldsByNumberHash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert&lt;google::protobuf::Symbol, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;google::protobuf::Symbol, true&gt; &gt; &gt; &gt;(google::protobuf::Symbol&amp;&amp;, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;google::protobuf::Symbol, true&gt; &gt; &gt; const&amp;, std::integral_constant&lt;bool, true&gt;) [clone .constprop.0] [clone .isra.0]': (.text+0x31bf): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `google::protobuf::FileDescriptorTables::AddAliasUnderParent(void const*, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, google::protobuf::Symbol)': (.text+0x4373): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `google::protobuf::DescriptorPool::Tables::AddSymbol(std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, google::protobuf::Symbol)': (.text+0x109cf): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o):(.text+0x1ee0f): more undefined references to `std::__throw_bad_array_new_length()' follow collect2: error: ld returned 1 exit status Target //build:build_wheel failed to build Use --verbose_failures to see the command lines of failed build steps. ERROR: /build/output/external/org_tensorflow/tensorflow/core/framework/BUILD:1400:31 Middleman _middlemen/@org_Utensorflow_S_Stensorflow_Score_Sframework_Cattr_Uvalue_Uproto_Utext-BazelCppSemantics_build_arch_k8-opt failed: (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc @bazel-out/k8-opt/bin/external/org_tensorflow/tensorflow/tools/proto_text/gen_proto_text_functions-2.params"><pre class="notranslate"><code class="notranslate">ERROR: /build/output/external/org_tensorflow/tensorflow/tools/proto_text/BUILD:31:10: Linking external/org_tensorflow/tensorflow/tools/proto_text/gen_proto_text_functions failed: (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc @bazel-out/k8-opt/bin/external/org_tensorflow/tensorflow/tools/proto_text/gen_proto_text_functions-2.params /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(parser.o): in function `std::_Hashtable&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;, std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, google::protobuf::FieldDescriptorProto_Type&gt;, std::allocator&lt;std::pair&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const, google::protobuf::FieldDescriptorProto_Type&gt; &gt;, std::__detail::_Select1st, std::equal_to&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::hash&lt;std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, false, true&gt; &gt;::_M_rehash(unsigned long, unsigned long const&amp;)': (.text._ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N6google8protobuf25FieldDescriptorProto_TypeEESaISB_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm[_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N6google8protobuf25FieldDescriptorProto_TypeEESaISB_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSD_18_Mod_range_hashingENSD_20_Default_ranged_hashENSD_20_Prime_rehash_policyENSD_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm]+0xff): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `bool google::protobuf::InsertIfNotPresent&lt;std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt; &gt;(std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt;*, std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt;::value_type::first_type const&amp;, std::unordered_map&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt;, google::protobuf::FieldDescriptor const*, google::protobuf::(anonymous namespace)::PointerStringPairHash, std::equal_to&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; &gt;, std::allocator&lt;std::pair&lt;std::pair&lt;void const*, google::protobuf::stringpiece_internal::StringPiece&gt; const, google::protobuf::FieldDescriptor const*&gt; &gt; &gt;::value_type::second_type const&amp;) [clone .isra.0]': (.text+0xd33): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `std::pair&lt;std::__detail::_Node_iterator&lt;google::protobuf::Symbol, true, true&gt;, bool&gt; std::_Hashtable&lt;google::protobuf::Symbol, google::protobuf::Symbol, std::allocator&lt;google::protobuf::Symbol&gt;, std::__detail::_Identity, google::protobuf::(anonymous namespace)::FieldsByNumberEq, google::protobuf::(anonymous namespace)::FieldsByNumberHash, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits&lt;true, true, true&gt; &gt;::_M_insert&lt;google::protobuf::Symbol, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;google::protobuf::Symbol, true&gt; &gt; &gt; &gt;(google::protobuf::Symbol&amp;&amp;, std::__detail::_AllocNode&lt;std::allocator&lt;std::__detail::_Hash_node&lt;google::protobuf::Symbol, true&gt; &gt; &gt; const&amp;, std::integral_constant&lt;bool, true&gt;) [clone .constprop.0] [clone .isra.0]': (.text+0x31bf): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `google::protobuf::FileDescriptorTables::AddAliasUnderParent(void const*, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, google::protobuf::Symbol)': (.text+0x4373): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o): in function `google::protobuf::DescriptorPool::Tables::AddSymbol(std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; const&amp;, google::protobuf::Symbol)': (.text+0x109cf): undefined reference to `std::__throw_bad_array_new_length()' /nix/store/m2vh2ny7bqpwij1gpmvl5gxj7y4dgr4f-binutils-2.38/bin/ld: /nix/store/x0gmnlsh4mzfsngvxj9ahsc1vm5sdrg5-protobuf-3.19.3/lib/libprotobuf.a(descriptor.o):(.text+0x1ee0f): more undefined references to `std::__throw_bad_array_new_length()' follow collect2: error: ld returned 1 exit status Target //build:build_wheel failed to build Use --verbose_failures to see the command lines of failed build steps. ERROR: /build/output/external/org_tensorflow/tensorflow/core/framework/BUILD:1400:31 Middleman _middlemen/@org_Utensorflow_S_Stensorflow_Score_Sframework_Cattr_Uvalue_Uproto_Utext-BazelCppSemantics_build_arch_k8-opt failed: (Exit 1): crosstool_wrapper_driver_is_not_gcc failed: error executing command external/local_config_cuda/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc @bazel-out/k8-opt/bin/external/org_tensorflow/tensorflow/tools/proto_text/gen_proto_text_functions-2.params </code></pre></div> <p dir="auto">What do I need to do in order to build with GCC 11?</p>
0
<p dir="auto">Hello Julia-ers!</p> <p dir="auto">When adding remote workers with <code class="notranslate">addprocs()</code>, I would really love to be able to send my current working environment along for the new Julia workers. Currently this does not happen for workers added using an <code class="notranslate">SSHManager</code>, though local workers do seem to inherit the same environment.</p> <p dir="auto">After browsing the repo, I think that this behavior could (gulp) easily be added by extending the code in <a href="https://github.com/JuliaLang/julia/blob/0d7248e2ff65bd6886ba3f003bf5aeab929edab5/base/distributed/managers.jl#L177">managers.jl</a> to set all, or some specified subset, of the current environment variables in the same way that <code class="notranslate">JULIA_WORKER_TIMEOUT</code> is set. Of course that might not be the default behavior, but maybe an option? Maybe something like (but not identical to):</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" # the default worker timeout tval = haskey(ENV, &quot;JULIA_WORKER_TIMEOUT&quot;) ? `export JULIA_WORKER_TIMEOUT=$(ENV[&quot;JULIA_WORKER_TIMEOUT&quot;])\;` : `` envvals = map(key-&gt;`export $(key)=$(ENV[key])\;`, keys(ENV)) # Julia process with passed in command line flag arguments cmd = `cd $dir '&amp;&amp;' $tval $envvals $exename $exeflags`"><pre class="notranslate"> <span class="pl-c"><span class="pl-c">#</span> the default worker timeout</span> tval <span class="pl-k">=</span> <span class="pl-c1">haskey</span>(<span class="pl-c1">ENV</span>, <span class="pl-s"><span class="pl-pds">"</span>JULIA_WORKER_TIMEOUT<span class="pl-pds">"</span></span>) <span class="pl-k">?</span> <span class="pl-s"><span class="pl-pds">`</span>export JULIA_WORKER_TIMEOUT=$(ENV["JULIA_WORKER_TIMEOUT"])<span class="pl-cce">\;</span><span class="pl-pds">`</span></span> <span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">`</span><span class="pl-pds">`</span></span> envvals <span class="pl-k">=</span> <span class="pl-en">map</span>(key<span class="pl-k">-&gt;</span><span class="pl-s"><span class="pl-pds">`</span>export $(key)=$(ENV[key])<span class="pl-cce">\;</span><span class="pl-pds">`</span></span>, <span class="pl-c1">keys</span>(<span class="pl-c1">ENV</span>)) <span class="pl-c"><span class="pl-c">#</span> Julia process with passed in command line flag arguments</span> cmd <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">`</span>cd $dir '&amp;&amp;' $tval $envvals $exename $exeflags<span class="pl-pds">`</span></span></pre></div> <p dir="auto">Is this a reasonable thing to propose? Please let me know if this is a terrible idea! Otherwise I will be happy to attempt to implement this. I just wanted to float the idea here first.</p> <p dir="auto">Thanks!</p>
<p dir="auto">Making the documentation omits <code class="notranslate">dates.rst</code> since it is not included in the main <code class="notranslate">index.rst</code> file.</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ make html ... /Users/jiahao/local/src/julia/doc/manual/dates.rst:5: WARNING: Duplicate explicit target name: &quot;here&quot;. looking for now-outdated files... none found pickling environment... done checking consistency... /Users/jiahao/local/src/julia/doc/manual/dates.rst:: WARNING: document isn't included in any toctree /Users/jiahao/local/src/julia/doc/stdlib/dates.rst:: WARNING: document isn't included in any toctree ..."><pre class="notranslate">$ make html ... /Users/jiahao/local/src/julia/doc/manual/dates.rst:5: WARNING: Duplicate explicit target name: <span class="pl-s"><span class="pl-pds">"</span>here<span class="pl-pds">"</span></span>. looking <span class="pl-k">for</span> now-outdated files... none found pickling environment... <span class="pl-k">done</span> checking consistency... /Users/jiahao/local/src/julia/doc/manual/dates.rst:: WARNING: document isn<span class="pl-s"><span class="pl-pds">'</span>t included in any toctree</span> <span class="pl-s">/Users/jiahao/local/src/julia/doc/stdlib/dates.rst:: WARNING: document isn<span class="pl-pds">'</span></span>t included <span class="pl-k">in</span> any toctree ...</pre></div> <p dir="auto">The fix is easy; just include the line <code class="notranslate">manual/dates</code> somewhere in <code class="notranslate">index.rst</code>, but I'm not sure what order the chapters should be in.</p> <p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/quinnj/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/quinnj">@quinnj</a></p>
0
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-local-scope-and-functions#?solution=function%20myFunction%28%29%20%7B%0A%20%20var%20myVar%20%3D%201%3B%0A%20%20console.log%28myVar%29%3B%0A%7D%0AmyFunction%28%29%3B%0A%0A%2F%2F%20run%20and%20check%20the%20console%20%0A%2F%2F%20myVar%20is%20not%20defined%20outside%20of%20myFunction%0A%0A%0A%2F%2F%20now%20remove%20the%20console.log%20line%20to%20pass%20the%20test%0A%0A" rel="nofollow">Waypoint: Local Scope and Functions</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:43.0) Gecko/20100101 Firefox/43.0</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">My code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function myFunction() { var myVar = 1; console.log(myVar); } myFunction(); // run and check the console // myVar is not defined outside of myFunction // now remove the console.log line to pass the test "><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">myFunction</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">myVar</span> <span class="pl-c1">=</span> <span class="pl-c1">1</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">myVar</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-en">myFunction</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// run and check the console </span> <span class="pl-c">// myVar is not defined outside of myFunction</span> <span class="pl-c">// now remove the console.log line to pass the test</span> </pre></div> <p dir="auto">After following the instructions.</p> <ol dir="auto"> <li>inside the function creata a variable myVar, as this</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function myFunction() { var myVar = &quot;abc&quot;; console.log(myVar); } myFunction(); console.log(myVar);"><pre class="notranslate"><code class="notranslate">function myFunction() { var myVar = "abc"; console.log(myVar); } myFunction(); console.log(myVar); </code></pre></div> <p dir="auto">after this remove the second console.log line:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function myFunction() { var myVar = &quot;abc&quot;; console.log(myVar); } myFunction();"><pre class="notranslate"><code class="notranslate">function myFunction() { var myVar = "abc"; console.log(myVar); } myFunction(); </code></pre></div> <ol start="3" dir="auto"> <li>the exercise don't pass.</li> </ol>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-local-scope-and-functions#?solution=function%20myFunction%28%29%20%7B%0A%20%20var%20myVar%20%3D%205%3B%20%20%0A%20%20console.log%28myVar%29%3B%0A%7D%0AmyFunction%28%29%3B%0A%0A%2F%2F%20run%20and%20check%20the%20console%20%0A%2F%2F%20myVar%20is%20not%20defined%20outside%20of%20myFunction%0A%0A%2F%2F%20now%20remove%20the%20console.log%20line%20to%20pass%20the%20test%0A%0A" rel="nofollow">Waypoint: Local Scope and Functions</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.48 Safari/537.36</code>.</p> <p dir="auto">The test asks you to remove the second console.log() to pass. When you remove the second console.log() it still fails. You have to remove both console.log() calls to pass(including the one inside myFunction().)</p> <p dir="auto">Reproducible every time by removing the console.log() outside of myFunction(), as asked by test. I'm assuming this is a bug in the test and not the text as there's no reason to remove the console.log() call within myFunction().</p>
1
<p dir="auto">by <strong>naomi.bancroft</strong>:</p> <pre class="notranslate">1. What is a short input program that triggers the error? package main func main() { var max uint64 = 0 num := 1 &lt;&lt; max num += 1 } 2. What is the full compiler output? bugreport.go:5: internal compiler error: agen OREGISTER Please file a bug report including a short program that triggers the error. <a href="http://code.google.com/p/go/issues/entry?template=compilerbug" rel="nofollow">http://code.google.com/p/go/issues/entry?template=compilerbug</a> 3. What version of the compiler are you using? (Run it with the -V flag.) 8g version release.r58.1 8739</pre>
<p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p> <pre class="notranslate">What steps will reproduce the problem? Forward slashes cannot be escaped in a pattern. The following snippet does not compile: re, err := regexp.Compile("\/out\/sctp\/5.*") gives compiler error: tstRegex.go:9: unknown escape sequence: / (9 is the line in the actual test file) The following program incorrectly matches the pattern to the test string: package main import( "fmt" "regexp" ) func main() { if re, err := regexp.Compile("/out/sctp/5.*"); err == nil { fmt.Println(re.MatchString("/out/sctp/1420/0.753085.dat")) } } When the pattern was replaced with: re, err := regexp.Compile(".out.sctp.5.*") It correctly matched all test strings. But this does not allow us to require a "/" in the pattern. What is your $GOOS? $GOARCH? GOARCH=amd64 GOOS=darwin Which revision are you using? (hg identify) 00a1813e5bc5 tip Please provide any additional information below.</pre>
0
<ul dir="auto"> <li>[y ] I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <p dir="auto"><a href="https://codesandbox.io/s/mjy74qv98" rel="nofollow">https://codesandbox.io/s/mjy74qv98</a></p> <p dir="auto">Is there any way to fix this?</p> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>0.19.2</td> </tr> <tr> <td>browser</td> <td>Chrome V60</td> </tr> <tr> <td>react-autosuggest</td> <td>9.3.2</td> </tr> </tbody> </table>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/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">Theme nesting is not working as expected.<br> In below example, "MuiInput root of theme1" and "MuiInput underline of theme2" both should work.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">But here "MuiInput underline of theme2" works well but it does apply properties of "MuiInput root of theme1".</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import React from 'react'; import { createMuiTheme, MuiThemeProvider } from 'material-ui/styles'; import Input, { InputLabel } from 'material-ui/Input'; const theme1 = createMuiTheme({ typography: { fontFamily: 'Hind Vadodara', body1: { fontSize: 16, }, }, overrides: { MuiInput: { root: { fontSize: 16, color: 'red', }, } }, }); const theme2 = outerTheme =&gt; ({ ...outerTheme, overrides: { MuiInput: { underline: { '&amp;::before': { height: 0, }, }, }, }, }); function Demo() { return ( &lt;MuiThemeProvider theme={theme1}&gt; &lt;div&gt; &lt;InputLabel style={{ margin :8 }}&gt;Title&lt;/InputLabel&gt; &lt;Input id=&quot;title&quot; /&gt; &lt;/div&gt; &lt;div&gt; &lt;MuiThemeProvider theme={theme2}&gt; &lt;InputLabel style={{ margin :8 }}&gt;Title&lt;/InputLabel&gt; &lt;Input id=&quot;title&quot; /&gt; &lt;/MuiThemeProvider&gt; &lt;/div&gt; &lt;/MuiThemeProvider&gt; ); } export default Demo; "><pre class="notranslate"><code class="notranslate">import React from 'react'; import { createMuiTheme, MuiThemeProvider } from 'material-ui/styles'; import Input, { InputLabel } from 'material-ui/Input'; const theme1 = createMuiTheme({ typography: { fontFamily: 'Hind Vadodara', body1: { fontSize: 16, }, }, overrides: { MuiInput: { root: { fontSize: 16, color: 'red', }, } }, }); const theme2 = outerTheme =&gt; ({ ...outerTheme, overrides: { MuiInput: { underline: { '&amp;::before': { height: 0, }, }, }, }, }); function Demo() { return ( &lt;MuiThemeProvider theme={theme1}&gt; &lt;div&gt; &lt;InputLabel style={{ margin :8 }}&gt;Title&lt;/InputLabel&gt; &lt;Input id="title" /&gt; &lt;/div&gt; &lt;div&gt; &lt;MuiThemeProvider theme={theme2}&gt; &lt;InputLabel style={{ margin :8 }}&gt;Title&lt;/InputLabel&gt; &lt;Input id="title" /&gt; &lt;/MuiThemeProvider&gt; &lt;/div&gt; &lt;/MuiThemeProvider&gt; ); } export default Demo; </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/29908792/33797427-9701e1f0-dd2d-11e7-9b6e-e9fa7dfc00d9.png"><img src="https://user-images.githubusercontent.com/29908792/33797427-9701e1f0-dd2d-11e7-9b6e-e9fa7dfc00d9.png" alt="screen shot 2017-12-09 at 10 04 43 pm" style="max-width: 100%;"></a></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>v1.0.0 beta.23</td> </tr> <tr> <td>React</td> <td>16.0.0</td> </tr> </tbody> </table>
0
<p dir="auto">This appears to be a defect that is specific to Intel's Math Kernel Library and the resolution will likely require changes therein. I'm submitting here as I believe the NumPy team has some relationships/connections with the Intel team and there have been some efforts to make MKL work well with NumPy (and SciPy). I am using Python 3.6.4, built from source on OSX 10.13.4 and Linux 16.04 (WSL). NumPy is built from source using gcc 7.1.0 on Mac and gcc 7.2 on Linux.</p> <p dir="auto">When executed with python3 this script will hang the terminal on OSX and Linux. No tests have been performed on Win64. If the size of the vector, x, is reduced by a factor of 10 to 1000, no hang is observed and the script executes correctly. The hang is specific to the call to linalg.norm. It is likely caused by multi-threaded execution of the norm() method using MKL's infrastructure, leaving the system in a state that interferes with Python execution of subprocess.run(). I also get a hang when using Python's Multiprocessing module process creation in place of subprocess.run().</p> <p dir="auto">This is important for a few reasons 1) Jupyter QtConsole &amp; Notebook and IPython use subprocess.run() to execute certain os commands (such as ls). Hence we get a hang when working in all these applications. 2) If you want to spawn or fork to subprocesses to execute cpu intensive tasks you'll get a hang if you've previously called np.linalg.norm() with a sufficiently large vector (and perhaps many other NumPy and SciPy calls).</p> <h3 dir="auto">Reproducing code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np import subprocess x = np.arange(10000) # 1000 shows no hang. xnorm = np.linalg.norm(x) subprocess.run('ls')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-k">import</span> <span class="pl-s1">subprocess</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">10000</span>) <span class="pl-c"># 1000 shows no hang.</span> <span class="pl-s1">xnorm</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">linalg</span>.<span class="pl-en">norm</span>(<span class="pl-s1">x</span>) <span class="pl-s1">subprocess</span>.<span class="pl-en">run</span>(<span class="pl-s">'ls'</span>)</pre></div> <h3 dir="auto">Error message:</h3> <p dir="auto">No error message, just a hang.</p> <h3 dir="auto">Numpy/Python version information:</h3> <p dir="auto">NumPy 1.14.3<br> Python 3.6.4<br> MKL: l_mkl_2018.3.222, m_mkl_2018.3.185</p>
<p dir="auto">Hello!</p> <p dir="auto">Linux Mint: 18.3 (Sylvia)<br> Python: 3.6.3<br> NumPy: 1.13.3<br> Cython 0.27.3</p> <p dir="auto">I am trying to build numpy and scipy wheels from source using the intel mkl compilers. Numpy compiles just fine, however when I run the test suite, the suite hangs on <code class="notranslate">test_path_type_input</code> within <code class="notranslate">test_einsum.TestEinSumPath</code> (or maybe the test after it? not sure because the last test name visible is this one; see screen cap)</p> <p dir="auto">Running the test suite for scipy results in the suite hanging on <code class="notranslate">test_lapack</code> within <code class="notranslate">test_build.TestF77Mismatch</code></p> <p dir="auto">In both cases (numpy and scipy) the tests run and pass fine when run individually, so I'm not sure what else might be the cause.</p> <p dir="auto">Any help is greatly appreciated. See screen shot for images of the test suites when they're stuck is included.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7530947/33036734-90a4cba6-cdec-11e7-8014-025c4f0904f1.png"><img src="https://user-images.githubusercontent.com/7530947/33036734-90a4cba6-cdec-11e7-8014-025c4f0904f1.png" alt="numpy" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7530947/33036738-92df0c24-cdec-11e7-93f7-0b0417779e7c.png"><img src="https://user-images.githubusercontent.com/7530947/33036738-92df0c24-cdec-11e7-93f7-0b0417779e7c.png" alt="scipy" style="max-width: 100%;"></a></p>
1
<p dir="auto">I have notices that since there are no longer spans everything element wrapper by comments content fails to display for IE and Edge.</p>
<p dir="auto">The following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var Hello = React.createClass({ render: function() { return &lt;div&gt;&lt;p&gt;Hello&lt;/p&gt;test&lt;/div&gt;; } });"><pre class="notranslate"><code class="notranslate">var Hello = React.createClass({ render: function() { return &lt;div&gt;&lt;p&gt;Hello&lt;/p&gt;test&lt;/div&gt;; } }); </code></pre></div> <p dir="auto">results in only "Hello" being written in IE11 - <a href="https://jsfiddle.net/hL0jpazq/2/" rel="nofollow">jsfiddle</a></p> <p dir="auto">I realize there has been some changes to the way text nodes work in v15, but before we update our code to use <code class="notranslate">&lt;span&gt;</code>, I wanted to check if this is the intended behavior (since "test" is written in chrome).</p>
1
<h4 dir="auto">Reproducing code example:</h4> <p dir="auto">See CI of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="794583184" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/13441" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/13441/hovercard" href="https://github.com/scipy/scipy/pull/13441">gh-13441</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="797563217" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/13463" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/13463/hovercard" href="https://github.com/scipy/scipy/pull/13463">gh-13463</a></p> <h4 dir="auto">Error message:</h4> <p dir="auto">Four (separate) failures occurring in both of these PRs. I'm not sure if the failures are related, but I noticed them at the same time, so I'm putting them all here for now.</p> <p dir="auto">In Windows builds on Azure:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="============================================================================== Task : PowerShell Description : Run a PowerShell script on Linux, macOS, or Windows Version : 2.180.1 Author : Microsoft Corporation Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell ============================================================================== Generating script. ========================== Starting Command Output =========================== &quot;C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe&quot; -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command &quot;. 'D:\a\_temp\ca35efdd-7955-4298-a881-94018e1affc9.ps1'&quot; Traceback (most recent call last): File &quot;runtests.py&quot;, line 565, in &lt;module&gt; main(argv=sys.argv[1:]) File &quot;runtests.py&quot;, line 291, in main __import__(PROJECT_MODULE) ModuleNotFoundError: No module named 'scipy' ##[error]PowerShell exited with code '1'. Finishing: Run SciPy Test Suite "><pre class="notranslate"><code class="notranslate">============================================================================== Task : PowerShell Description : Run a PowerShell script on Linux, macOS, or Windows Version : 2.180.1 Author : Microsoft Corporation Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/utility/powershell ============================================================================== Generating script. ========================== Starting Command Output =========================== "C:\windows\System32\WindowsPowerShell\v1.0\powershell.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command ". 'D:\a\_temp\ca35efdd-7955-4298-a881-94018e1affc9.ps1'" Traceback (most recent call last): File "runtests.py", line 565, in &lt;module&gt; main(argv=sys.argv[1:]) File "runtests.py", line 291, in main __import__(PROJECT_MODULE) ModuleNotFoundError: No module named 'scipy' ##[error]PowerShell exited with code '1'. Finishing: Run SciPy Test Suite </code></pre></div> <p dir="auto">In refguide_asv_check and Linux Tests we're seeing <code class="notranslate">directed_hausdorff</code> failures:</p> <details> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" _________________________ TestHausdorff.test_symmetry __________________________ [gw0] linux -- Python 3.8.7 /opt/hostedtoolcache/Python/3.8.7/x64/bin/python /opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/tests/test_hausdorff.py:37: in test_symmetry forward = directed_hausdorff(self.path_1, self.path_2)[0] self = &lt;scipy.spatial.tests.test_hausdorff.TestHausdorff object at 0x7f28fbea4970&gt; /opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/distance.py:461: in directed_hausdorff result = _hausdorff.directed_hausdorff(u, v, seed) seed = 0 u = array([[ 0.35923135, 0.93324854, 0. ], [-0.71983479, -0.69414542, 0. ], [-0.92442618, ...0695034, 0. ], [ 0.93629495, 0.3512147 , 0. ], [-0.48493437, -0.87455055, 0. ]]) v = array([[ 1.18546344, 3.07972019, 0. ], [-1.43966959, -1.38829085, 0. ], [-1.84885236, ...1390068, 0. ], [ 1.8725899 , 0.7024294 , 0. ], [-0.96986874, -1.74910109, 0. ]]) _hausdorff.pyx:37: in scipy.spatial._hausdorff.directed_hausdorff ??? __all__ = ['directed_hausdorff'] __builtins__ = &lt;builtins&gt; __doc__ = '\nDirected Hausdorff Code\n\n.. versionadded:: 0.19.0\n\n' __file__ = '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/_hausdorff.cpython-38-x86_64-linux-gnu.so' __loader__ = &lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2939a17490&gt; __name__ = 'scipy.spatial._hausdorff' __package__ = 'scipy.spatial' __pyx_unpickle_Enum = &lt;built-in function __pyx_unpickle_Enum&gt; __spec__ = ModuleSpec(name='scipy.spatial._hausdorff', loader=&lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2939a.../hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/_hausdorff.cpython-38-x86_64-linux-gnu.so') __test__ = {} directed_hausdorff = &lt;built-in function directed_hausdorff&gt; np = &lt;module 'numpy' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/__init__.py'&gt; mtrand.pyx:4478: in numpy.random.mtrand.RandomState.shuffle E UserWarning: `x` isn't a recognized object; `shuffle` is not guaranteed to behave correctly. E.g., non-numpy array/tensor objects with view semantics may contain duplicates after shuffling. MutableSequence = &lt;class 'collections.abc.MutableSequence'&gt; RandomState = &lt;class 'numpy.random.mtrand.RandomState'&gt; _MT19937 = &lt;class 'numpy.random._mt19937.MT19937'&gt; __all__ = ['beta', 'binomial', 'bytes', 'chisquare', 'choice', 'dirichlet', ...] __builtins__ = &lt;builtins&gt; __doc__ = None __file__ = '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/random/mtrand.cpython-38-x86_64-linux-gnu.so' __loader__ = &lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2942eb7d60&gt; __name__ = 'numpy.random.mtrand' __package__ = 'numpy.random' __spec__ = ModuleSpec(name='numpy.random.mtrand', loader=&lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2942eb7d60...'/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/random/mtrand.cpython-38-x86_64-linux-gnu.so') __test__ = {'RandomState.binomial (line 3262)': '\n binomial(n, p, size=None)\n\n Draw samples from a binomial dist... array(['pooh', 'pooh', 'pooh', 'Christopher', 'piglet'], # random\n dtype='&lt;U11')\n\n &quot;, ...} _rand = RandomState(MT19937) at 0x7F2943136E40 beta = &lt;built-in method beta of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; binomial = &lt;built-in method binomial of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; bytes = &lt;built-in method bytes of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; chisquare = &lt;built-in method chisquare of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; choice = &lt;built-in method choice of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; dirichlet = &lt;built-in method dirichlet of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; exponential = &lt;built-in method exponential of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; f = &lt;built-in method f of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; gamma = &lt;built-in method gamma of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; geometric = &lt;built-in method geometric of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; get_state = &lt;built-in method get_state of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; gumbel = &lt;built-in method gumbel of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; hypergeometric = &lt;built-in method hypergeometric of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; laplace = &lt;built-in method laplace of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; logistic = &lt;built-in method logistic of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; lognormal = &lt;built-in method lognormal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; logseries = &lt;built-in method logseries of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; multinomial = &lt;built-in method multinomial of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; multivariate_normal = &lt;built-in method multivariate_normal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; negative_binomial = &lt;built-in method negative_binomial of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; noncentral_chisquare = &lt;built-in method noncentral_chisquare of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; noncentral_f = &lt;built-in method noncentral_f of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; normal = &lt;built-in method normal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; np = &lt;module 'numpy' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/__init__.py'&gt; operator = &lt;module 'operator' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/operator.py'&gt; pareto = &lt;built-in method pareto of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; permutation = &lt;built-in method permutation of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; poisson = &lt;built-in method poisson of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; power = &lt;built-in method power of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; rand = &lt;built-in method rand of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; randint = &lt;built-in method randint of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; randn = &lt;built-in method randn of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; random = &lt;built-in method random of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; random_integers = &lt;built-in method random_integers of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; random_sample = &lt;built-in method random_sample of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; ranf = &lt;built-in function ranf&gt; rayleigh = &lt;built-in method rayleigh of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; seed = &lt;built-in method seed of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; set_state = &lt;built-in method set_state of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; shuffle = &lt;built-in method shuffle of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_cauchy = &lt;built-in method standard_cauchy of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_exponential = &lt;built-in method standard_exponential of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_gamma = &lt;built-in method standard_gamma of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_normal = &lt;built-in method standard_normal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_t = &lt;built-in method standard_t of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; triangular = &lt;built-in method triangular of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; uniform = &lt;built-in method uniform of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; vonmises = &lt;built-in method vonmises of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; wald = &lt;built-in method wald of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; warnings = &lt;module 'warnings' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/warnings.py'&gt; weibull = &lt;built-in method weibull of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; zipf = &lt;built-in method zipf of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt;"><pre class="notranslate"><code class="notranslate"> _________________________ TestHausdorff.test_symmetry __________________________ [gw0] linux -- Python 3.8.7 /opt/hostedtoolcache/Python/3.8.7/x64/bin/python /opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/tests/test_hausdorff.py:37: in test_symmetry forward = directed_hausdorff(self.path_1, self.path_2)[0] self = &lt;scipy.spatial.tests.test_hausdorff.TestHausdorff object at 0x7f28fbea4970&gt; /opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/distance.py:461: in directed_hausdorff result = _hausdorff.directed_hausdorff(u, v, seed) seed = 0 u = array([[ 0.35923135, 0.93324854, 0. ], [-0.71983479, -0.69414542, 0. ], [-0.92442618, ...0695034, 0. ], [ 0.93629495, 0.3512147 , 0. ], [-0.48493437, -0.87455055, 0. ]]) v = array([[ 1.18546344, 3.07972019, 0. ], [-1.43966959, -1.38829085, 0. ], [-1.84885236, ...1390068, 0. ], [ 1.8725899 , 0.7024294 , 0. ], [-0.96986874, -1.74910109, 0. ]]) _hausdorff.pyx:37: in scipy.spatial._hausdorff.directed_hausdorff ??? __all__ = ['directed_hausdorff'] __builtins__ = &lt;builtins&gt; __doc__ = '\nDirected Hausdorff Code\n\n.. versionadded:: 0.19.0\n\n' __file__ = '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/_hausdorff.cpython-38-x86_64-linux-gnu.so' __loader__ = &lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2939a17490&gt; __name__ = 'scipy.spatial._hausdorff' __package__ = 'scipy.spatial' __pyx_unpickle_Enum = &lt;built-in function __pyx_unpickle_Enum&gt; __spec__ = ModuleSpec(name='scipy.spatial._hausdorff', loader=&lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2939a.../hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/scipy/spatial/_hausdorff.cpython-38-x86_64-linux-gnu.so') __test__ = {} directed_hausdorff = &lt;built-in function directed_hausdorff&gt; np = &lt;module 'numpy' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/__init__.py'&gt; mtrand.pyx:4478: in numpy.random.mtrand.RandomState.shuffle E UserWarning: `x` isn't a recognized object; `shuffle` is not guaranteed to behave correctly. E.g., non-numpy array/tensor objects with view semantics may contain duplicates after shuffling. MutableSequence = &lt;class 'collections.abc.MutableSequence'&gt; RandomState = &lt;class 'numpy.random.mtrand.RandomState'&gt; _MT19937 = &lt;class 'numpy.random._mt19937.MT19937'&gt; __all__ = ['beta', 'binomial', 'bytes', 'chisquare', 'choice', 'dirichlet', ...] __builtins__ = &lt;builtins&gt; __doc__ = None __file__ = '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/random/mtrand.cpython-38-x86_64-linux-gnu.so' __loader__ = &lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2942eb7d60&gt; __name__ = 'numpy.random.mtrand' __package__ = 'numpy.random' __spec__ = ModuleSpec(name='numpy.random.mtrand', loader=&lt;_frozen_importlib_external.ExtensionFileLoader object at 0x7f2942eb7d60...'/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/random/mtrand.cpython-38-x86_64-linux-gnu.so') __test__ = {'RandomState.binomial (line 3262)': '\n binomial(n, p, size=None)\n\n Draw samples from a binomial dist... array(['pooh', 'pooh', 'pooh', 'Christopher', 'piglet'], # random\n dtype='&lt;U11')\n\n ", ...} _rand = RandomState(MT19937) at 0x7F2943136E40 beta = &lt;built-in method beta of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; binomial = &lt;built-in method binomial of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; bytes = &lt;built-in method bytes of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; chisquare = &lt;built-in method chisquare of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; choice = &lt;built-in method choice of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; dirichlet = &lt;built-in method dirichlet of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; exponential = &lt;built-in method exponential of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; f = &lt;built-in method f of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; gamma = &lt;built-in method gamma of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; geometric = &lt;built-in method geometric of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; get_state = &lt;built-in method get_state of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; gumbel = &lt;built-in method gumbel of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; hypergeometric = &lt;built-in method hypergeometric of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; laplace = &lt;built-in method laplace of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; logistic = &lt;built-in method logistic of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; lognormal = &lt;built-in method lognormal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; logseries = &lt;built-in method logseries of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; multinomial = &lt;built-in method multinomial of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; multivariate_normal = &lt;built-in method multivariate_normal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; negative_binomial = &lt;built-in method negative_binomial of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; noncentral_chisquare = &lt;built-in method noncentral_chisquare of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; noncentral_f = &lt;built-in method noncentral_f of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; normal = &lt;built-in method normal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; np = &lt;module 'numpy' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/site-packages/numpy/__init__.py'&gt; operator = &lt;module 'operator' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/operator.py'&gt; pareto = &lt;built-in method pareto of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; permutation = &lt;built-in method permutation of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; poisson = &lt;built-in method poisson of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; power = &lt;built-in method power of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; rand = &lt;built-in method rand of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; randint = &lt;built-in method randint of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; randn = &lt;built-in method randn of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; random = &lt;built-in method random of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; random_integers = &lt;built-in method random_integers of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; random_sample = &lt;built-in method random_sample of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; ranf = &lt;built-in function ranf&gt; rayleigh = &lt;built-in method rayleigh of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; seed = &lt;built-in method seed of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; set_state = &lt;built-in method set_state of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; shuffle = &lt;built-in method shuffle of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_cauchy = &lt;built-in method standard_cauchy of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_exponential = &lt;built-in method standard_exponential of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_gamma = &lt;built-in method standard_gamma of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_normal = &lt;built-in method standard_normal of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; standard_t = &lt;built-in method standard_t of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; triangular = &lt;built-in method triangular of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; uniform = &lt;built-in method uniform of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; vonmises = &lt;built-in method vonmises of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; wald = &lt;built-in method wald of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; warnings = &lt;module 'warnings' from '/opt/hostedtoolcache/Python/3.8.7/x64/lib/python3.8/warnings.py'&gt; weibull = &lt;built-in method weibull of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; zipf = &lt;built-in method zipf of numpy.random.mtrand.RandomState object at 0x7f2943136e40&gt; </code></pre></div> </details> <p dir="auto">On AppVeyor:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-ev3j_zdy\build\temp.win-amd64-3.7\scipy\integrate\quadpack\dqwgtc.o C:\Use rs\appveyor\AppData\Local\Temp\1\pip-req-build-ev3j_zdy\build\temp.win-amd64-3.7\scipy\integrate\quadpack\dqwgtf.o C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-ev3j_zdy\build\temp.win-amd64-3.7\scipy\integrate\quadpack\dqwgts.o -LC:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\lib\gcc\x86_64-w64-mingw32\6.3.0 -Lc:\python37-x64\libs -Lc:\python37-x64\PCbuild\amd64 -Lbuild\temp.win-amd64-3.7 -o build\temp.win-amd64-3.7\Release\.libs\libdqag.QD7OX7SDRWGIZYWWAF2SE2SG6JDJXW3B.gfortran-win_amd64.dll build\temp.win-amd64-3.7\Release\.libs\libopenblas.3HBPCJB5BPQGKWVZAVEBXNNJ2Q2G3TUP.gfortran-win_amd64.dll -Wl,--allow-multiple-definition -Wl,--output-def,build\temp.win-amd64-3.7\Release\libdqag.QD7OX7SDRWGIZYWWAF2SE2SG6JDJXW3B.gfortran-win_amd64.def -Wl,--export-all-symbols -Wl,--enable-auto-import -static -mlong-double-64&quot; failed with exit status 1 Building wheel for scipy (PEP 517): finished with status 'error' ERROR: Failed building wheel for scipy Failed to build scipy ERROR: Failed to build one or more wheels Exception information: Traceback (most recent call last): File &quot;c:\python37-x64\lib\site-packages\pip\_internal\cli\base_command.py&quot;, line 189, in _main status = self.run(options, args) File &quot;c:\python37-x64\lib\site-packages\pip\_internal\cli\req_command.py&quot;, line 178, in wrapper return func(self, options, args) File &quot;c:\python37-x64\lib\site-packages\pip\_internal\commands\wheel.py&quot;, line 191, in run &quot;Failed to build one or more wheels&quot; pip._internal.exceptions.CommandError: Failed to build one or more wheels"><pre class="notranslate"><code class="notranslate">C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-ev3j_zdy\build\temp.win-amd64-3.7\scipy\integrate\quadpack\dqwgtc.o C:\Use rs\appveyor\AppData\Local\Temp\1\pip-req-build-ev3j_zdy\build\temp.win-amd64-3.7\scipy\integrate\quadpack\dqwgtf.o C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-ev3j_zdy\build\temp.win-amd64-3.7\scipy\integrate\quadpack\dqwgts.o -LC:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\lib\gcc\x86_64-w64-mingw32\6.3.0 -Lc:\python37-x64\libs -Lc:\python37-x64\PCbuild\amd64 -Lbuild\temp.win-amd64-3.7 -o build\temp.win-amd64-3.7\Release\.libs\libdqag.QD7OX7SDRWGIZYWWAF2SE2SG6JDJXW3B.gfortran-win_amd64.dll build\temp.win-amd64-3.7\Release\.libs\libopenblas.3HBPCJB5BPQGKWVZAVEBXNNJ2Q2G3TUP.gfortran-win_amd64.dll -Wl,--allow-multiple-definition -Wl,--output-def,build\temp.win-amd64-3.7\Release\libdqag.QD7OX7SDRWGIZYWWAF2SE2SG6JDJXW3B.gfortran-win_amd64.def -Wl,--export-all-symbols -Wl,--enable-auto-import -static -mlong-double-64" failed with exit status 1 Building wheel for scipy (PEP 517): finished with status 'error' ERROR: Failed building wheel for scipy Failed to build scipy ERROR: Failed to build one or more wheels Exception information: Traceback (most recent call last): File "c:\python37-x64\lib\site-packages\pip\_internal\cli\base_command.py", line 189, in _main status = self.run(options, args) File "c:\python37-x64\lib\site-packages\pip\_internal\cli\req_command.py", line 178, in wrapper return func(self, options, args) File "c:\python37-x64\lib\site-packages\pip\_internal\commands\wheel.py", line 191, in run "Failed to build one or more wheels" pip._internal.exceptions.CommandError: Failed to build one or more wheels </code></pre></div> <p dir="auto">I am also seeing this in macOS tests, but that might be unrelated, as I've seen it intermittently before today:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="gcc: /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/source.c gcc /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/source.o -L/usr/local/lib -lopenblas -o /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/a.out FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] /Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py:936: UserWarning: Specified path /usr/local/include/python3.9 is invalid. return self.get_paths(self.section, key) blas_opt_info: blas_mkl_info: libraries mkl_rt not found in ['/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib', '/usr/local/lib', '/usr/lib'] NOT AVAILABLE blis_info: libraries blis not found in ['/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib', '/usr/local/lib', '/usr/lib'] NOT AVAILABLE openblas_info: C compiler: gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/usr/local/opt/sqlite/include -I/usr/local/opt/sqlite/include creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24 creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b compile options: '-c' gcc: /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/source.c gcc /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/source.o -L/usr/local/lib -lopenblas -o /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/a.out FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] blas_info: Traceback (most recent call last): File &quot;/Users/runner/work/scipy/scipy/setup.py&quot;, line 605, in &lt;module&gt; setup_package() File &quot;/Users/runner/work/scipy/scipy/setup.py&quot;, line 601, in setup_package setup(**metadata) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/core.py&quot;, line 135, in setup config = configuration() File &quot;/Users/runner/work/scipy/scipy/setup.py&quot;, line 524, in configuration config.add_subpackage('scipy') File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py&quot;, line 1019, in add_subpackage config_list = self.get_subpackage(subpackage_name, subpackage_path, File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py&quot;, line 985, in get_subpackage config = self._get_configuration_from_setup_py( File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py&quot;, line 927, in _get_configuration_from_setup_py config = setup_module.configuration(*args) File &quot;scipy/setup.py&quot;, line 18, in configuration config.add_subpackage('optimize') File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py&quot;, line 1019, in add_subpackage config_list = self.get_subpackage(subpackage_name, subpackage_path, File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py&quot;, line 985, in get_subpackage config = self._get_configuration_from_setup_py( File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py&quot;, line 927, in _get_configuration_from_setup_py config = setup_module.configuration(*args) File &quot;scipy/optimize/setup.py&quot;, line 102, in configuration ext = pythran.dist.PythranExtension( File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/pythran/dist.py&quot;, line 131, in __init__ cfg_ext = cfg.make_extension(python=True, **kwargs) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/pythran/config.py&quot;, line 220, in make_extension numpy_blas = numpy_sys.get_info(user_blas) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 584, in get_info return cl().get_info(notfound_action) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 844, in get_info self.calc_info() File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 2040, in calc_info info = self.check_libs(lib_dirs, blas_libs, []) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 986, in check_libs info = self._check_libs(lib_dirs, libs, opt_libs, [ext]) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 1057, in _check_libs found_dirs, found_libs = self._find_libs(lib_dirs, libs, exts) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 1041, in _find_libs found_lib = self._find_lib(lib_dir, lib, exts) File &quot;/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py&quot;, line 1022, in _find_lib raise RuntimeError(_accel_msg.format(filename=p[0])) RuntimeError: Found /usr/lib/libblas.dylib, but that file is a symbolic link to the MacOS Accelerate framework, which is not supported by NumPy. You must configure the build to use a different optimized library, or disable the use of optimized BLAS and LAPACK by setting the environment variables NPY_BLAS_ORDER=&quot;&quot; and NPY_LAPACK_ORDER=&quot;&quot; before building NumPy. Build failed! (0:01:47.617718 elapsed) Error: Process completed with exit code 1."><pre class="notranslate"><code class="notranslate">gcc: /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/source.c gcc /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/source.o -L/usr/local/lib -lopenblas -o /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmp76pay1ja/a.out FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] /Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py:936: UserWarning: Specified path /usr/local/include/python3.9 is invalid. return self.get_paths(self.section, key) blas_opt_info: blas_mkl_info: libraries mkl_rt not found in ['/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib', '/usr/local/lib', '/usr/lib'] NOT AVAILABLE blis_info: libraries blis not found in ['/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib', '/usr/local/lib', '/usr/lib'] NOT AVAILABLE openblas_info: C compiler: gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/usr/local/opt/sqlite/include -I/usr/local/opt/sqlite/include creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24 creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T creating /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b compile options: '-c' gcc: /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/source.c gcc /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/source.o -L/usr/local/lib -lopenblas -o /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/tmpayy_ek6b/a.out FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] FOUND: libraries = ['openblas', 'openblas'] library_dirs = ['/usr/local/lib'] language = c define_macros = [('HAVE_CBLAS', None)] runtime_library_dirs = ['/usr/local/lib'] blas_info: Traceback (most recent call last): File "/Users/runner/work/scipy/scipy/setup.py", line 605, in &lt;module&gt; setup_package() File "/Users/runner/work/scipy/scipy/setup.py", line 601, in setup_package setup(**metadata) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/core.py", line 135, in setup config = configuration() File "/Users/runner/work/scipy/scipy/setup.py", line 524, in configuration config.add_subpackage('scipy') File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py", line 1019, in add_subpackage config_list = self.get_subpackage(subpackage_name, subpackage_path, File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py", line 985, in get_subpackage config = self._get_configuration_from_setup_py( File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py", line 927, in _get_configuration_from_setup_py config = setup_module.configuration(*args) File "scipy/setup.py", line 18, in configuration config.add_subpackage('optimize') File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py", line 1019, in add_subpackage config_list = self.get_subpackage(subpackage_name, subpackage_path, File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py", line 985, in get_subpackage config = self._get_configuration_from_setup_py( File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/misc_util.py", line 927, in _get_configuration_from_setup_py config = setup_module.configuration(*args) File "scipy/optimize/setup.py", line 102, in configuration ext = pythran.dist.PythranExtension( File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/pythran/dist.py", line 131, in __init__ cfg_ext = cfg.make_extension(python=True, **kwargs) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/pythran/config.py", line 220, in make_extension numpy_blas = numpy_sys.get_info(user_blas) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 584, in get_info return cl().get_info(notfound_action) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 844, in get_info self.calc_info() File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 2040, in calc_info info = self.check_libs(lib_dirs, blas_libs, []) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 986, in check_libs info = self._check_libs(lib_dirs, libs, opt_libs, [ext]) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 1057, in _check_libs found_dirs, found_libs = self._find_libs(lib_dirs, libs, exts) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 1041, in _find_libs found_lib = self._find_lib(lib_dir, lib, exts) File "/Users/runner/hostedtoolcache/Python/3.9.1/x64/lib/python3.9/site-packages/numpy/distutils/system_info.py", line 1022, in _find_lib raise RuntimeError(_accel_msg.format(filename=p[0])) RuntimeError: Found /usr/lib/libblas.dylib, but that file is a symbolic link to the MacOS Accelerate framework, which is not supported by NumPy. You must configure the build to use a different optimized library, or disable the use of optimized BLAS and LAPACK by setting the environment variables NPY_BLAS_ORDER="" and NPY_LAPACK_ORDER="" before building NumPy. Build failed! (0:01:47.617718 elapsed) Error: Process completed with exit code 1. </code></pre></div>
<p dir="auto">My issue is about how to use make_lsq_spline() method correctly. I am using spicy 1.3 and numpy 1.16.3.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np import scipy.interpolate as si x = np.array([0.03350967, 0.06701934, 0.100529 , 0.13403867, 0.16754834, 0.20105801, 0.23456768, 0.26807734, 0.30158701, 0.33509668, 0.36860635, 0.40211602, 0.43562568, 0.46913535, 0.50264502, 0.53615469, 0.56966435, 0.60317402, 0.63668369, 0.67019336, 0.70370303, 0.73721269, 0.77072236, 0.80423203, 0.8377417 , 0.87125137, 0.90476103, 0.9382707 , 0.97178037, 1.00529004, 1.03879971, 1.07230937, 1.10581904, 1.13932871, 1.17283838, 1.20634805, 1.23985771, 1.27336738, 1.30687705, 1.34038672, 1.37389639, 1.40740605, 1.44091572, 1.47442539, 1.50793506, 1.54144472, 1.57495439, 1.60846406, 1.64197373, 1.6754834 , 1.70899306, 1.74250273, 1.7760124 , 1.80952207, 1.84303174]) y = np.array([0.1040807 , 0.10382307, 0.10323297, 0.10276147, 0.10257906, 0.10253339, 0.10236513, 0.10225094, 0.10208078, 0.10168483, 0.10103374, 0.10016549, 0.0992114 , 0.09833254, 0.09753467, 0.09679354, 0.09588709, 0.09510592, 0.09425722, 0.09309047, 0.09207683, 0.09155676, 0.09093702, 0.09022714, 0.08975676, 0.08955236, 0.08930825, 0.11663662, 0.11668795, 0.11723575, 0.11800538, 0.11901272, 0.12012716, 0.12158163, 0.12319893, 0.12419895, 0.12573243, 0.1254061 , 0.1250039 , 0.12455747, 0.124469 , 0.1247247 , 0.12429177, 0.12363416, 0.12318804, 0.12259555, 0.12239772, 0.12225429, 0.12194444, 0.12136568, 0.12067843, 0.11981264, 0.11873786, 0.11807431, 0.11748397]) knots=np.linspace(x[0],x[-1],5) t=np.r_[(x[0],)*4, knots, (x[-1],)*4] spl=si.make_lsq_spline(x,y,t) "><pre class="notranslate"><code class="notranslate">import numpy as np import scipy.interpolate as si x = np.array([0.03350967, 0.06701934, 0.100529 , 0.13403867, 0.16754834, 0.20105801, 0.23456768, 0.26807734, 0.30158701, 0.33509668, 0.36860635, 0.40211602, 0.43562568, 0.46913535, 0.50264502, 0.53615469, 0.56966435, 0.60317402, 0.63668369, 0.67019336, 0.70370303, 0.73721269, 0.77072236, 0.80423203, 0.8377417 , 0.87125137, 0.90476103, 0.9382707 , 0.97178037, 1.00529004, 1.03879971, 1.07230937, 1.10581904, 1.13932871, 1.17283838, 1.20634805, 1.23985771, 1.27336738, 1.30687705, 1.34038672, 1.37389639, 1.40740605, 1.44091572, 1.47442539, 1.50793506, 1.54144472, 1.57495439, 1.60846406, 1.64197373, 1.6754834 , 1.70899306, 1.74250273, 1.7760124 , 1.80952207, 1.84303174]) y = np.array([0.1040807 , 0.10382307, 0.10323297, 0.10276147, 0.10257906, 0.10253339, 0.10236513, 0.10225094, 0.10208078, 0.10168483, 0.10103374, 0.10016549, 0.0992114 , 0.09833254, 0.09753467, 0.09679354, 0.09588709, 0.09510592, 0.09425722, 0.09309047, 0.09207683, 0.09155676, 0.09093702, 0.09022714, 0.08975676, 0.08955236, 0.08930825, 0.11663662, 0.11668795, 0.11723575, 0.11800538, 0.11901272, 0.12012716, 0.12158163, 0.12319893, 0.12419895, 0.12573243, 0.1254061 , 0.1250039 , 0.12455747, 0.124469 , 0.1247247 , 0.12429177, 0.12363416, 0.12318804, 0.12259555, 0.12239772, 0.12225429, 0.12194444, 0.12136568, 0.12067843, 0.11981264, 0.11873786, 0.11807431, 0.11748397]) knots=np.linspace(x[0],x[-1],5) t=np.r_[(x[0],)*4, knots, (x[-1],)*4] spl=si.make_lsq_spline(x,y,t) </code></pre></div> <h3 dir="auto">Error message:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--------------------------------------------------------------------------- LinAlgError Traceback (most recent call last) &lt;ipython-input-33-c19ae7c64e41&gt; in &lt;module&gt; ----&gt; 1 spl2=si.make_lsq_spline(x,y,t) /usr/local/lib/python3.7/site-packages/scipy/interpolate/_bsplines.py in make_lsq_spline(x, y, t, k, w, axis, check_finite) 1015 # have observation matrix &amp; rhs, can solve the LSQ problem 1016 cho_decomp = cholesky_banded(ab, overwrite_ab=True, lower=lower, -&gt; 1017 check_finite=check_finite) 1018 c = cho_solve_banded((cho_decomp, lower), rhs, overwrite_b=True, 1019 check_finite=check_finite) /usr/local/lib/python3.7/site-packages/scipy/linalg/decomp_cholesky.py in cholesky_banded(ab, overwrite_ab, lower, check_finite) 280 c, info = pbtrf(ab, lower=lower, overwrite_ab=overwrite_ab) 281 if info &gt; 0: --&gt; 282 raise LinAlgError(&quot;%d-th leading minor not positive definite&quot; % info) 283 if info &lt; 0: 284 raise ValueError('illegal value in %d-th argument of internal pbtrf' LinAlgError: 1-th leading minor not positive definite"><pre class="notranslate"><code class="notranslate">--------------------------------------------------------------------------- LinAlgError Traceback (most recent call last) &lt;ipython-input-33-c19ae7c64e41&gt; in &lt;module&gt; ----&gt; 1 spl2=si.make_lsq_spline(x,y,t) /usr/local/lib/python3.7/site-packages/scipy/interpolate/_bsplines.py in make_lsq_spline(x, y, t, k, w, axis, check_finite) 1015 # have observation matrix &amp; rhs, can solve the LSQ problem 1016 cho_decomp = cholesky_banded(ab, overwrite_ab=True, lower=lower, -&gt; 1017 check_finite=check_finite) 1018 c = cho_solve_banded((cho_decomp, lower), rhs, overwrite_b=True, 1019 check_finite=check_finite) /usr/local/lib/python3.7/site-packages/scipy/linalg/decomp_cholesky.py in cholesky_banded(ab, overwrite_ab, lower, check_finite) 280 c, info = pbtrf(ab, lower=lower, overwrite_ab=overwrite_ab) 281 if info &gt; 0: --&gt; 282 raise LinAlgError("%d-th leading minor not positive definite" % info) 283 if info &lt; 0: 284 raise ValueError('illegal value in %d-th argument of internal pbtrf' LinAlgError: 1-th leading minor not positive definite </code></pre></div> <h3 dir="auto">Scipy/Numpy/Python version information:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 1.3.0 1.16.3 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 1.3.0 1.16.3 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0) </code></pre></div>
0
<p dir="auto">Seems to only be IE is not displaying correctly on RC1 as it still includes the mobile nav. I am currently looking into why and such but want to know if others can duplicate or if it was a change on my end.</p>
<p dir="auto">I'm trying to download a customized bootstrap, changing the @gridColumnWidth variable to 65px (so that my .span12 is 1000px).<br> The generated css includes 3 different declarations of .span12. The first one is the right one (1000px), then it gets overwritten by the following two.</p> <p dir="auto">Manually changing everything is not feasible.</p> <p dir="auto">Is there a bug with the builder or I'm missing something?</p>
0
<p dir="auto">Currently we don't have a consistent way of handling error in our build, which results in confusing or duplicate errors being logged to console.</p> <ul dir="auto"> <li>some broccoli plugin logs stuff to console (e.g. broccoli-typescript plugin prints type errors) and throws at the end to indicate that a build failed</li> <li><code class="notranslate">AngularBuilder</code> captures any broccoli plugin errors, prints them and rethrows them</li> <li>gulp tasks also print any errors caught and often add more task-level errors to the output</li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report =&gt; search github for a similar issue or PR before submitting [x] feature request [ ] support request =&gt; 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 =&gt; search github for a similar issue or PR before submitting [x] feature request [ ] support request =&gt; 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> There's no validator for <code class="notranslate">&lt;input type="email"&gt;</code> so users have to use pattern validator</p> <p dir="auto"><strong>Expected behavior</strong><br> We should provide validators for basic input types</p> <p dir="auto">This is a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="94092766" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/2962" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/2962/hovercard" href="https://github.com/angular/angular/issues/2962">#2962</a> but it's too much for a single pr so I want to break it into multiple issues</p>
0
<p dir="auto">0 info it worked if it ends with ok<br> 1 verbose cli [<br> 1 verbose cli 'C:\Program Files\nodejs\node.exe',<br> 1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',<br> 1 verbose cli 'install',<br> 1 verbose cli '--quiet'<br> 1 verbose cli ]<br> 2 info using [email protected]<br> 3 info using [email protected]<br> 4 verbose npm-session eda8cfa0a6424e75<br> 5 silly install runPreinstallTopLevelLifecycles<br> 6 silly preinstall [email protected]<br> 7 info lifecycle [email protected]~preinstall: [email protected]<br> 8 silly install loadCurrentTree<br> 9 silly install readLocalPackageData<br> 10 timing stage:loadCurrentTree Completed in 12ms<br> 11 silly install loadIdealTree<br> 12 silly install cloneCurrentTreeToIdealTree<br> 13 timing stage:loadIdealTree:cloneCurrentTree Completed in 0ms<br> 14 silly install loadShrinkwrap<br> 15 timing stage:loadIdealTree:loadShrinkwrap Completed in 2ms<br> 16 silly install loadAllDepsIntoIdealTree<br> 17 http fetch GET 200 <a href="https://registry.npmjs.org/karma-coverage" rel="nofollow">https://registry.npmjs.org/karma-coverage</a> 476ms<br> 18 http fetch GET 200 <a href="https://registry.npmjs.org/jasmine-core" rel="nofollow">https://registry.npmjs.org/jasmine-core</a> 501ms<br> 19 http fetch GET 200 <a href="https://registry.npmjs.org/karma-jasmine" rel="nofollow">https://registry.npmjs.org/karma-jasmine</a> 504ms<br> 20 http fetch GET 200 <a href="https://registry.npmjs.org/karma-chrome-launcher" rel="nofollow">https://registry.npmjs.org/karma-chrome-launcher</a> 531ms<br> 21 http fetch GET 200 <a href="https://registry.npmjs.org/karma-coverage/-/karma-coverage-2.0.3.tgz" rel="nofollow">https://registry.npmjs.org/karma-coverage/-/karma-coverage-2.0.3.tgz</a> 519ms<br> 22 http fetch GET 200 <a href="https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.0.tgz</a> 485ms<br> 23 silly pacote range manifest for karma-coverage@~2.0.3 fetched in 1022ms<br> 24 silly pacote range manifest for karma-chrome-launcher@~3.1.0 fetched in 1026ms<br> 25 http fetch GET 200 <a href="https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-4.0.1.tgz</a> 544ms<br> 26 silly pacote range manifest for karma-jasmine@~4.0.0 fetched in 1057ms<br> 27 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fjasmine" rel="nofollow">https://registry.npmjs.org/@types%2fjasmine</a> 1096ms<br> 28 http fetch GET 200 <a href="https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.7.1.tgz" rel="nofollow">https://registry.npmjs.org/jasmine-core/-/jasmine-core-3.7.1.tgz</a> 774ms<br> 29 silly pacote range manifest for jasmine-core@~3.7.0 fetched in 1285ms<br> 30 http fetch GET 200 <a href="https://registry.npmjs.org/karma-jasmine-html-reporter" rel="nofollow">https://registry.npmjs.org/karma-jasmine-html-reporter</a> 273ms<br> 31 http fetch GET 200 <a href="https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.6.0.tgz</a> 340ms<br> 32 silly pacote range manifest for karma-jasmine-html-reporter@^1.5.0 fetched in 620ms<br> 33 http fetch GET 200 <a href="https://registry.npmjs.org/karma" rel="nofollow">https://registry.npmjs.org/karma</a> 2334ms<br> 34 http fetch GET 200 <a href="https://registry.npmjs.org/@types/jasmine/-/jasmine-3.6.11.tgz" rel="nofollow">https://registry.npmjs.org/@types/jasmine/-/jasmine-3.6.11.tgz</a> 1740ms<br> 35 silly pacote range manifest for @types/jasmine@~3.6.0 fetched in 2849ms<br> 36 http fetch GET 304 <a href="https://registry.npmjs.org/@angular%2fcli" rel="nofollow">https://registry.npmjs.org/@angular%2fcli</a> 2908ms (from cache)<br> 37 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/cli/-/cli-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/cli/-/cli-12.0.4.tgz</a> 19ms (from cache)<br> 38 silly pacote range manifest for @angular/cli@~12.0.4 fetched in 2941ms<br> 39 http fetch GET 200 <a href="https://registry.npmjs.org/karma/-/karma-6.3.4.tgz" rel="nofollow">https://registry.npmjs.org/karma/-/karma-6.3.4.tgz</a> 1055ms<br> 40 silly pacote range manifest for karma@~6.3.0 fetched in 3414ms<br> 41 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcompiler-cli" rel="nofollow">https://registry.npmjs.org/@angular%2fcompiler-cli</a> 3456ms<br> 42 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcommon" rel="nofollow">https://registry.npmjs.org/@angular%2fcommon</a> 2447ms<br> 43 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fanimations" rel="nofollow">https://registry.npmjs.org/@angular%2fanimations</a> 2727ms<br> 44 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcompiler" rel="nofollow">https://registry.npmjs.org/@angular%2fcompiler</a> 2379ms<br> 45 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fnode" rel="nofollow">https://registry.npmjs.org/@types%2fnode</a> 4218ms<br> 46 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fforms" rel="nofollow">https://registry.npmjs.org/@angular%2fforms</a> 1518ms<br> 47 http fetch GET 200 <a href="https://registry.npmjs.org/@types/node/-/node-12.20.15.tgz" rel="nofollow">https://registry.npmjs.org/@types/node/-/node-12.20.15.tgz</a> 449ms<br> 48 silly pacote range manifest for @types/node@^12.11.1 fetched in 4710ms<br> 49 http fetch GET 200 <a href="https://registry.npmjs.org/@angular-devkit%2fbuild-angular" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fbuild-angular</a> 4758ms<br> 50 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fplatform-browser" rel="nofollow">https://registry.npmjs.org/@angular%2fplatform-browser</a> 1953ms<br> 51 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcore" rel="nofollow">https://registry.npmjs.org/@angular%2fcore</a> 2817ms<br> 52 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fplatform-browser-dynamic" rel="nofollow">https://registry.npmjs.org/@angular%2fplatform-browser-dynamic</a> 1752ms<br> 53 http fetch GET 200 <a href="https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-12.0.4.tgz</a> 2006ms<br> 54 silly pacote range manifest for @angular-devkit/build-angular@~12.0.4 fetched in 6803ms<br> 55 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/forms/-/forms-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/forms/-/forms-12.0.4.tgz</a> 2495ms<br> 56 silly pacote range manifest for @angular/forms@~12.0.4 fetched in 4046ms<br> 57 http fetch GET 304 <a href="https://registry.npmjs.org/rxjs" rel="nofollow">https://registry.npmjs.org/rxjs</a> 220ms (from cache)<br> 58 http fetch GET 200 <a href="https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" rel="nofollow">https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz</a> 88ms (from cache)<br> 59 silly pacote range manifest for rxjs@~6.6.0 fetched in 351ms<br> 60 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/animations/-/animations-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/animations/-/animations-12.0.4.tgz</a> 3721ms<br> 61 silly pacote range manifest for @angular/animations@~12.0.4 fetched in 6464ms<br> 62 http fetch GET 304 <a href="https://registry.npmjs.org/tslib" rel="nofollow">https://registry.npmjs.org/tslib</a> 216ms (from cache)<br> 63 http fetch GET 200 <a href="https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz</a> 194ms<br> 64 silly pacote range manifest for tslib@^2.1.0 fetched in 437ms<br> 65 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-12.0.4.tgz</a> 2404ms<br> 66 silly pacote range manifest for @angular/platform-browser@~12.0.4 fetched in 4388ms<br> 67 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-coverage" rel="nofollow">https://registry.npmjs.org/istanbul-lib-coverage</a> 218ms<br> 68 http fetch GET 200 <a href="https://registry.npmjs.org/zone.js" rel="nofollow">https://registry.npmjs.org/zone.js</a> 609ms<br> 69 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-12.0.4.tgz</a> 1677ms<br> 70 silly pacote range manifest for @angular/platform-browser-dynamic@~12.0.4 fetched in 3464ms<br> 71 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz</a> 189ms<br> 72 silly pacote range manifest for istanbul-lib-coverage@^3.0.0 fetched in 427ms<br> 73 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-instrument" rel="nofollow">https://registry.npmjs.org/istanbul-lib-instrument</a> 441ms<br> 74 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-source-maps" rel="nofollow">https://registry.npmjs.org/istanbul-lib-source-maps</a> 228ms<br> 75 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-report" rel="nofollow">https://registry.npmjs.org/istanbul-lib-report</a> 284ms<br> 76 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz</a> 216ms<br> 77 silly pacote range manifest for istanbul-lib-instrument@^4.0.1 fetched in 669ms<br> 78 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz</a> 198ms<br> 79 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz</a> 171ms<br> 80 silly pacote range manifest for istanbul-lib-source-maps@^4.0.0 fetched in 436ms<br> 81 silly pacote range manifest for istanbul-lib-report@^3.0.0 fetched in 465ms<br> 82 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-reports" rel="nofollow">https://registry.npmjs.org/istanbul-reports</a> 403ms<br> 83 http fetch GET 304 <a href="https://registry.npmjs.org/minimatch" rel="nofollow">https://registry.npmjs.org/minimatch</a> 246ms (from cache)<br> 84 http fetch GET 304 <a href="https://registry.npmjs.org/which" rel="nofollow">https://registry.npmjs.org/which</a> 243ms (from cache)<br> 85 silly pacote range manifest for minimatch@^3.0.4 fetched in 248ms<br> 86 silly pacote range manifest for jasmine-core@^3.6.0 fetched in 1ms<br> 87 silly pacote range manifest for which@^1.2.1 fetched in 249ms<br> 88 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz" rel="nofollow">https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz</a> 188ms<br> 89 silly pacote range manifest for istanbul-reports@^3.0.0 fetched in 612ms<br> 90 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2frouter" rel="nofollow">https://registry.npmjs.org/@angular%2frouter</a> 2463ms<br> 91 http fetch GET 304 <a href="https://registry.npmjs.org/@angular-devkit%2fcore" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fcore</a> 427ms (from cache)<br> 92 silly pacote version manifest for @angular-devkit/[email protected] fetched in 434ms<br> 93 http fetch GET 304 <a href="https://registry.npmjs.org/@schematics%2fangular" rel="nofollow">https://registry.npmjs.org/@schematics%2fangular</a> 2010ms (from cache)<br> 94 silly pacote version manifest for @schematics/[email protected] fetched in 2014ms<br> 95 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-12.0.4.tgz</a> 8203ms<br> 96 silly pacote range manifest for @angular/compiler-cli@~12.0.4 fetched in 11679ms<br> 97 http fetch GET 304 <a href="https://registry.npmjs.org/@angular-devkit%2farchitect" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2farchitect</a> 2811ms (from cache)<br> 98 silly pacote version manifest for @angular-devkit/[email protected] fetched in 2817ms<br> 99 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-colors" rel="nofollow">https://registry.npmjs.org/ansi-colors</a> 81ms (from cache)<br> 100 silly pacote version manifest for [email protected] fetched in 82ms<br> 101 http fetch GET 304 <a href="https://registry.npmjs.org/debug" rel="nofollow">https://registry.npmjs.org/debug</a> 59ms (from cache)<br> 102 silly pacote version manifest for [email protected] fetched in 61ms<br> 103 http fetch GET 304 <a href="https://registry.npmjs.org/@angular-devkit%2fschematics" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fschematics</a> 2759ms (from cache)<br> 104 silly pacote version manifest for @angular-devkit/[email protected] fetched in 2771ms<br> 105 http fetch GET 304 <a href="https://registry.npmjs.org/ini" rel="nofollow">https://registry.npmjs.org/ini</a> 115ms (from cache)<br> 106 silly pacote version manifest for [email protected] fetched in 118ms<br> 107 http fetch GET 304 <a href="https://registry.npmjs.org/inquirer" rel="nofollow">https://registry.npmjs.org/inquirer</a> 127ms (from cache)<br> 108 silly pacote version manifest for [email protected] fetched in 132ms<br> 109 http fetch GET 304 <a href="https://registry.npmjs.org/jsonc-parser" rel="nofollow">https://registry.npmjs.org/jsonc-parser</a> 177ms (from cache)<br> 110 http fetch GET 304 <a href="https://registry.npmjs.org/npm-package-arg" rel="nofollow">https://registry.npmjs.org/npm-package-arg</a> 158ms (from cache)<br> 111 silly pacote version manifest for [email protected] fetched in 181ms<br> 112 silly pacote version manifest for [email protected] fetched in 163ms<br> 113 http fetch GET 304 <a href="https://registry.npmjs.org/npm-pick-manifest" rel="nofollow">https://registry.npmjs.org/npm-pick-manifest</a> 160ms (from cache)<br> 114 silly pacote version manifest for [email protected] fetched in 161ms<br> 115 http fetch GET 304 <a href="https://registry.npmjs.org/ora" rel="nofollow">https://registry.npmjs.org/ora</a> 214ms (from cache)<br> 116 http fetch GET 304 <a href="https://registry.npmjs.org/open" rel="nofollow">https://registry.npmjs.org/open</a> 218ms (from cache)<br> 117 silly pacote version manifest for [email protected] fetched in 218ms<br> 118 silly pacote version manifest for [email protected] fetched in 225ms<br> 119 http fetch GET 304 <a href="https://registry.npmjs.org/pacote" rel="nofollow">https://registry.npmjs.org/pacote</a> 230ms (from cache)<br> 120 silly pacote version manifest for [email protected] fetched in 235ms<br> 121 http fetch GET 304 <a href="https://registry.npmjs.org/rimraf" rel="nofollow">https://registry.npmjs.org/rimraf</a> 165ms (from cache)<br> 122 http fetch GET 304 <a href="https://registry.npmjs.org/resolve" rel="nofollow">https://registry.npmjs.org/resolve</a> 171ms (from cache)<br> 123 silly pacote version manifest for [email protected] fetched in 176ms<br> 124 silly pacote version manifest for [email protected] fetched in 184ms<br> 125 http fetch GET 304 <a href="https://registry.npmjs.org/semver" rel="nofollow">https://registry.npmjs.org/semver</a> 167ms (from cache)<br> 126 silly pacote version manifest for [email protected] fetched in 170ms<br> 127 http fetch GET 304 <a href="https://registry.npmjs.org/uuid" rel="nofollow">https://registry.npmjs.org/uuid</a> 229ms (from cache)<br> 128 http fetch GET 304 <a href="https://registry.npmjs.org/symbol-observable" rel="nofollow">https://registry.npmjs.org/symbol-observable</a> 238ms (from cache)<br> 129 http fetch GET 304 <a href="https://registry.npmjs.org/@yarnpkg%2flockfile" rel="nofollow">https://registry.npmjs.org/@yarnpkg%2flockfile</a> 1342ms (from cache)<br> 130 silly pacote version manifest for [email protected] fetched in 237ms<br> 131 silly pacote version manifest for [email protected] fetched in 241ms<br> 132 silly pacote version manifest for @yarnpkg/[email protected] fetched in 1347ms<br> 133 http fetch GET 200 <a href="https://registry.npmjs.org/body-parser" rel="nofollow">https://registry.npmjs.org/body-parser</a> 330ms<br> 134 http fetch GET 304 <a href="https://registry.npmjs.org/chokidar" rel="nofollow">https://registry.npmjs.org/chokidar</a> 252ms (from cache)<br> 135 silly pacote range manifest for chokidar@^3.5.1 fetched in 262ms<br> 136 http fetch GET 304 <a href="https://registry.npmjs.org/braces" rel="nofollow">https://registry.npmjs.org/braces</a> 275ms (from cache)<br> 137 silly pacote range manifest for braces@^3.0.2 fetched in 278ms<br> 138 http fetch GET 200 <a href="https://registry.npmjs.org/colors" rel="nofollow">https://registry.npmjs.org/colors</a> 282ms<br> 139 http fetch GET 200 <a href="https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz" rel="nofollow">https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz</a> 256ms<br> 140 silly pacote range manifest for body-parser@^1.19.0 fetched in 610ms<br> 141 http fetch GET 200 <a href="https://registry.npmjs.org/di" rel="nofollow">https://registry.npmjs.org/di</a> 161ms<br> 142 http fetch GET 200 <a href="https://registry.npmjs.org/colors/-/colors-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/colors/-/colors-1.4.0.tgz</a> 172ms<br> 143 silly pacote range manifest for colors@^1.4.0 fetched in 464ms<br> 144 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serialize" rel="nofollow">https://registry.npmjs.org/dom-serialize</a> 201ms<br> 145 http fetch GET 200 <a href="https://registry.npmjs.org/di/-/di-0.0.1.tgz" rel="nofollow">https://registry.npmjs.org/di/-/di-0.0.1.tgz</a> 157ms<br> 146 silly pacote range manifest for di@^0.0.1 fetched in 337ms<br> 147 http fetch GET 304 <a href="https://registry.npmjs.org/glob" rel="nofollow">https://registry.npmjs.org/glob</a> 160ms (from cache)<br> 148 silly pacote range manifest for glob@^7.1.7 fetched in 162ms<br> 149 http fetch GET 200 <a href="https://registry.npmjs.org/typescript" rel="nofollow">https://registry.npmjs.org/typescript</a> 12317ms<br> 150 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz" rel="nofollow">https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz</a> 227ms<br> 151 http fetch GET 304 <a href="https://registry.npmjs.org/graceful-fs" rel="nofollow">https://registry.npmjs.org/graceful-fs</a> 214ms (from cache)<br> 152 silly pacote range manifest for graceful-fs@^4.2.6 fetched in 218ms<br> 153 silly pacote range manifest for dom-serialize@^2.2.1 fetched in 447ms<br> 154 http fetch GET 200 <a href="https://registry.npmjs.org/connect" rel="nofollow">https://registry.npmjs.org/connect</a> 583ms<br> 155 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy" rel="nofollow">https://registry.npmjs.org/http-proxy</a> 269ms<br> 156 http fetch GET 200 <a href="https://registry.npmjs.org/isbinaryfile" rel="nofollow">https://registry.npmjs.org/isbinaryfile</a> 227ms<br> 157 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/core/-/core-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/core/-/core-12.0.4.tgz</a> 8077ms<br> 158 http fetch GET 200 <a href="https://registry.npmjs.org/connect/-/connect-3.7.0.tgz" rel="nofollow">https://registry.npmjs.org/connect/-/connect-3.7.0.tgz</a> 215ms<br> 159 http fetch GET 304 <a href="https://registry.npmjs.org/lodash" rel="nofollow">https://registry.npmjs.org/lodash</a> 226ms (from cache)<br> 160 silly pacote range manifest for lodash@^4.17.21 fetched in 229ms<br> 161 silly pacote range manifest for @angular/core@~12.0.4 fetched in 10908ms<br> 162 silly pacote range manifest for connect@^3.7.0 fetched in 812ms<br> 163 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" rel="nofollow">https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz</a> 184ms<br> 164 silly pacote range manifest for http-proxy@^1.18.1 fetched in 457ms<br> 165 http fetch GET 200 <a href="https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.8.tgz" rel="nofollow">https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.8.tgz</a> 99ms<br> 166 silly pacote range manifest for isbinaryfile@^4.0.8 fetched in 341ms<br> 167 http fetch GET 200 <a href="https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" rel="nofollow">https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz</a> 9ms (from cache)<br> 168 silly pacote range manifest for rimraf@^3.0.2 fetched in 24ms<br> 169 http fetch GET 200 <a href="https://registry.npmjs.org/range-parser" rel="nofollow">https://registry.npmjs.org/range-parser</a> 231ms<br> 170 http fetch GET 200 <a href="https://registry.npmjs.org/mime" rel="nofollow">https://registry.npmjs.org/mime</a> 335ms<br> 171 http fetch GET 200 <a href="https://registry.npmjs.org/log4js" rel="nofollow">https://registry.npmjs.org/log4js</a> 353ms<br> 172 http fetch GET 200 <a href="https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" rel="nofollow">https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz</a> 104ms<br> 173 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io" rel="nofollow">https://registry.npmjs.org/socket.io</a> 241ms<br> 174 silly pacote range manifest for range-parser@^1.2.1 fetched in 361ms<br> 175 http fetch GET 200 <a href="https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz" rel="nofollow">https://registry.npmjs.org/log4js/-/log4js-6.3.0.tgz</a> 115ms<br> 176 http fetch GET 200 <a href="https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" rel="nofollow">https://registry.npmjs.org/mime/-/mime-2.5.2.tgz</a> 142ms<br> 177 silly pacote range manifest for log4js@^6.3.0 fetched in 496ms<br> 178 silly pacote range manifest for mime@^2.5.2 fetched in 494ms<br> 179 http fetch GET 304 <a href="https://registry.npmjs.org/source-map" rel="nofollow">https://registry.npmjs.org/source-map</a> 126ms (from cache)<br> 180 silly pacote range manifest for source-map@^0.6.1 fetched in 128ms<br> 181 http fetch GET 304 <a href="https://registry.npmjs.org/tmp" rel="nofollow">https://registry.npmjs.org/tmp</a> 82ms (from cache)<br> 182 http fetch GET 304 <a href="https://registry.npmjs.org/yargs" rel="nofollow">https://registry.npmjs.org/yargs</a> 105ms (from cache)<br> 183 http fetch GET 200 <a href="https://registry.npmjs.org/qjobs" rel="nofollow">https://registry.npmjs.org/qjobs</a> 627ms<br> 184 http fetch GET 200 <a href="https://registry.npmjs.org/ua-parser-js" rel="nofollow">https://registry.npmjs.org/ua-parser-js</a> 206ms<br> 185 http fetch GET 200 <a href="https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz" rel="nofollow">https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz</a> 137ms<br> 186 silly pacote range manifest for tmp@^0.2.1 fetched in 233ms<br> 187 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz" rel="nofollow">https://registry.npmjs.org/socket.io/-/socket.io-3.1.2.tgz</a> 420ms<br> 188 http fetch GET 200 <a href="https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" rel="nofollow">https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz</a> 202ms<br> 189 silly pacote range manifest for socket.io@^3.1.0 fetched in 688ms<br> 190 silly pacote range manifest for yargs@^16.1.1 fetched in 322ms<br> 191 http fetch GET 200 <a href="https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz" rel="nofollow">https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.28.tgz</a> 285ms<br> 192 silly pacote range manifest for ua-parser-js@^0.7.28 fetched in 500ms<br> 193 http fetch GET 200 <a href="https://registry.npmjs.org/@angular/compiler/-/compiler-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular/compiler/-/compiler-12.0.4.tgz</a> 10996ms<br> 194 silly pacote range manifest for @angular/compiler@~12.0.4 fetched in 13397ms<br> 195 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fcore" rel="nofollow">https://registry.npmjs.org/@babel%2fcore</a> 623ms<br> 196 http fetch GET 200 <a href="https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz</a> 931ms<br> 197 silly pacote range manifest for qjobs@^1.2.0 fetched in 1570ms<br> 198 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator</a> 299ms<br> 199 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fgenerator" rel="nofollow">https://registry.npmjs.org/@babel%2fgenerator</a> 659ms<br> 200 http fetch GET 200 <a href="https://registry.npmjs.org/@angular-devkit%2fbuild-optimizer" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fbuild-optimizer</a> 939ms<br> 201 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz</a> 101ms<br> 202 silly pacote version manifest for @babel/[email protected] fetched in 410ms<br> 203 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/core/-/core-7.14.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/core/-/core-7.14.3.tgz</a> 478ms<br> 204 silly pacote version manifest for @babel/[email protected] fetched in 1124ms<br> 205 http fetch GET 200 <a href="https://registry.npmjs.org/@angular-devkit%2fbuild-webpack" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fbuild-webpack</a> 1304ms<br> 206 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fruntime" rel="nofollow">https://registry.npmjs.org/@babel%2fruntime</a> 319ms<br> 207 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fpreset-env" rel="nofollow">https://registry.npmjs.org/@babel%2fpreset-env</a> 592ms<br> 208 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.2.tgz" rel="nofollow">https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.2.tgz</a> 114ms<br> 209 silly pacote version manifest for @babel/[email protected] fetched in 736ms<br> 210 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2ftemplate" rel="nofollow">https://registry.npmjs.org/@babel%2ftemplate</a> 265ms<br> 211 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz</a> 1304ms<br> 212 silly pacote version manifest for @babel/[email protected] fetched in 2031ms<br> 213 http fetch GET 200 <a href="https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.1200.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.1200.4.tgz</a> 1357ms<br> 214 silly pacote version manifest for @angular-devkit/[email protected] fetched in 2310ms<br> 215 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-runtime" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-runtime</a> 1817ms<br> 216 http fetch GET 200 <a href="https://registry.npmjs.org/@discoveryjs%2fjson-ext" rel="nofollow">https://registry.npmjs.org/@discoveryjs%2fjson-ext</a> 377ms<br> 217 http fetch GET 200 <a href="https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1200.4.tgz" rel="nofollow">https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1200.4.tgz</a> 1286ms<br> 218 silly pacote version manifest for @angular-devkit/[email protected] fetched in 2616ms<br> 219 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.3.tgz</a> 98ms<br> 220 silly pacote version manifest for @babel/[email protected] fetched in 1931ms<br> 221 http fetch GET 200 <a href="https://registry.npmjs.org/@jsdevtools%2fcoverage-istanbul-loader" rel="nofollow">https://registry.npmjs.org/@jsdevtools%2fcoverage-istanbul-loader</a> 499ms<br> 222 http fetch GET 200 <a href="https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz" rel="nofollow">https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz</a> 228ms<br> 223 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz" rel="nofollow">https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz</a> 1364ms<br> 224 http fetch GET 200 <a href="https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz" rel="nofollow">https://registry.npmjs.org/@jsdevtools/coverage-istanbul-loader/-/coverage-istanbul-loader-3.0.5.tgz</a> 103ms<br> 225 silly pacote version manifest for @discoveryjs/[email protected] fetched in 617ms<br> 226 silly pacote version manifest for @babel/[email protected] fetched in 1695ms<br> 227 silly pacote version manifest for @jsdevtools/[email protected] fetched in 617ms<br> 228 http fetch GET 304 <a href="https://registry.npmjs.org/cacache" rel="nofollow">https://registry.npmjs.org/cacache</a> 101ms (from cache)<br> 229 http fetch GET 304 <a href="https://registry.npmjs.org/browserslist" rel="nofollow">https://registry.npmjs.org/browserslist</a> 111ms (from cache)<br> 230 silly pacote range manifest for browserslist@^4.9.1 fetched in 119ms<br> 231 http fetch GET 200 <a href="https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz" rel="nofollow">https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz</a> 246ms<br> 232 silly pacote version manifest for [email protected] fetched in 359ms<br> 233 http fetch GET 200 <a href="https://registry.npmjs.org/circular-dependency-plugin" rel="nofollow">https://registry.npmjs.org/circular-dependency-plugin</a> 256ms<br> 234 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz" rel="nofollow">https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz</a> 1376ms<br> 235 silly pacote version manifest for @babel/[email protected] fetched in 1659ms<br> 236 http fetch GET 200 <a href="https://registry.npmjs.org/babel-loader" rel="nofollow">https://registry.npmjs.org/babel-loader</a> 675ms<br> 237 http fetch GET 200 <a href="https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz" rel="nofollow">https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz</a> 233ms<br> 238 silly pacote version manifest for [email protected] fetched in 503ms<br> 239 http fetch GET 200 <a href="https://registry.npmjs.org/copy-webpack-plugin" rel="nofollow">https://registry.npmjs.org/copy-webpack-plugin</a> 381ms<br> 240 http fetch GET 200 <a href="https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz" rel="nofollow">https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz</a> 218ms<br> 241 silly pacote version manifest for [email protected] fetched in 908ms<br> 242 http fetch GET 200 <a href="https://registry.npmjs.org/critters" rel="nofollow">https://registry.npmjs.org/critters</a> 190ms<br> 243 http fetch GET 200 <a href="https://registry.npmjs.org/@ngtools%2fwebpack" rel="nofollow">https://registry.npmjs.org/@ngtools%2fwebpack</a> 1108ms<br> 244 http fetch GET 200 <a href="https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-8.1.1.tgz" rel="nofollow">https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-8.1.1.tgz</a> 180ms<br> 245 silly pacote version manifest for [email protected] fetched in 574ms<br> 246 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-lite" rel="nofollow">https://registry.npmjs.org/caniuse-lite</a> 949ms<br> 247 http fetch GET 200 <a href="https://registry.npmjs.org/core-js" rel="nofollow">https://registry.npmjs.org/core-js</a> 547ms<br> 248 http fetch GET 200 <a href="https://registry.npmjs.org/css-minimizer-webpack-plugin" rel="nofollow">https://registry.npmjs.org/css-minimizer-webpack-plugin</a> 93ms<br> 249 http fetch GET 200 <a href="https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.0.0.tgz</a> 104ms<br> 250 silly pacote version manifest for [email protected] fetched in 216ms<br> 251 http fetch GET 200 <a href="https://registry.npmjs.org/find-cache-dir" rel="nofollow">https://registry.npmjs.org/find-cache-dir</a> 106ms<br> 252 http fetch GET 200 <a href="https://registry.npmjs.org/core-js/-/core-js-3.12.0.tgz" rel="nofollow">https://registry.npmjs.org/core-js/-/core-js-3.12.0.tgz</a> 333ms<br> 253 http fetch GET 200 <a href="https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" rel="nofollow">https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz</a> 80ms<br> 254 silly pacote version manifest for [email protected] fetched in 891ms<br> 255 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz" rel="nofollow">https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001237.tgz</a> 378ms<br> 256 silly pacote version manifest for [email protected] fetched in 192ms<br> 257 http fetch GET 200 <a href="https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" rel="nofollow">https://registry.npmjs.org/glob/-/glob-7.1.7.tgz</a> 7ms (from cache)<br> 258 silly pacote range manifest for caniuse-lite@^1.0.30001032 fetched in 1344ms<br> 259 silly pacote version manifest for [email protected] fetched in 12ms<br> 260 http fetch GET 304 <a href="https://registry.npmjs.org/https-proxy-agent" rel="nofollow">https://registry.npmjs.org/https-proxy-agent</a> 91ms (from cache)<br> 261 http fetch GET 200 <a href="https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz</a> 6ms (from cache)<br> 262 http fetch GET 200 <a href="https://registry.npmjs.org/karma-source-map-support" rel="nofollow">https://registry.npmjs.org/karma-source-map-support</a> 91ms<br> 263 silly pacote version manifest for [email protected] fetched in 110ms<br> 264 http fetch GET 200 <a href="https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz</a> 83ms<br> 265 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker" rel="nofollow">https://registry.npmjs.org/jest-worker</a> 190ms<br> 266 silly pacote version manifest for [email protected] fetched in 194ms<br> 267 http fetch GET 200 <a href="https://registry.npmjs.org/css-loader" rel="nofollow">https://registry.npmjs.org/css-loader</a> 862ms<br> 268 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz" rel="nofollow">https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz</a> 105ms<br> 269 silly pacote version manifest for [email protected] fetched in 314ms<br> 270 http fetch GET 200 <a href="https://registry.npmjs.org/less-loader" rel="nofollow">https://registry.npmjs.org/less-loader</a> 168ms<br> 271 http fetch GET 200 <a href="https://registry.npmjs.org/less-loader/-/less-loader-8.1.1.tgz" rel="nofollow">https://registry.npmjs.org/less-loader/-/less-loader-8.1.1.tgz</a> 119ms<br> 272 http fetch GET 200 <a href="https://registry.npmjs.org/less" rel="nofollow">https://registry.npmjs.org/less</a> 396ms<br> 273 http fetch GET 200 <a href="https://registry.npmjs.org/license-webpack-plugin" rel="nofollow">https://registry.npmjs.org/license-webpack-plugin</a> 190ms<br> 274 silly pacote version manifest for [email protected] fetched in 311ms<br> 275 http fetch GET 200 <a href="https://registry.npmjs.org/css-loader/-/css-loader-5.2.4.tgz" rel="nofollow">https://registry.npmjs.org/css-loader/-/css-loader-5.2.4.tgz</a> 277ms<br> 276 silly pacote version manifest for [email protected] fetched in 1162ms<br> 277 http fetch GET 200 <a href="https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.3.19.tgz" rel="nofollow">https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-2.3.19.tgz</a> 98ms<br> 278 silly pacote version manifest for [email protected] fetched in 297ms<br> 279 http fetch GET 200 <a href="https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" rel="nofollow">https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz</a> 6ms (from cache)<br> 280 silly pacote version manifest for [email protected] fetched in 15ms<br> 281 http fetch GET 200 <a href="https://registry.npmjs.org/critters/-/critters-0.0.10.tgz" rel="nofollow">https://registry.npmjs.org/critters/-/critters-0.0.10.tgz</a> 1221ms<br> 282 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils" rel="nofollow">https://registry.npmjs.org/loader-utils</a> 177ms<br> 283 silly pacote version manifest for [email protected] fetched in 1426ms<br> 284 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-html-rewriting-stream" rel="nofollow">https://registry.npmjs.org/parse5-html-rewriting-stream</a> 79ms<br> 285 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz</a> 110ms<br> 286 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz</a> 93ms<br> 287 silly pacote version manifest for [email protected] fetched in 297ms<br> 288 silly pacote version manifest for [email protected] fetched in 183ms<br> 289 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-import" rel="nofollow">https://registry.npmjs.org/postcss-import</a> 156ms<br> 290 http fetch GET 200 <a href="https://registry.npmjs.org/mini-css-extract-plugin" rel="nofollow">https://registry.npmjs.org/mini-css-extract-plugin</a> 423ms<br> 291 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-loader" rel="nofollow">https://registry.npmjs.org/postcss-loader</a> 197ms<br> 292 http fetch GET 200 <a href="https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.0.4.tgz</a> 1502ms<br> 293 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-import/-/postcss-import-14.0.1.tgz</a> 98ms<br> 294 silly pacote version manifest for @ngtools/[email protected] fetched in 2633ms<br> 295 silly pacote version manifest for [email protected] fetched in 265ms<br> 296 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.2.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.2.0.tgz</a> 110ms<br> 297 silly pacote version manifest for [email protected] fetched in 316ms<br> 298 http fetch GET 200 <a href="https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.5.1.tgz</a> 132ms<br> 299 silly pacote version manifest for [email protected] fetched in 562ms<br> 300 http fetch GET 200 <a href="https://registry.npmjs.org/raw-loader" rel="nofollow">https://registry.npmjs.org/raw-loader</a> 105ms<br> 301 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-runtime" rel="nofollow">https://registry.npmjs.org/regenerator-runtime</a> 99ms<br> 302 http fetch GET 200 <a href="https://registry.npmjs.org/postcss" rel="nofollow">https://registry.npmjs.org/postcss</a> 534ms<br> 303 http fetch GET 200 <a href="https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/raw-loader/-/raw-loader-4.0.2.tgz</a> 86ms<br> 304 silly pacote version manifest for [email protected] fetched in 200ms<br> 305 silly pacote version manifest for [email protected] fetched in 2ms<br> 306 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz" rel="nofollow">https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz</a> 82ms<br> 307 silly pacote version manifest for [email protected] fetched in 189ms<br> 308 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-preset-env" rel="nofollow">https://registry.npmjs.org/postcss-preset-env</a> 270ms<br> 309 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-url-loader" rel="nofollow">https://registry.npmjs.org/resolve-url-loader</a> 201ms<br> 310 http fetch GET 200 <a href="https://registry.npmjs.org/less/-/less-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/less/-/less-4.1.1.tgz</a> 840ms<br> 311 silly pacote version manifest for [email protected] fetched in 1246ms<br> 312 silly pacote version manifest for [email protected] fetched in 3ms<br> 313 http fetch GET 200 <a href="https://registry.npmjs.org/postcss/-/postcss-8.3.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss/-/postcss-8.3.0.tgz</a> 122ms<br> 314 silly pacote version manifest for [email protected] fetched in 666ms<br> 315 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz</a> 118ms<br> 316 silly pacote version manifest for [email protected] fetched in 400ms<br> 317 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz</a> 165ms<br> 318 silly pacote version manifest for [email protected] fetched in 373ms<br> 319 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-loader" rel="nofollow">https://registry.npmjs.org/source-map-loader</a> 257ms<br> 320 http fetch GET 200 <a href="https://registry.npmjs.org/sass" rel="nofollow">https://registry.npmjs.org/sass</a> 338ms<br> 321 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-support" rel="nofollow">https://registry.npmjs.org/source-map-support</a> 261ms<br> 322 http fetch GET 200 <a href="https://registry.npmjs.org/sass-loader" rel="nofollow">https://registry.npmjs.org/sass-loader</a> 310ms<br> 323 http fetch GET 200 <a href="https://registry.npmjs.org/style-loader" rel="nofollow">https://registry.npmjs.org/style-loader</a> 159ms<br> 324 http fetch GET 200 <a href="https://registry.npmjs.org/stylus" rel="nofollow">https://registry.npmjs.org/stylus</a> 169ms<br> 325 http fetch GET 200 <a href="https://registry.npmjs.org/sass-loader/-/sass-loader-11.0.1.tgz" rel="nofollow">https://registry.npmjs.org/sass-loader/-/sass-loader-11.0.1.tgz</a> 100ms<br> 326 http fetch GET 200 <a href="https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz</a> 103ms<br> 327 silly pacote version manifest for [email protected] fetched in 432ms<br> 328 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-loader/-/source-map-loader-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/source-map-loader/-/source-map-loader-2.0.1.tgz</a> 136ms<br> 329 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" rel="nofollow">https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz</a> 124ms<br> 330 silly pacote version manifest for [email protected] fetched in 285ms<br> 331 silly pacote version manifest for [email protected] fetched in 401ms<br> 332 silly pacote version manifest for [email protected] fetched in 411ms<br> 333 http fetch GET 200 <a href="https://registry.npmjs.org/text-table" rel="nofollow">https://registry.npmjs.org/text-table</a> 87ms<br> 334 http fetch GET 200 <a href="https://registry.npmjs.org/stylus-loader" rel="nofollow">https://registry.npmjs.org/stylus-loader</a> 145ms<br> 335 http fetch GET 200 <a href="https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" rel="nofollow">https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz</a> 108ms<br> 336 silly pacote version manifest for [email protected] fetched in 202ms<br> 337 http fetch GET 200 <a href="https://registry.npmjs.org/stylus-loader/-/stylus-loader-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/stylus-loader/-/stylus-loader-5.0.0.tgz</a> 212ms<br> 338 http fetch GET 200 <a href="https://registry.npmjs.org/stylus/-/stylus-0.54.8.tgz" rel="nofollow">https://registry.npmjs.org/stylus/-/stylus-0.54.8.tgz</a> 424ms<br> 339 silly pacote version manifest for [email protected] fetched in 368ms<br> 340 silly pacote version manifest for [email protected] fetched in 607ms<br> 341 http fetch GET 200 <a href="https://registry.npmjs.org/tree-kill" rel="nofollow">https://registry.npmjs.org/tree-kill</a> 158ms<br> 342 http fetch GET 200 <a href="https://registry.npmjs.org/terser" rel="nofollow">https://registry.npmjs.org/terser</a> 369ms<br> 343 http fetch GET 200 <a href="https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz" rel="nofollow">https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz</a> 143ms<br> 344 silly pacote version manifest for [email protected] fetched in 313ms<br> 345 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-middleware" rel="nofollow">https://registry.npmjs.org/webpack-dev-middleware</a> 345ms<br> 346 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-4.1.0.tgz</a> 113ms<br> 347 silly pacote version manifest for [email protected] fetched in 475ms<br> 348 http fetch GET 200 <a href="https://registry.npmjs.org/sass/-/sass-1.32.12.tgz" rel="nofollow">https://registry.npmjs.org/sass/-/sass-1.32.12.tgz</a> 1094ms<br> 349 silly pacote version manifest for [email protected] fetched in 1450ms<br> 350 http fetch GET 200 <a href="https://registry.npmjs.org/terser/-/terser-5.7.0.tgz" rel="nofollow">https://registry.npmjs.org/terser/-/terser-5.7.0.tgz</a> 725ms<br> 351 silly pacote version manifest for [email protected] fetched in 1102ms<br> 352 silly pacote range manifest for tslib@^1.9.0 fetched in 5ms<br> 353 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-subresource-integrity" rel="nofollow">https://registry.npmjs.org/webpack-subresource-integrity</a> 209ms<br> 354 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-merge" rel="nofollow">https://registry.npmjs.org/webpack-merge</a> 366ms<br> 355 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/core/-/core-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/core/-/core-7.14.5.tgz</a> 153ms<br> 356 silly pacote range manifest for @babel/core@^7.7.5 fetched in 162ms<br> 357 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-1.5.2.tgz" rel="nofollow">https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-1.5.2.tgz</a> 162ms<br> 358 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz" rel="nofollow">https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz</a> 150ms<br> 359 silly pacote version manifest for [email protected] fetched in 397ms<br> 360 silly pacote version manifest for [email protected] fetched in 531ms<br> 361 http fetch GET 200 <a href="https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" rel="nofollow">https://registry.npmjs.org/debug/-/debug-4.3.1.tgz</a> 9ms (from cache)<br> 362 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-server" rel="nofollow">https://registry.npmjs.org/webpack-dev-server</a> 863ms<br> 363 http fetch GET 200 <a href="https://registry.npmjs.org/@istanbuljs%2fschema" rel="nofollow">https://registry.npmjs.org/@istanbuljs%2fschema</a> 122ms<br> 364 silly pacote range manifest for debug@^4.1.1 fetched in 26ms<br> 365 http fetch GET 200 <a href="https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" rel="nofollow">https://registry.npmjs.org/semver/-/semver-6.3.0.tgz</a> 177ms<br> 366 silly pacote range manifest for semver@^6.3.0 fetched in 190ms<br> 367 http fetch GET 200 <a href="https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" rel="nofollow">https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz</a> 258ms<br> 368 silly pacote range manifest for @istanbuljs/schema@^0.1.2 fetched in 397ms<br> 369 http fetch GET 304 <a href="https://registry.npmjs.org/supports-color" rel="nofollow">https://registry.npmjs.org/supports-color</a> 118ms (from cache)<br> 370 silly pacote range manifest for supports-color@^7.1.0 fetched in 120ms<br> 371 http fetch GET 304 <a href="https://registry.npmjs.org/isexe" rel="nofollow">https://registry.npmjs.org/isexe</a> 157ms (from cache)<br> 372 http fetch GET 304 <a href="https://registry.npmjs.org/brace-expansion" rel="nofollow">https://registry.npmjs.org/brace-expansion</a> 166ms (from cache)<br> 373 silly pacote range manifest for isexe@^2.0.0 fetched in 161ms<br> 374 silly pacote range manifest for brace-expansion@^1.1.7 fetched in 169ms<br> 375 http fetch GET 200 <a href="https://registry.npmjs.org/make-dir" rel="nofollow">https://registry.npmjs.org/make-dir</a> 559ms<br> 376 http fetch GET 200 <a href="https://registry.npmjs.org/html-escaper" rel="nofollow">https://registry.npmjs.org/html-escaper</a> 155ms<br> 377 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz" rel="nofollow">https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz</a> 600ms<br> 378 http fetch GET 304 <a href="https://registry.npmjs.org/ajv" rel="nofollow">https://registry.npmjs.org/ajv</a> 160ms (from cache)<br> 379 silly pacote version manifest for [email protected] fetched in 168ms<br> 380 silly pacote version manifest for [email protected] fetched in 1485ms<br> 381 http fetch GET 200 <a href="https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz</a> 63ms<br> 382 silly pacote range manifest for make-dir@^3.0.0 fetched in 630ms<br> 383 http fetch GET 200 <a href="https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz</a> 186ms<br> 384 http fetch GET 304 <a href="https://registry.npmjs.org/ajv-formats" rel="nofollow">https://registry.npmjs.org/ajv-formats</a> 179ms (from cache)<br> 385 http fetch GET 304 <a href="https://registry.npmjs.org/fast-json-stable-stringify" rel="nofollow">https://registry.npmjs.org/fast-json-stable-stringify</a> 179ms (from cache)<br> 386 http fetch GET 304 <a href="https://registry.npmjs.org/magic-string" rel="nofollow">https://registry.npmjs.org/magic-string</a> 161ms (from cache)<br> 387 silly pacote version manifest for [email protected] fetched in 185ms<br> 388 silly pacote version manifest for [email protected] fetched in 183ms<br> 389 silly pacote version manifest for [email protected] fetched in 166ms<br> 390 silly pacote range manifest for @babel/core@^7.8.6 fetched in 3ms<br> 391 silly pacote range manifest for html-escaper@^2.0.0 fetched in 360ms<br> 392 http fetch GET 200 <a href="https://registry.npmjs.org/reflect-metadata" rel="nofollow">https://registry.npmjs.org/reflect-metadata</a> 115ms<br> 393 http fetch GET 200 <a href="https://registry.npmjs.org/canonical-path" rel="nofollow">https://registry.npmjs.org/canonical-path</a> 119ms<br> 394 http fetch GET 304 <a href="https://registry.npmjs.org/minimist" rel="nofollow">https://registry.npmjs.org/minimist</a> 124ms (from cache)<br> 395 silly pacote range manifest for minimist@^1.2.0 fetched in 127ms<br> 396 silly pacote range manifest for chokidar@^3.0.0 fetched in 2ms<br> 397 http fetch GET 200 <a href="https://registry.npmjs.org/webpack" rel="nofollow">https://registry.npmjs.org/webpack</a> 1984ms<br> 398 http fetch GET 200 <a href="https://registry.npmjs.org/canonical-path/-/canonical-path-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/canonical-path/-/canonical-path-1.0.0.tgz</a> 72ms<br> 399 silly pacote version manifest for [email protected] fetched in 196ms<br> 400 http fetch GET 304 <a href="https://registry.npmjs.org/convert-source-map" rel="nofollow">https://registry.npmjs.org/convert-source-map</a> 84ms (from cache)<br> 401 silly pacote range manifest for convert-source-map@^1.5.1 fetched in 85ms<br> 402 http fetch GET 200 <a href="https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz" rel="nofollow">https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz</a> 3ms (from cache)<br> 403 silly pacote range manifest for magic-string@^0.25.0 fetched in 7ms<br> 404 http fetch GET 200 <a href="https://registry.npmjs.org/semver/-/semver-7.3.5.tgz" rel="nofollow">https://registry.npmjs.org/semver/-/semver-7.3.5.tgz</a> 3ms (from cache)<br> 405 silly pacote range manifest for semver@^7.0.0 fetched in 7ms<br> 406 http fetch GET 200 <a href="https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz" rel="nofollow">https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz</a> 138ms<br> 407 silly pacote range manifest for reflect-metadata@^0.1.2 fetched in 259ms<br> 408 silly pacote range manifest for yargs@^16.2.0 fetched in 2ms<br> 409 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2ftypes" rel="nofollow">https://registry.npmjs.org/@babel%2ftypes</a> 408ms<br> 410 http fetch GET 200 <a href="https://registry.npmjs.org/dependency-graph" rel="nofollow">https://registry.npmjs.org/dependency-graph</a> 213ms<br> 411 http fetch GET 304 <a href="https://registry.npmjs.org/sourcemap-codec" rel="nofollow">https://registry.npmjs.org/sourcemap-codec</a> 207ms (from cache)<br> 412 http fetch GET 304 <a href="https://registry.npmjs.org/ms" rel="nofollow">https://registry.npmjs.org/ms</a> 178ms (from cache)<br> 413 silly pacote range manifest for sourcemap-codec@^1.4.8 fetched in 210ms<br> 414 silly pacote version manifest for [email protected] fetched in 181ms<br> 415 http fetch GET 200 <a href="https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz" rel="nofollow">https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz</a> 141ms<br> 416 http fetch GET 304 <a href="https://registry.npmjs.org/chalk" rel="nofollow">https://registry.npmjs.org/chalk</a> 128ms (from cache)<br> 417 silly pacote range manifest for dependency-graph@^0.11.0 fetched in 372ms<br> 418 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-escapes" rel="nofollow">https://registry.npmjs.org/ansi-escapes</a> 131ms (from cache)<br> 419 silly pacote range manifest for chalk@^4.1.0 fetched in 131ms<br> 420 silly pacote range manifest for ansi-escapes@^4.2.1 fetched in 136ms<br> 421 http fetch GET 304 <a href="https://registry.npmjs.org/cli-cursor" rel="nofollow">https://registry.npmjs.org/cli-cursor</a> 160ms (from cache)<br> 422 silly pacote range manifest for cli-cursor@^3.1.0 fetched in 179ms<br> 423 http fetch GET 304 <a href="https://registry.npmjs.org/cli-width" rel="nofollow">https://registry.npmjs.org/cli-width</a> 205ms (from cache)<br> 424 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz</a> 365ms<br> 425 silly pacote range manifest for cli-width@^3.0.0 fetched in 207ms<br> 426 http fetch GET 304 <a href="https://registry.npmjs.org/external-editor" rel="nofollow">https://registry.npmjs.org/external-editor</a> 206ms (from cache)<br> 427 silly pacote range manifest for external-editor@^3.0.3 fetched in 207ms<br> 428 silly pacote range manifest for @babel/types@^7.8.6 fetched in 813ms<br> 429 silly pacote range manifest for rxjs@^6.6.6 fetched in 3ms<br> 430 http fetch GET 304 <a href="https://registry.npmjs.org/figures" rel="nofollow">https://registry.npmjs.org/figures</a> 81ms (from cache)<br> 431 silly pacote range manifest for figures@^3.0.0 fetched in 82ms<br> 432 http fetch GET 304 <a href="https://registry.npmjs.org/mute-stream" rel="nofollow">https://registry.npmjs.org/mute-stream</a> 54ms (from cache)<br> 433 silly pacote version manifest for [email protected] fetched in 57ms<br> 434 http fetch GET 304 <a href="https://registry.npmjs.org/run-async" rel="nofollow">https://registry.npmjs.org/run-async</a> 148ms (from cache)<br> 435 http fetch GET 304 <a href="https://registry.npmjs.org/string-width" rel="nofollow">https://registry.npmjs.org/string-width</a> 119ms (from cache)<br> 436 silly pacote range manifest for run-async@^2.4.0 fetched in 152ms<br> 437 silly pacote range manifest for string-width@^4.1.0 fetched in 122ms<br> 438 http fetch GET 304 <a href="https://registry.npmjs.org/through" rel="nofollow">https://registry.npmjs.org/through</a> 100ms (from cache)<br> 439 silly pacote range manifest for semver@^7.3.4 fetched in 4ms<br> 440 silly pacote range manifest for through@^2.3.6 fetched in 105ms<br> 441 http fetch GET 200 <a href="https://registry.npmjs.org/webpack/-/webpack-5.38.1.tgz" rel="nofollow">https://registry.npmjs.org/webpack/-/webpack-5.38.1.tgz</a> 864ms<br> 442 http fetch GET 304 <a href="https://registry.npmjs.org/strip-ansi" rel="nofollow">https://registry.npmjs.org/strip-ansi</a> 205ms (from cache)<br> 443 silly pacote range manifest for strip-ansi@^6.0.0 fetched in 208ms<br> 444 silly pacote version manifest for [email protected] fetched in 2882ms<br> 445 http fetch GET 304 <a href="https://registry.npmjs.org/hosted-git-info" rel="nofollow">https://registry.npmjs.org/hosted-git-info</a> 118ms (from cache)<br> 446 http fetch GET 304 <a href="https://registry.npmjs.org/npm-install-checks" rel="nofollow">https://registry.npmjs.org/npm-install-checks</a> 110ms (from cache)<br> 447 http fetch GET 304 <a href="https://registry.npmjs.org/validate-npm-package-name" rel="nofollow">https://registry.npmjs.org/validate-npm-package-name</a> 114ms (from cache)<br> 448 silly pacote range manifest for npm-install-checks@^4.0.0 fetched in 112ms<br> 449 silly pacote range manifest for hosted-git-info@^4.0.1 fetched in 121ms<br> 450 silly pacote range manifest for validate-npm-package-name@^3.0.0 fetched in 119ms<br> 451 http fetch GET 200 <a href="https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.4.tgz" rel="nofollow">https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.4.tgz</a> 83ms<br> 452 http fetch GET 304 <a href="https://registry.npmjs.org/bl" rel="nofollow">https://registry.npmjs.org/bl</a> 84ms (from cache)<br> 453 http fetch GET 304 <a href="https://registry.npmjs.org/cli-spinners" rel="nofollow">https://registry.npmjs.org/cli-spinners</a> 85ms (from cache)<br> 454 http fetch GET 304 <a href="https://registry.npmjs.org/is-interactive" rel="nofollow">https://registry.npmjs.org/is-interactive</a> 81ms (from cache)<br> 455 silly pacote range manifest for npm-package-arg@^8.1.2 fetched in 94ms<br> 456 silly pacote range manifest for bl@^4.1.0 fetched in 87ms<br> 457 silly pacote range manifest for cli-spinners@^2.5.0 fetched in 88ms<br> 458 silly pacote range manifest for is-interactive@^1.0.0 fetched in 84ms<br> 459 http fetch GET 304 <a href="https://registry.npmjs.org/define-lazy-prop" rel="nofollow">https://registry.npmjs.org/define-lazy-prop</a> 93ms (from cache)<br> 460 silly pacote range manifest for define-lazy-prop@^2.0.0 fetched in 97ms<br> 461 http fetch GET 304 <a href="https://registry.npmjs.org/log-symbols" rel="nofollow">https://registry.npmjs.org/log-symbols</a> 109ms (from cache)<br> 462 silly pacote range manifest for log-symbols@^4.1.0 fetched in 112ms<br> 463 http fetch GET 304 <a href="https://registry.npmjs.org/wcwidth" rel="nofollow">https://registry.npmjs.org/wcwidth</a> 110ms (from cache)<br> 464 http fetch GET 304 <a href="https://registry.npmjs.org/is-unicode-supported" rel="nofollow">https://registry.npmjs.org/is-unicode-supported</a> 116ms (from cache)<br> 465 silly pacote range manifest for wcwidth@^1.0.1 fetched in 116ms<br> 466 silly pacote range manifest for is-unicode-supported@^0.1.0 fetched in 120ms<br> 467 http fetch GET 304 <a href="https://registry.npmjs.org/is-wsl" rel="nofollow">https://registry.npmjs.org/is-wsl</a> 53ms (from cache)<br> 468 silly pacote range manifest for is-wsl@^2.2.0 fetched in 56ms<br> 469 http fetch GET 304 <a href="https://registry.npmjs.org/is-docker" rel="nofollow">https://registry.npmjs.org/is-docker</a> 102ms (from cache)<br> 470 silly pacote range manifest for is-docker@^2.1.1 fetched in 104ms<br> 471 http fetch GET 304 <a href="https://registry.npmjs.org/npm-normalize-package-bin" rel="nofollow">https://registry.npmjs.org/npm-normalize-package-bin</a> 385ms (from cache)<br> 472 silly pacote range manifest for npm-normalize-package-bin@^1.0.1 fetched in 388ms<br> 473 silly pacote range manifest for cacache@^15.0.5 fetched in 3ms<br> 474 http fetch GET 304 <a href="https://registry.npmjs.org/chownr" rel="nofollow">https://registry.npmjs.org/chownr</a> 87ms (from cache)<br> 475 silly pacote range manifest for chownr@^2.0.0 fetched in 91ms<br> 476 http fetch GET 304 <a href="https://registry.npmjs.org/fs-minipass" rel="nofollow">https://registry.npmjs.org/fs-minipass</a> 76ms (from cache)<br> 477 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2finstalled-package-contents" rel="nofollow">https://registry.npmjs.org/@npmcli%2finstalled-package-contents</a> 343ms (from cache)<br> 478 silly pacote range manifest for fs-minipass@^2.1.0 fetched in 84ms<br> 479 silly pacote range manifest for @npmcli/installed-package-contents@^1.0.6 fetched in 351ms<br> 480 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2frun-script" rel="nofollow">https://registry.npmjs.org/@npmcli%2frun-script</a> 355ms (from cache)<br> 481 silly pacote range manifest for @npmcli/run-script@^1.8.2 fetched in 360ms<br> 482 http fetch GET 304 <a href="https://registry.npmjs.org/infer-owner" rel="nofollow">https://registry.npmjs.org/infer-owner</a> 100ms (from cache)<br> 483 http fetch GET 304 <a href="https://registry.npmjs.org/minipass" rel="nofollow">https://registry.npmjs.org/minipass</a> 102ms (from cache)<br> 484 silly pacote range manifest for infer-owner@^1.0.4 fetched in 109ms<br> 485 silly pacote range manifest for minipass@^3.1.3 fetched in 107ms<br> 486 silly pacote range manifest for npm-package-arg@^8.0.1 fetched in 3ms<br> 487 http fetch GET 200 <a href="https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz" rel="nofollow">https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz</a> 4ms (from cache)<br> 488 silly pacote range manifest for npm-pick-manifest@^6.0.0 fetched in 11ms<br> 489 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2fpromise-spawn" rel="nofollow">https://registry.npmjs.org/@npmcli%2fpromise-spawn</a> 447ms (from cache)<br> 490 silly pacote range manifest for @npmcli/promise-spawn@^1.2.0 fetched in 450ms<br> 491 http fetch GET 304 <a href="https://registry.npmjs.org/mkdirp" rel="nofollow">https://registry.npmjs.org/mkdirp</a> 84ms (from cache)<br> 492 silly pacote range manifest for mkdirp@^1.0.3 fetched in 87ms<br> 493 http fetch GET 304 <a href="https://registry.npmjs.org/read-package-json-fast" rel="nofollow">https://registry.npmjs.org/read-package-json-fast</a> 118ms (from cache)<br> 494 silly pacote range manifest for read-package-json-fast@^2.0.1 fetched in 123ms<br> 495 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2fgit" rel="nofollow">https://registry.npmjs.org/@npmcli%2fgit</a> 663ms (from cache)<br> 496 silly pacote range manifest for @npmcli/git@^2.0.1 fetched in 665ms<br> 497 http fetch GET 304 <a href="https://registry.npmjs.org/ssri" rel="nofollow">https://registry.npmjs.org/ssri</a> 115ms (from cache)<br> 498 silly pacote range manifest for ssri@^8.0.1 fetched in 119ms<br> 499 silly pacote range manifest for glob@^7.1.3 fetched in 2ms<br> 500 http fetch GET 304 <a href="https://registry.npmjs.org/tar" rel="nofollow">https://registry.npmjs.org/tar</a> 116ms (from cache)<br> 501 silly pacote range manifest for tar@^6.1.0 fetched in 120ms<br> 502 http fetch GET 304 <a href="https://registry.npmjs.org/is-core-module" rel="nofollow">https://registry.npmjs.org/is-core-module</a> 90ms (from cache)<br> 503 silly pacote range manifest for is-core-module@^2.2.0 fetched in 96ms<br> 504 http fetch GET 304 <a href="https://registry.npmjs.org/path-parse" rel="nofollow">https://registry.npmjs.org/path-parse</a> 101ms (from cache)<br> 505 silly pacote range manifest for path-parse@^1.0.6 fetched in 103ms<br> 506 http fetch GET 304 <a href="https://registry.npmjs.org/lru-cache" rel="nofollow">https://registry.npmjs.org/lru-cache</a> 86ms (from cache)<br> 507 silly pacote range manifest for lru-cache@^6.0.0 fetched in 89ms<br> 508 http fetch GET 304 <a href="https://registry.npmjs.org/anymatch" rel="nofollow">https://registry.npmjs.org/anymatch</a> 77ms (from cache)<br> 509 silly pacote range manifest for braces@~3.0.2 fetched in 2ms<br> 510 silly pacote range manifest for anymatch@~3.1.1 fetched in 80ms<br> 511 http fetch GET 304 <a href="https://registry.npmjs.org/glob-parent" rel="nofollow">https://registry.npmjs.org/glob-parent</a> 60ms (from cache)<br> 512 silly pacote range manifest for glob-parent@~5.1.0 fetched in 63ms<br> 513 http fetch GET 304 <a href="https://registry.npmjs.org/is-binary-path" rel="nofollow">https://registry.npmjs.org/is-binary-path</a> 75ms (from cache)<br> 514 silly pacote range manifest for is-binary-path@~2.1.0 fetched in 77ms<br> 515 http fetch GET 304 <a href="https://registry.npmjs.org/is-glob" rel="nofollow">https://registry.npmjs.org/is-glob</a> 89ms (from cache)<br> 516 silly pacote range manifest for is-glob@~4.0.1 fetched in 93ms<br> 517 http fetch GET 304 <a href="https://registry.npmjs.org/normalize-path" rel="nofollow">https://registry.npmjs.org/normalize-path</a> 103ms (from cache)<br> 518 silly pacote range manifest for normalize-path@~3.0.0 fetched in 105ms<br> 519 http fetch GET 304 <a href="https://registry.npmjs.org/readdirp" rel="nofollow">https://registry.npmjs.org/readdirp</a> 98ms (from cache)<br> 520 silly pacote range manifest for readdirp@~3.5.0 fetched in 108ms<br> 521 http fetch GET 304 <a href="https://registry.npmjs.org/fsevents" rel="nofollow">https://registry.npmjs.org/fsevents</a> 93ms (from cache)<br> 522 silly pacote range manifest for fsevents@~2.3.1 fetched in 97ms<br> 523 http fetch GET 304 <a href="https://registry.npmjs.org/fill-range" rel="nofollow">https://registry.npmjs.org/fill-range</a> 92ms (from cache)<br> 524 silly pacote range manifest for fill-range@^7.0.1 fetched in 104ms<br> 525 http fetch GET 200 <a href="https://registry.npmjs.org/bytes" rel="nofollow">https://registry.npmjs.org/bytes</a> 93ms<br> 526 http fetch GET 200 <a href="https://registry.npmjs.org/content-type" rel="nofollow">https://registry.npmjs.org/content-type</a> 98ms<br> 527 http fetch GET 200 <a href="https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz</a> 90ms<br> 528 silly pacote version manifest for [email protected] fetched in 196ms<br> 529 http fetch GET 200 <a href="https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" rel="nofollow">https://registry.npmjs.org/debug/-/debug-2.6.9.tgz</a> 6ms (from cache)<br> 530 silly pacote version manifest for [email protected] fetched in 15ms<br> 531 http fetch GET 200 <a href="https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz</a> 94ms<br> 532 silly pacote range manifest for content-type@~1.0.4 fetched in 206ms<br> 533 http fetch GET 304 <a href="https://registry.npmjs.org/depd" rel="nofollow">https://registry.npmjs.org/depd</a> 89ms (from cache)<br> 534 silly pacote range manifest for depd@~1.1.2 fetched in 91ms<br> 535 http fetch GET 304 <a href="https://registry.npmjs.org/iconv-lite" rel="nofollow">https://registry.npmjs.org/iconv-lite</a> 84ms (from cache)<br> 536 http fetch GET 200 <a href="https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" rel="nofollow">https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz</a> 17ms (from cache)<br> 537 http fetch GET 200 <a href="https://registry.npmjs.org/http-errors" rel="nofollow">https://registry.npmjs.org/http-errors</a> 116ms<br> 538 silly pacote version manifest for [email protected] fetched in 113ms<br> 539 http fetch GET 304 <a href="https://registry.npmjs.org/npm-registry-fetch" rel="nofollow">https://registry.npmjs.org/npm-registry-fetch</a> 1228ms (from cache)<br> 540 silly pacote range manifest for npm-registry-fetch@^10.0.0 fetched in 1232ms<br> 541 http fetch GET 304 <a href="https://registry.npmjs.org/npm-packlist" rel="nofollow">https://registry.npmjs.org/npm-packlist</a> 1262ms (from cache)<br> 542 silly pacote range manifest for npm-packlist@^2.1.4 fetched in 1264ms<br> 543 http fetch GET 304 <a href="https://registry.npmjs.org/promise-retry" rel="nofollow">https://registry.npmjs.org/promise-retry</a> 1227ms (from cache)<br> 544 silly pacote range manifest for promise-retry@^2.0.1 fetched in 1229ms<br> 545 http fetch GET 200 <a href="https://registry.npmjs.org/on-finished" rel="nofollow">https://registry.npmjs.org/on-finished</a> 86ms<br> 546 http fetch GET 200 <a href="https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz" rel="nofollow">https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz</a> 106ms<br> 547 silly pacote version manifest for [email protected] fetched in 238ms<br> 548 http fetch GET 304 <a href="https://registry.npmjs.org/qs" rel="nofollow">https://registry.npmjs.org/qs</a> 79ms (from cache)<br> 549 http fetch GET 200 <a href="https://registry.npmjs.org/raw-body" rel="nofollow">https://registry.npmjs.org/raw-body</a> 122ms<br> 550 http fetch GET 200 <a href="https://registry.npmjs.org/type-is" rel="nofollow">https://registry.npmjs.org/type-is</a> 134ms<br> 551 http fetch GET 200 <a href="https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz</a> 119ms<br> 552 http fetch GET 304 <a href="https://registry.npmjs.org/fs.realpath" rel="nofollow">https://registry.npmjs.org/fs.realpath</a> 97ms (from cache)<br> 553 silly pacote range manifest for fs.realpath@^1.0.0 fetched in 99ms<br> 554 silly pacote range manifest for on-finished@~2.3.0 fetched in 217ms<br> 555 http fetch GET 200 <a href="https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz" rel="nofollow">https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz</a> 125ms<br> 556 http fetch GET 200 <a href="https://registry.npmjs.org/qs/-/qs-6.7.0.tgz" rel="nofollow">https://registry.npmjs.org/qs/-/qs-6.7.0.tgz</a> 194ms<br> 557 silly pacote version manifest for [email protected] fetched in 276ms<br> 558 silly pacote version manifest for [email protected] fetched in 299ms<br> 559 http fetch GET 200 <a href="https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" rel="nofollow">https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz</a> 145ms<br> 560 http fetch GET 304 <a href="https://registry.npmjs.org/inflight" rel="nofollow">https://registry.npmjs.org/inflight</a> 136ms (from cache)<br> 561 http fetch GET 304 <a href="https://registry.npmjs.org/inherits" rel="nofollow">https://registry.npmjs.org/inherits</a> 132ms (from cache)<br> 562 silly pacote range manifest for inflight@^1.0.4 fetched in 138ms<br> 563 silly pacote range manifest for inherits@2 fetched in 134ms<br> 564 silly pacote range manifest for type-is@~1.6.17 fetched in 288ms<br> 565 http fetch GET 200 <a href="https://registry.npmjs.org/ent" rel="nofollow">https://registry.npmjs.org/ent</a> 49ms<br> 566 http fetch GET 304 <a href="https://registry.npmjs.org/path-is-absolute" rel="nofollow">https://registry.npmjs.org/path-is-absolute</a> 67ms (from cache)<br> 567 silly pacote range manifest for path-is-absolute@^1.0.0 fetched in 71ms<br> 568 http fetch GET 200 <a href="https://registry.npmjs.org/custom-event" rel="nofollow">https://registry.npmjs.org/custom-event</a> 65ms<br> 569 http fetch GET 304 <a href="https://registry.npmjs.org/once" rel="nofollow">https://registry.npmjs.org/once</a> 82ms (from cache)<br> 570 http fetch GET 304 <a href="https://registry.npmjs.org/extend" rel="nofollow">https://registry.npmjs.org/extend</a> 66ms (from cache)<br> 571 silly pacote range manifest for once@^1.3.0 fetched in 85ms<br> 572 silly pacote range manifest for extend@^3.0.0 fetched in 69ms<br> 573 http fetch GET 200 <a href="https://registry.npmjs.org/void-elements" rel="nofollow">https://registry.npmjs.org/void-elements</a> 101ms<br> 574 http fetch GET 200 <a href="https://registry.npmjs.org/ent/-/ent-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/ent/-/ent-2.2.0.tgz</a> 117ms<br> 575 http fetch GET 200 <a href="https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz</a> 105ms<br> 576 silly pacote range manifest for ent@~2.2.0 fetched in 175ms<br> 577 silly pacote range manifest for custom-event@~1.0.0 fetched in 178ms<br> 578 http fetch GET 200 <a href="https://registry.npmjs.org/parseurl" rel="nofollow">https://registry.npmjs.org/parseurl</a> 217ms<br> 579 http fetch GET 200 <a href="https://registry.npmjs.org/finalhandler" rel="nofollow">https://registry.npmjs.org/finalhandler</a> 222ms<br> 580 http fetch GET 200 <a href="https://registry.npmjs.org/utils-merge" rel="nofollow">https://registry.npmjs.org/utils-merge</a> 119ms<br> 581 http fetch GET 200 <a href="https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz</a> 134ms<br> 582 silly pacote range manifest for void-elements@^2.0.0 fetched in 244ms<br> 583 http fetch GET 200 <a href="https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz</a> 104ms<br> 584 http fetch GET 200 <a href="https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" rel="nofollow">https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz</a> 110ms<br> 585 http fetch GET 200 <a href="https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz</a> 106ms<br> 586 http fetch GET 200 <a href="https://registry.npmjs.org/requires-port" rel="nofollow">https://registry.npmjs.org/requires-port</a> 108ms<br> 587 http fetch GET 200 <a href="https://registry.npmjs.org/eventemitter3" rel="nofollow">https://registry.npmjs.org/eventemitter3</a> 236ms<br> 588 silly pacote version manifest for [email protected] fetched in 344ms<br> 589 silly pacote range manifest for parseurl@~1.3.3 fetched in 349ms<br> 590 silly pacote version manifest for [email protected] fetched in 246ms<br> 591 http fetch GET 200 <a href="https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz</a> 112ms<br> 592 http fetch GET 200 <a href="https://registry.npmjs.org/date-format" rel="nofollow">https://registry.npmjs.org/date-format</a> 109ms<br> 593 http fetch GET 200 <a href="https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" rel="nofollow">https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz</a> 117ms<br> 594 silly pacote range manifest for requires-port@^1.0.0 fetched in 234ms<br> 595 silly pacote range manifest for eventemitter3@^4.0.0 fetched in 364ms<br> 596 http fetch GET 200 <a href="https://registry.npmjs.org/follow-redirects" rel="nofollow">https://registry.npmjs.org/follow-redirects</a> 208ms<br> 597 http fetch GET 200 <a href="https://registry.npmjs.org/flatted" rel="nofollow">https://registry.npmjs.org/flatted</a> 207ms<br> 598 http fetch GET 200 <a href="https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/date-format/-/date-format-3.0.0.tgz</a> 100ms<br> 599 http fetch GET 200 <a href="https://registry.npmjs.org/rfdc" rel="nofollow">https://registry.npmjs.org/rfdc</a> 111ms<br> 600 silly pacote range manifest for date-format@^3.0.0 fetched in 231ms<br> 601 silly pacote range manifest for rimraf@^3.0.0 fetched in 7ms<br> 602 http fetch GET 200 <a href="https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz" rel="nofollow">https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz</a> 126ms<br> 603 http fetch GET 200 <a href="https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz</a> 146ms<br> 604 http fetch GET 200 <a href="https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz" rel="nofollow">https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz</a> 156ms<br> 605 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fcookie" rel="nofollow">https://registry.npmjs.org/@types%2fcookie</a> 125ms<br> 606 http fetch GET 200 <a href="https://registry.npmjs.org/streamroller" rel="nofollow">https://registry.npmjs.org/streamroller</a> 251ms<br> 607 silly pacote range manifest for rfdc@^1.1.4 fetched in 258ms<br> 608 silly pacote range manifest for flatted@^2.0.1 fetched in 378ms<br> 609 silly pacote range manifest for follow-redirects@^1.0.0 fetched in 385ms<br> 610 http fetch GET 200 <a href="https://registry.npmjs.org/@types/cookie/-/cookie-0.4.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/cookie/-/cookie-0.4.0.tgz</a> 109ms<br> 611 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fcors" rel="nofollow">https://registry.npmjs.org/@types%2fcors</a> 102ms<br> 612 http fetch GET 200 <a href="https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz" rel="nofollow">https://registry.npmjs.org/streamroller/-/streamroller-2.2.4.tgz</a> 109ms<br> 613 silly pacote range manifest for @types/cookie@^0.4.0 fetched in 247ms<br> 614 silly pacote range manifest for streamroller@^2.2.4 fetched in 372ms<br> 615 silly pacote range manifest for debug@~4.3.1 fetched in 3ms<br> 616 http fetch GET 200 <a href="https://registry.npmjs.org/accepts" rel="nofollow">https://registry.npmjs.org/accepts</a> 121ms<br> 617 http fetch GET 200 <a href="https://registry.npmjs.org/base64id" rel="nofollow">https://registry.npmjs.org/base64id</a> 73ms<br> 618 http fetch GET 200 <a href="https://registry.npmjs.org/@types/cors/-/cors-2.8.10.tgz" rel="nofollow">https://registry.npmjs.org/@types/cors/-/cors-2.8.10.tgz</a> 102ms<br> 619 http fetch GET 200 <a href="https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz" rel="nofollow">https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz</a> 84ms<br> 620 silly pacote range manifest for @types/cors@^2.8.8 fetched in 216ms<br> 621 silly pacote range manifest for accepts@~1.3.4 fetched in 215ms<br> 622 http fetch GET 200 <a href="https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz</a> 75ms<br> 623 silly pacote range manifest for base64id@~2.0.0 fetched in 155ms<br> 624 http fetch GET 200 <a href="https://registry.npmjs.org/engine.io" rel="nofollow">https://registry.npmjs.org/engine.io</a> 244ms<br> 625 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io-parser" rel="nofollow">https://registry.npmjs.org/socket.io-parser</a> 148ms<br> 626 http fetch GET 304 <a href="https://registry.npmjs.org/cliui" rel="nofollow">https://registry.npmjs.org/cliui</a> 112ms (from cache)<br> 627 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io-adapter" rel="nofollow">https://registry.npmjs.org/socket.io-adapter</a> 166ms<br> 628 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz" rel="nofollow">https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz</a> 96ms<br> 629 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz</a> 84ms<br> 630 http fetch GET 200 <a href="https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" rel="nofollow">https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz</a> 92ms<br> 631 silly pacote range manifest for socket.io-parser@~4.0.3 fetched in 258ms<br> 632 silly pacote range manifest for socket.io-adapter@~2.1.0 fetched in 263ms<br> 633 silly pacote range manifest for cliui@^7.0.2 fetched in 217ms<br> 634 http fetch GET 200 <a href="https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/engine.io/-/engine.io-4.1.1.tgz</a> 123ms<br> 635 silly pacote range manifest for engine.io@~4.1.0 fetched in 378ms<br> 636 silly pacote range manifest for string-width@^4.2.0 fetched in 1ms<br> 637 http fetch GET 304 <a href="https://registry.npmjs.org/get-caller-file" rel="nofollow">https://registry.npmjs.org/get-caller-file</a> 104ms (from cache)<br> 638 http fetch GET 304 <a href="https://registry.npmjs.org/escalade" rel="nofollow">https://registry.npmjs.org/escalade</a> 108ms (from cache)<br> 639 http fetch GET 304 <a href="https://registry.npmjs.org/y18n" rel="nofollow">https://registry.npmjs.org/y18n</a> 88ms (from cache)<br> 640 http fetch GET 304 <a href="https://registry.npmjs.org/require-directory" rel="nofollow">https://registry.npmjs.org/require-directory</a> 107ms (from cache)<br> 641 silly pacote range manifest for get-caller-file@^2.0.5 fetched in 110ms<br> 642 silly pacote range manifest for escalade@^3.1.1 fetched in 114ms<br> 643 silly pacote range manifest for require-directory@^2.1.1 fetched in 119ms<br> 644 http fetch GET 200 <a href="https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" rel="nofollow">https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz</a> 89ms<br> 645 http fetch GET 304 <a href="https://registry.npmjs.org/yargs-parser" rel="nofollow">https://registry.npmjs.org/yargs-parser</a> 98ms (from cache)<br> 646 silly pacote range manifest for y18n@^5.0.5 fetched in 197ms<br> 647 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-module-imports" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-module-imports</a> 145ms<br> 648 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-plugin-utils" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-plugin-utils</a> 181ms<br> 649 http fetch GET 200 <a href="https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz" rel="nofollow">https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz</a> 99ms<br> 650 silly pacote range manifest for yargs-parser@^20.2.2 fetched in 206ms<br> 651 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz</a> 78ms<br> 652 silly pacote range manifest for @babel/helper-module-imports@^7.12.13 fetched in 230ms<br> 653 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz</a> 74ms<br> 654 silly pacote range manifest for @babel/helper-plugin-utils@^7.13.0 fetched in 261ms<br> 655 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator</a> 167ms<br> 656 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fcode-frame" rel="nofollow">https://registry.npmjs.org/@babel%2fcode-frame</a> 146ms<br> 657 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz</a> 126ms<br> 658 silly pacote range manifest for @babel/generator@^7.14.3 fetched in 141ms<br> 659 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz</a> 93ms<br> 660 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-compilation-targets" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-compilation-targets</a> 178ms<br> 661 silly pacote range manifest for @babel/code-frame@^7.12.13 fetched in 259ms<br> 662 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-module-transforms" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-module-transforms</a> 237ms<br> 663 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz</a> 108ms<br> 664 silly pacote range manifest for @babel/helper-module-transforms@^7.14.2 fetched in 362ms<br> 665 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelpers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelpers</a> 390ms<br> 666 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.5.tgz</a> 137ms<br> 667 silly pacote range manifest for @babel/helpers@^7.14.0 fetched in 541ms<br> 668 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fparser" rel="nofollow">https://registry.npmjs.org/@babel%2fparser</a> 313ms<br> 669 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz</a> 85ms<br> 670 silly pacote range manifest for @babel/template@^7.12.13 fetched in 95ms<br> 671 http fetch GET 200 <a href="https://registry.npmjs.org/@types/node/-/node-15.12.2.tgz" rel="nofollow">https://registry.npmjs.org/@types/node/-/node-15.12.2.tgz</a> 1705ms<br> 672 silly pacote range manifest for @types/node@&gt;=10.0.0 fetched in 1716ms<br> 673 silly pacote range manifest for @babel/types@^7.14.2 fetched in 1ms<br> 674 silly pacote range manifest for convert-source-map@^1.7.0 fetched in 2ms<br> 675 silly pacote range manifest for debug@^4.1.0 fetched in 1ms<br> 676 http fetch GET 200 <a href="https://registry.npmjs.org/gensync" rel="nofollow">https://registry.npmjs.org/gensync</a> 93ms<br> 677 http fetch GET 200 <a href="https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" rel="nofollow">https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz</a> 94ms<br> 678 silly pacote range manifest for gensync@^1.0.0-beta.2 fetched in 194ms<br> 679 http fetch GET 200 <a href="https://registry.npmjs.org/json5" rel="nofollow">https://registry.npmjs.org/json5</a> 185ms<br> 680 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz</a> 1261ms<br> 681 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2ftraverse" rel="nofollow">https://registry.npmjs.org/@babel%2ftraverse</a> 447ms<br> 682 silly pacote range manifest for @babel/helper-remap-async-to-generator@^7.13.0 fetched in 1446ms<br> 683 silly pacote range manifest for source-map@^0.5.0 fetched in 4ms<br> 684 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.5.tgz</a> 204ms<br> 685 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz</a> 1306ms<br> 686 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fcompat-data" rel="nofollow">https://registry.npmjs.org/@babel%2fcompat-data</a> 203ms<br> 687 silly pacote range manifest for @babel/traverse@^7.14.2 fetched in 676ms<br> 688 silly pacote range manifest for @babel/helper-compilation-targets@^7.13.16 fetched in 1510ms<br> 689 http fetch GET 200 <a href="https://registry.npmjs.org/json5/-/json5-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/json5/-/json5-2.2.0.tgz</a> 271ms<br> 690 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/parser/-/parser-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/parser/-/parser-7.14.5.tgz</a> 734ms<br> 691 silly pacote range manifest for json5@^2.1.2 fetched in 462ms<br> 692 silly pacote range manifest for @babel/parser@^7.14.3 fetched in 1057ms<br> 693 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-validator-option" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-validator-option</a> 83ms<br> 694 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining</a> 97ms<br> 695 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.5.tgz</a> 136ms<br> 696 silly pacote range manifest for @babel/compat-data@^7.14.0 fetched in 351ms<br> 697 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-async-generator-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-async-generator-functions</a> 184ms<br> 698 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz</a> 112ms<br> 699 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz</a> 102ms<br> 700 silly pacote range manifest for @babel/helper-validator-option@^7.12.17 fetched in 209ms<br> 701 silly pacote range manifest for @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12 fetched in 212ms<br> 702 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-class-static-block" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-class-static-block</a> 90ms<br> 703 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.5.tgz</a> 73ms<br> 704 silly pacote range manifest for @babel/plugin-proposal-async-generator-functions@^7.14.2 fetched in 268ms<br> 705 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties</a> 285ms<br> 706 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-dynamic-import" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-dynamic-import</a> 118ms<br> 707 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz</a> 101ms<br> 708 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz</a> 74ms<br> 709 silly pacote range manifest for @babel/plugin-proposal-class-properties@^7.13.0 fetched in 398ms<br> 710 silly pacote range manifest for @babel/plugin-proposal-dynamic-import@^7.14.2 fetched in 205ms<br> 711 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-json-strings" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-json-strings</a> 143ms<br> 712 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-export-namespace-from" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-export-namespace-from</a> 208ms<br> 713 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator</a> 201ms<br> 714 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-logical-assignment-operators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-logical-assignment-operators</a> 211ms<br> 715 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz</a> 451ms<br> 716 silly pacote range manifest for @babel/plugin-proposal-class-static-block@^7.13.11 fetched in 545ms<br> 717 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz</a> 75ms<br> 718 silly pacote range manifest for @babel/plugin-proposal-nullish-coalescing-operator@^7.14.2 fetched in 294ms<br> 719 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz</a> 101ms<br> 720 silly pacote range manifest for @babel/plugin-proposal-logical-assignment-operators@^7.14.2 fetched in 330ms<br> 721 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator</a> 215ms<br> 722 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-object-rest-spread" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-object-rest-spread</a> 267ms<br> 723 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-optional-catch-binding" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-optional-catch-binding</a> 249ms<br> 724 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz</a> 98ms<br> 725 silly pacote range manifest for @babel/plugin-proposal-numeric-separator@^7.14.2 fetched in 326ms<br> 726 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.5.tgz</a> 85ms<br> 727 silly pacote range manifest for @babel/plugin-proposal-object-rest-spread@^7.14.2 fetched in 379ms<br> 728 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz</a> 102ms<br> 729 silly pacote range manifest for @babel/plugin-proposal-optional-catch-binding@^7.14.2 fetched in 364ms<br> 730 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining</a> 205ms<br> 731 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods</a> 133ms<br> 732 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-private-property-in-object" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-private-property-in-object</a> 134ms<br> 733 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz</a> 72ms<br> 734 silly pacote range manifest for @babel/plugin-proposal-private-methods@^7.13.0 fetched in 221ms<br> 735 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz</a> 104ms<br> 736 silly pacote range manifest for @babel/plugin-proposal-optional-chaining@^7.14.2 fetched in 323ms<br> 737 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz</a> 93ms<br> 738 silly pacote range manifest for @babel/plugin-proposal-private-property-in-object@^7.14.0 fetched in 233ms<br> 739 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators</a> 152ms<br> 740 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-unicode-property-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-unicode-property-regex</a> 184ms<br> 741 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties</a> 168ms<br> 742 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz</a> 111ms<br> 743 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz</a> 98ms<br> 744 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz</a> 88ms<br> 745 silly pacote range manifest for @babel/plugin-syntax-async-generators@^7.8.4 fetched in 278ms<br> 746 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.12.13 fetched in 297ms<br> 747 silly pacote range manifest for @babel/plugin-syntax-class-properties@^7.12.13 fetched in 270ms<br> 748 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz</a> 1206ms<br> 749 silly pacote range manifest for @babel/plugin-proposal-export-namespace-from@^7.14.2 fetched in 1423ms<br> 750 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz</a> 1221ms<br> 751 silly pacote range manifest for @babel/plugin-proposal-json-strings@^7.14.2 fetched in 1373ms<br> 752 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-class-static-block" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-class-static-block</a> 80ms<br> 753 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-dynamic-import" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-dynamic-import</a> 129ms<br> 754 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-export-namespace-from" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-export-namespace-from</a> 137ms<br> 755 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings</a> 120ms<br> 756 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz</a> 88ms<br> 757 silly pacote range manifest for @babel/plugin-syntax-class-static-block@^7.12.13 fetched in 178ms<br> 758 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators</a> 134ms<br> 759 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz</a> 70ms<br> 760 silly pacote range manifest for @babel/plugin-syntax-dynamic-import@^7.8.3 fetched in 209ms<br> 761 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz</a> 99ms<br> 762 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz</a> 89ms<br> 763 silly pacote range manifest for @babel/plugin-syntax-export-namespace-from@^7.8.3 fetched in 248ms<br> 764 silly pacote range manifest for @babel/plugin-syntax-json-strings@^7.8.3 fetched in 220ms<br> 765 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz</a> 80ms<br> 766 silly pacote range manifest for @babel/plugin-syntax-logical-assignment-operators@^7.10.4 fetched in 220ms<br> 767 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator</a> 128ms<br> 768 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator</a> 159ms<br> 769 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining</a> 118ms<br> 770 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz</a> 111ms<br> 771 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread</a> 169ms<br> 772 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding</a> 170ms<br> 773 silly pacote range manifest for @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3 fetched in 252ms<br> 774 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz</a> 78ms<br> 775 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz</a> 95ms<br> 776 silly pacote range manifest for @babel/plugin-syntax-optional-chaining@^7.8.3 fetched in 205ms<br> 777 silly pacote range manifest for @babel/plugin-syntax-numeric-separator@^7.10.4 fetched in 264ms<br> 778 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz</a> 82ms<br> 779 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-private-property-in-object" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-private-property-in-object</a> 85ms<br> 780 silly pacote range manifest for @babel/plugin-syntax-optional-catch-binding@^7.8.3 fetched in 260ms<br> 781 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz</a> 92ms<br> 782 silly pacote range manifest for @babel/plugin-syntax-object-rest-spread@^7.8.3 fetched in 268ms<br> 783 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await</a> 92ms<br> 784 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz</a> 72ms<br> 785 silly pacote range manifest for @babel/plugin-transform-async-to-generator@^7.13.0 fetched in 77ms<br> 786 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz</a> 80ms<br> 787 silly pacote range manifest for @babel/plugin-syntax-private-property-in-object@^7.14.0 fetched in 170ms<br> 788 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions</a> 142ms<br> 789 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz</a> 83ms<br> 790 silly pacote range manifest for @babel/plugin-syntax-top-level-await@^7.12.13 fetched in 179ms<br> 791 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping</a> 236ms<br> 792 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties</a> 203ms<br> 793 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions</a> 349ms<br> 794 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-classes" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-classes</a> 291ms<br> 795 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz</a> 114ms<br> 796 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz</a> 82ms<br> 797 silly pacote range manifest for @babel/plugin-transform-block-scoping@^7.14.2 fetched in 366ms<br> 798 silly pacote range manifest for @babel/plugin-transform-block-scoped-functions@^7.12.13 fetched in 441ms<br> 799 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-destructuring" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-destructuring</a> 168ms<br> 800 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex</a> 191ms<br> 801 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.5.tgz</a> 76ms<br> 802 silly pacote range manifest for @babel/plugin-transform-destructuring@^7.13.17 fetched in 263ms<br> 803 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz</a> 73ms<br> 804 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.12.13 fetched in 274ms<br> 805 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz</a> 383ms<br> 806 silly pacote range manifest for @babel/plugin-transform-classes@^7.14.2 fetched in 683ms<br> 807 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys</a> 136ms<br> 808 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator</a> 189ms<br> 809 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-for-of" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-for-of</a> 202ms<br> 810 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz</a> 116ms<br> 811 silly pacote range manifest for @babel/plugin-transform-exponentiation-operator@^7.12.13 fetched in 319ms<br> 812 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz</a> 99ms<br> 813 silly pacote range manifest for @babel/plugin-transform-for-of@^7.13.0 fetched in 313ms<br> 814 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-function-name" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-function-name</a> 181ms<br> 815 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz</a> 396ms<br> 816 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-literals</a> 166ms<br> 817 silly pacote range manifest for @babel/plugin-transform-duplicate-keys@^7.12.13 fetched in 545ms<br> 818 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz</a> 87ms<br> 819 silly pacote range manifest for @babel/plugin-transform-function-name@^7.12.13 fetched in 288ms<br> 820 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz</a> 1255ms<br> 821 silly pacote range manifest for @babel/plugin-transform-arrow-functions@^7.13.0 fetched in 1410ms<br> 822 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals</a> 157ms<br> 823 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz</a> 78ms<br> 824 silly pacote range manifest for @babel/plugin-transform-member-expression-literals@^7.12.13 fetched in 254ms<br> 825 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd</a> 187ms<br> 826 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz</a> 1212ms<br> 827 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs</a> 189ms<br> 828 silly pacote range manifest for @babel/plugin-transform-computed-properties@^7.13.0 fetched in 1436ms<br> 829 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz</a> 133ms<br> 830 silly pacote range manifest for @babel/plugin-transform-modules-amd@^7.14.2 fetched in 337ms<br> 831 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd</a> 174ms<br> 832 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs</a> 254ms<br> 833 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex</a> 140ms<br> 834 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz</a> 89ms<br> 835 silly pacote range manifest for @babel/plugin-transform-modules-systemjs@^7.13.8 fetched in 357ms<br> 836 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.5.tgz</a> 77ms<br> 837 silly pacote range manifest for @babel/plugin-transform-named-capturing-groups-regex@^7.12.13 fetched in 226ms<br> 838 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-new-target" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-new-target</a> 220ms<br> 839 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-object-super" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-object-super</a> 202ms<br> 840 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz</a> 108ms<br> 841 silly pacote range manifest for @babel/plugin-transform-object-super@^7.12.13 fetched in 326ms<br> 842 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-parameters" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-parameters</a> 207ms<br> 843 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz</a> 1268ms<br> 844 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz</a> 90ms<br> 845 silly pacote range manifest for @babel/plugin-transform-literals@^7.12.13 fetched in 1452ms<br> 846 silly pacote range manifest for @babel/plugin-transform-parameters@^7.14.2 fetched in 319ms<br> 847 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-property-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-property-literals</a> 171ms<br> 848 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-regenerator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-regenerator</a> 189ms<br> 849 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz</a> 94ms<br> 850 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz</a> 1242ms<br> 851 silly pacote range manifest for @babel/plugin-transform-property-literals@^7.12.13 fetched in 284ms<br> 852 silly pacote range manifest for @babel/plugin-transform-modules-commonjs@^7.14.0 fetched in 1458ms<br> 853 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties</a> 149ms<br> 854 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words</a> 176ms<br> 855 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz</a> 1280ms<br> 856 silly pacote range manifest for @babel/plugin-transform-modules-umd@^7.14.0 fetched in 1475ms<br> 857 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-spread" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-spread</a> 173ms<br> 858 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.14.5.tgz</a> 94ms<br> 859 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz</a> 1236ms<br> 860 silly pacote range manifest for @babel/plugin-transform-spread@^7.13.0 fetched in 283ms<br> 861 silly pacote range manifest for @babel/plugin-transform-new-target@^7.12.13 fetched in 1476ms<br> 862 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex</a> 158ms<br> 863 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-template-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-template-literals</a> 198ms<br> 864 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz</a> 89ms<br> 865 silly pacote range manifest for @babel/plugin-transform-template-literals@^7.13.0 fetched in 303ms<br> 866 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol</a> 141ms<br> 867 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz</a> 95ms<br> 868 silly pacote range manifest for @babel/plugin-transform-typeof-symbol@^7.12.13 fetched in 251ms<br> 869 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz</a> 1215ms<br> 870 silly pacote range manifest for @babel/plugin-transform-regenerator@^7.13.15 fetched in 1422ms<br> 871 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes</a> 98ms<br> 872 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz</a> 90ms<br> 873 silly pacote range manifest for @babel/plugin-transform-unicode-escapes@^7.12.13 fetched in 203ms<br> 874 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex</a> 165ms<br> 875 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz</a> 1191ms<br> 876 silly pacote range manifest for @babel/plugin-transform-reserved-words@^7.12.13 fetched in 1389ms<br> 877 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fpreset-modules" rel="nofollow">https://registry.npmjs.org/@babel%2fpreset-modules</a> 116ms<br> 878 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz</a> 89ms<br> 879 silly pacote range manifest for @babel/plugin-transform-unicode-regex@^7.12.13 fetched in 267ms<br> 880 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz</a> 87ms<br> 881 silly pacote range manifest for @babel/preset-modules@^0.1.4 fetched in 223ms<br> 882 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-polyfill-corejs2" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-corejs2</a> 148ms<br> 883 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-polyfill-corejs3" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-corejs3</a> 143ms<br> 884 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-polyfill-regenerator" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-regenerator</a> 114ms<br> 885 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz</a> 105ms<br> 886 silly pacote range manifest for babel-plugin-polyfill-corejs2@^0.2.0 fetched in 263ms<br> 887 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz</a> 117ms<br> 888 silly pacote range manifest for babel-plugin-polyfill-corejs3@^0.2.0 fetched in 268ms<br> 889 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz</a> 71ms<br> 890 silly pacote range manifest for babel-plugin-polyfill-regenerator@^0.2.0 fetched in 197ms<br> 891 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz</a> 1570ms<br> 892 silly pacote range manifest for @babel/plugin-transform-shorthand-properties@^7.12.13 fetched in 1729ms<br> 893 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc" rel="nofollow">https://registry.npmjs.org/jsesc</a> 98ms<br> 894 http fetch GET 200 <a href="https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz</a> 71ms<br> 895 silly pacote version manifest for [email protected] fetched in 79ms<br> 896 silly pacote range manifest for @babel/helper-module-imports@^7.13.12 fetched in 2ms<br> 897 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz" rel="nofollow">https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz</a> 3ms (from cache)<br> 898 silly pacote range manifest for regenerator-runtime@^0.13.4 fetched in 8ms<br> 899 silly pacote range manifest for istanbul-lib-instrument@^4.0.3 fetched in 1ms<br> 900 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz</a> 2ms (from cache)<br> 901 silly pacote range manifest for loader-utils@^2.0.0 fetched in 7ms<br> 902 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" rel="nofollow">https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz</a> 66ms<br> 903 silly pacote range manifest for jsesc@^2.5.1 fetched in 169ms<br> 904 http fetch GET 200 <a href="https://registry.npmjs.org/core-js-compat" rel="nofollow">https://registry.npmjs.org/core-js-compat</a> 217ms<br> 905 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz</a> 1197ms<br> 906 http fetch GET 200 <a href="https://registry.npmjs.org/merge-source-map" rel="nofollow">https://registry.npmjs.org/merge-source-map</a> 83ms<br> 907 silly pacote range manifest for @babel/plugin-transform-sticky-regex@^7.12.13 fetched in 1370ms<br> 908 silly pacote range manifest for caniuse-lite@^1.0.30001219 fetched in 3ms<br> 909 http fetch GET 200 <a href="https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz</a> 140ms<br> 910 http fetch GET 304 <a href="https://registry.npmjs.org/colorette" rel="nofollow">https://registry.npmjs.org/colorette</a> 151ms (from cache)<br> 911 silly pacote range manifest for merge-source-map@^1.1.0 fetched in 242ms<br> 912 http fetch GET 200 <a href="https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.14.0.tgz" rel="nofollow">https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.14.0.tgz</a> 171ms<br> 913 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils" rel="nofollow">https://registry.npmjs.org/schema-utils</a> 201ms<br> 914 silly pacote range manifest for colorette@^1.2.2 fetched in 159ms<br> 915 silly pacote range manifest for core-js-compat@^3.9.0 fetched in 409ms<br> 916 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" rel="nofollow">https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz</a> 127ms<br> 917 silly pacote range manifest for schema-utils@^2.7.0 fetched in 348ms<br> 918 silly pacote range manifest for fs-minipass@^2.0.0 fetched in 5ms<br> 919 silly pacote range manifest for glob@^7.1.4 fetched in 3ms<br> 920 silly pacote range manifest for minipass@^3.1.1 fetched in 4ms<br> 921 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2fmove-file" rel="nofollow">https://registry.npmjs.org/@npmcli%2fmove-file</a> 224ms (from cache)<br> 922 silly pacote range manifest for @npmcli/move-file@^1.0.1 fetched in 227ms<br> 923 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-collect" rel="nofollow">https://registry.npmjs.org/minipass-collect</a> 144ms (from cache)<br> 924 silly pacote range manifest for minipass-collect@^1.0.2 fetched in 149ms<br> 925 http fetch GET 200 <a href="https://registry.npmjs.org/node-releases" rel="nofollow">https://registry.npmjs.org/node-releases</a> 324ms<br> 926 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-flush" rel="nofollow">https://registry.npmjs.org/minipass-flush</a> 99ms (from cache)<br> 927 silly pacote range manifest for minipass-flush@^1.0.5 fetched in 101ms<br> 928 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-pipeline" rel="nofollow">https://registry.npmjs.org/minipass-pipeline</a> 108ms (from cache)<br> 929 silly pacote range manifest for minipass-pipeline@^1.2.2 fetched in 112ms<br> 930 http fetch GET 200 <a href="https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz" rel="nofollow">https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz</a> 100ms<br> 931 silly pacote range manifest for node-releases@^1.1.71 fetched in 470ms<br> 932 silly pacote range manifest for tar@^6.0.2 fetched in 5ms<br> 933 http fetch GET 304 <a href="https://registry.npmjs.org/p-map" rel="nofollow">https://registry.npmjs.org/p-map</a> 134ms (from cache)<br> 934 silly pacote range manifest for p-map@^4.0.0 fetched in 136ms<br> 935 silly pacote range manifest for @babel/parser@^7.12.13 fetched in 2ms<br> 936 silly pacote range manifest for @babel/types@^7.12.13 fetched in 1ms<br> 937 http fetch GET 200 <a href="https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" rel="nofollow">https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz</a> 2ms (from cache)<br> 938 silly pacote range manifest for find-cache-dir@^3.3.1 fetched in 6ms<br> 939 http fetch GET 304 <a href="https://registry.npmjs.org/promise-inflight" rel="nofollow">https://registry.npmjs.org/promise-inflight</a> 75ms (from cache)<br> 940 silly pacote range manifest for promise-inflight@^1.0.1 fetched in 77ms<br> 941 silly pacote range manifest for make-dir@^3.1.0 fetched in 1ms<br> 942 silly pacote range manifest for schema-utils@^2.6.5 fetched in 1ms<br> 943 http fetch GET 304 <a href="https://registry.npmjs.org/unique-filename" rel="nofollow">https://registry.npmjs.org/unique-filename</a> 106ms (from cache)<br> 944 silly pacote range manifest for unique-filename@^1.1.1 fetched in 108ms<br> 945 silly pacote range manifest for glob-parent@^5.1.1 fetched in 2ms<br> 946 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz</a> 96ms<br> 947 silly pacote range manifest for loader-utils@^1.4.0 fetched in 111ms<br> 948 silly pacote range manifest for normalize-path@^3.0.0 fetched in 3ms<br> 949 http fetch GET 200 <a href="https://registry.npmjs.org/fast-glob" rel="nofollow">https://registry.npmjs.org/fast-glob</a> 183ms<br> 950 http fetch GET 304 <a href="https://registry.npmjs.org/p-limit" rel="nofollow">https://registry.npmjs.org/p-limit</a> 105ms (from cache)<br> 951 http fetch GET 200 <a href="https://registry.npmjs.org/globby" rel="nofollow">https://registry.npmjs.org/globby</a> 152ms<br> 952 http fetch GET 200 <a href="https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz" rel="nofollow">https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz</a> 228ms<br> 953 http fetch GET 200 <a href="https://registry.npmjs.org/globby/-/globby-11.0.3.tgz" rel="nofollow">https://registry.npmjs.org/globby/-/globby-11.0.3.tgz</a> 170ms<br> 954 http fetch GET 200 <a href="https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz</a> 208ms<br> 955 silly pacote range manifest for fast-glob@^3.2.5 fetched in 427ms<br> 956 silly pacote range manifest for p-limit@^3.1.0 fetched in 324ms<br> 957 silly pacote range manifest for globby@^11.0.3 fetched in 341ms<br> 958 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz</a> 168ms<br> 959 http fetch GET 200 <a href="https://registry.npmjs.org/serialize-javascript" rel="nofollow">https://registry.npmjs.org/serialize-javascript</a> 172ms<br> 960 silly pacote range manifest for schema-utils@^3.0.0 fetched in 180ms<br> 961 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz" rel="nofollow">https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz</a> 7ms (from cache)<br> 962 silly pacote range manifest for jest-worker@^26.3.0 fetched in 17ms<br> 963 silly pacote range manifest for p-limit@^3.0.2 fetched in 1ms<br> 964 http fetch GET 200 <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz</a> 143ms<br> 965 silly pacote range manifest for serialize-javascript@^5.0.1 fetched in 326ms<br> 966 http fetch GET 200 <a href="https://registry.npmjs.org/postcss/-/postcss-8.3.4.tgz" rel="nofollow">https://registry.npmjs.org/postcss/-/postcss-8.3.4.tgz</a> 302ms<br> 967 silly pacote range manifest for postcss@^8.2.9 fetched in 310ms<br> 968 silly pacote range manifest for make-dir@^3.0.2 fetched in 5ms<br> 969 http fetch GET 200 <a href="https://registry.npmjs.org/commondir" rel="nofollow">https://registry.npmjs.org/commondir</a> 219ms<br> 970 http fetch GET 200 <a href="https://registry.npmjs.org/pkg-dir" rel="nofollow">https://registry.npmjs.org/pkg-dir</a> 156ms<br> 971 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano" rel="nofollow">https://registry.npmjs.org/cssnano</a> 677ms<br> 972 http fetch GET 200 <a href="https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz</a> 140ms<br> 973 silly pacote range manifest for commondir@^1.0.1 fetched in 366ms<br> 974 http fetch GET 200 <a href="https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz</a> 127ms<br> 975 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano/-/cssnano-5.0.6.tgz" rel="nofollow">https://registry.npmjs.org/cssnano/-/cssnano-5.0.6.tgz</a> 113ms<br> 976 silly pacote range manifest for cssnano@^5.0.0 fetched in 809ms<br> 977 silly pacote range manifest for pkg-dir@^4.1.0 fetched in 300ms<br> 978 silly pacote range manifest for debug@4 fetched in 8ms<br> 979 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" rel="nofollow">https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz</a> 9ms (from cache)<br> 980 silly pacote range manifest for @types/node@* fetched in 8ms<br> 981 http fetch GET 304 <a href="https://registry.npmjs.org/agent-base" rel="nofollow">https://registry.npmjs.org/agent-base</a> 138ms (from cache)<br> 982 silly pacote range manifest for agent-base@6 fetched in 139ms<br> 983 silly pacote range manifest for supports-color@^7.0.0 fetched in 1ms<br> 984 silly pacote range manifest for source-map-support@^0.5.5 fetched in 21ms<br> 985 http fetch GET 304 <a href="https://registry.npmjs.org/camelcase" rel="nofollow">https://registry.npmjs.org/camelcase</a> 96ms (from cache)<br> 986 http fetch GET 200 <a href="https://registry.npmjs.org/electron-to-chromium" rel="nofollow">https://registry.npmjs.org/electron-to-chromium</a> 1864ms<br> 987 http fetch GET 200 <a href="https://registry.npmjs.org/merge-stream" rel="nofollow">https://registry.npmjs.org/merge-stream</a> 122ms<br> 988 http fetch GET 200 <a href="https://registry.npmjs.org/klona" rel="nofollow">https://registry.npmjs.org/klona</a> 122ms<br> 989 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" rel="nofollow">https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz</a> 74ms<br> 990 silly pacote range manifest for camelcase@^6.2.0 fetched in 204ms<br> 991 http fetch GET 200 <a href="https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz" rel="nofollow">https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.752.tgz</a> 99ms<br> 992 silly pacote range manifest for electron-to-chromium@^1.3.723 fetched in 1996ms<br> 993 silly pacote range manifest for postcss@^8.2.10 fetched in 2ms<br> 994 http fetch GET 200 <a href="https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz</a> 119ms<br> 995 http fetch GET 200 <a href="https://registry.npmjs.org/klona/-/klona-2.0.4.tgz" rel="nofollow">https://registry.npmjs.org/klona/-/klona-2.0.4.tgz</a> 114ms<br> 996 silly pacote range manifest for klona@^2.0.4 fetched in 242ms<br> 997 silly pacote range manifest for merge-stream@^2.0.0 fetched in 248ms<br> 998 http fetch GET 200 <a href="https://registry.npmjs.org/icss-utils" rel="nofollow">https://registry.npmjs.org/icss-utils</a> 107ms<br> 999 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-extract-imports" rel="nofollow">https://registry.npmjs.org/postcss-modules-extract-imports</a> 232ms<br> 1000 http fetch GET 200 <a href="https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" rel="nofollow">https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz</a> 155ms<br> 1001 silly pacote range manifest for icss-utils@^5.1.0 fetched in 270ms<br> 1002 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-scope" rel="nofollow">https://registry.npmjs.org/postcss-modules-scope</a> 351ms<br> 1003 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz</a> 132ms<br> 1004 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-values" rel="nofollow">https://registry.npmjs.org/postcss-modules-values</a> 126ms<br> 1005 silly pacote range manifest for postcss-modules-extract-imports@^3.0.0 fetched in 375ms<br> 1006 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz</a> 66ms<br> 1007 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-value-parser" rel="nofollow">https://registry.npmjs.org/postcss-value-parser</a> 62ms (from cache)<br> 1008 silly pacote range manifest for postcss-value-parser@^4.1.0 fetched in 64ms<br> 1009 silly pacote range manifest for semver@^7.3.5 fetched in 1ms<br> 1010 silly pacote range manifest for postcss-modules-values@^4.0.0 fetched in 202ms<br> 1011 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz</a> 178ms<br> 1012 silly pacote range manifest for postcss-modules-scope@^3.0.0 fetched in 538ms<br> 1013 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fwebpack-sources" rel="nofollow">https://registry.npmjs.org/@types%2fwebpack-sources</a> 121ms<br> 1014 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-sources" rel="nofollow">https://registry.npmjs.org/webpack-sources</a> 173ms<br> 1015 http fetch GET 200 <a href="https://registry.npmjs.org/css" rel="nofollow">https://registry.npmjs.org/css</a> 108ms<br> 1016 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz" rel="nofollow">https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz</a> 76ms<br> 1017 silly pacote range manifest for webpack-sources@^1.2.0 fetched in 258ms<br> 1018 http fetch GET 200 <a href="https://registry.npmjs.org/css/-/css-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/css/-/css-3.0.0.tgz</a> 94ms<br> 1019 silly pacote range manifest for css@^3.0.0 fetched in 211ms<br> 1020 http fetch GET 200 <a href="https://registry.npmjs.org/parse5" rel="nofollow">https://registry.npmjs.org/parse5</a> 92ms<br> 1021 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-htmlparser2-tree-adapter" rel="nofollow">https://registry.npmjs.org/parse5-htmlparser2-tree-adapter</a> 86ms<br> 1022 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz</a> 68ms<br> 1023 silly pacote range manifest for parse5-htmlparser2-tree-adapter@^6.0.1 fetched in 161ms<br> 1024 http fetch GET 200 <a href="https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz</a> 147ms<br> 1025 silly pacote range manifest for parse5@^6.0.1 fetched in 248ms<br> 1026 http fetch GET 200 <a href="https://registry.npmjs.org/big.js" rel="nofollow">https://registry.npmjs.org/big.js</a> 90ms<br> 1027 http fetch GET 200 <a href="https://registry.npmjs.org/pretty-bytes" rel="nofollow">https://registry.npmjs.org/pretty-bytes</a> 130ms<br> 1028 http fetch GET 200 <a href="https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" rel="nofollow">https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz</a> 85ms<br> 1029 silly pacote range manifest for pretty-bytes@^5.3.0 fetched in 223ms<br> 1030 http fetch GET 200 <a href="https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" rel="nofollow">https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz</a> 116ms<br> 1031 silly pacote range manifest for big.js@^5.2.2 fetched in 220ms<br> 1032 http fetch GET 200 <a href="https://registry.npmjs.org/emojis-list" rel="nofollow">https://registry.npmjs.org/emojis-list</a> 86ms<br> 1033 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-sax-parser" rel="nofollow">https://registry.npmjs.org/parse5-sax-parser</a> 78ms<br> 1034 http fetch GET 200 <a href="https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz</a> 101ms<br> 1035 silly pacote range manifest for emojis-list@^3.0.0 fetched in 210ms<br> 1036 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz</a> 109ms<br> 1037 silly pacote range manifest for parse5-sax-parser@^6.0.1 fetched in 196ms<br> 1038 silly pacote range manifest for postcss-value-parser@^4.0.0 fetched in 2ms<br> 1039 http fetch GET 200 <a href="https://registry.npmjs.org/read-cache" rel="nofollow">https://registry.npmjs.org/read-cache</a> 97ms<br> 1040 http fetch GET 200 <a href="https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz</a> 68ms<br> 1041 silly pacote range manifest for read-cache@^1.0.0 fetched in 175ms<br> 1042 silly pacote range manifest for resolve@^1.1.7 fetched in 4ms<br> 1043 http fetch GET 200 <a href="https://registry.npmjs.org/enhanced-resolve" rel="nofollow">https://registry.npmjs.org/enhanced-resolve</a> 204ms<br> 1044 http fetch GET 200 <a href="https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.7.0.tgz" rel="nofollow">https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.7.0.tgz</a> 211ms<br> 1045 silly pacote version manifest for [email protected] fetched in 426ms<br> 1046 silly pacote range manifest for webpack-sources@^1.1.0 fetched in 2ms<br> 1047 http fetch GET 200 <a href="https://registry.npmjs.org/cosmiconfig" rel="nofollow">https://registry.npmjs.org/cosmiconfig</a> 351ms<br> 1048 http fetch GET 200 <a href="https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.8.tgz" rel="nofollow">https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.8.tgz</a> 1393ms<br> 1049 silly pacote range manifest for @types/webpack-sources@^0.1.5 fetched in 1532ms<br> 1050 http fetch GET 200 <a href="https://registry.npmjs.org/copy-anything" rel="nofollow">https://registry.npmjs.org/copy-anything</a> 204ms<br> 1051 http fetch GET 304 <a href="https://registry.npmjs.org/parse-node-version" rel="nofollow">https://registry.npmjs.org/parse-node-version</a> 143ms (from cache)<br> 1052 silly pacote range manifest for parse-node-version@^1.0.1 fetched in 148ms<br> 1053 silly pacote range manifest for tslib@^1.10.0 fetched in 10ms<br> 1054 http fetch GET 200 <a href="https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz" rel="nofollow">https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz</a> 158ms<br> 1055 silly pacote range manifest for copy-anything@^2.0.1 fetched in 375ms<br> 1056 silly pacote range manifest for graceful-fs@^4.1.2 fetched in 5ms<br> 1057 http fetch GET 200 <a href="https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz" rel="nofollow">https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz</a> 283ms<br> 1058 silly pacote range manifest for cosmiconfig@^7.0.0 fetched in 647ms<br> 1059 http fetch GET 200 <a href="https://registry.npmjs.org/errno" rel="nofollow">https://registry.npmjs.org/errno</a> 146ms<br> 1060 http fetch GET 200 <a href="https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz</a> 122ms<br> 1061 silly pacote range manifest for make-dir@^2.1.0 fetched in 131ms<br> 1062 http fetch GET 200 <a href="https://registry.npmjs.org/image-size" rel="nofollow">https://registry.npmjs.org/image-size</a> 168ms<br> 1063 http fetch GET 200 <a href="https://registry.npmjs.org/errno/-/errno-0.1.8.tgz" rel="nofollow">https://registry.npmjs.org/errno/-/errno-0.1.8.tgz</a> 154ms<br> 1064 silly pacote range manifest for errno@^0.1.1 fetched in 308ms<br> 1065 http fetch GET 200 <a href="https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz" rel="nofollow">https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz</a> 137ms<br> 1066 silly pacote range manifest for image-size@~0.5.0 fetched in 314ms<br> 1067 silly pacote range manifest for source-map@~0.6.0 fetched in 2ms<br> 1068 http fetch GET 200 <a href="https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/mime/-/mime-1.6.0.tgz</a> 223ms<br> 1069 silly pacote range manifest for mime@^1.4.1 fetched in 238ms<br> 1070 http fetch GET 200 <a href="https://registry.npmjs.org/needle" rel="nofollow">https://registry.npmjs.org/needle</a> 301ms<br> 1071 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-js" rel="nofollow">https://registry.npmjs.org/source-map-js</a> 196ms<br> 1072 http fetch GET 200 <a href="https://registry.npmjs.org/nanoid" rel="nofollow">https://registry.npmjs.org/nanoid</a> 298ms<br> 1073 http fetch GET 200 <a href="https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz" rel="nofollow">https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz</a> 119ms<br> 1074 silly pacote range manifest for nanoid@^3.1.23 fetched in 433ms<br> 1075 http fetch GET 200 <a href="https://registry.npmjs.org/needle/-/needle-2.6.0.tgz" rel="nofollow">https://registry.npmjs.org/needle/-/needle-2.6.0.tgz</a> 260ms<br> 1076 silly pacote range manifest for needle@^2.5.2 fetched in 585ms<br> 1077 silly pacote range manifest for browserslist@^4.6.4 fetched in 5ms<br> 1078 silly pacote range manifest for caniuse-lite@^1.0.30000981 fetched in 6ms<br> 1079 http fetch GET 304 <a href="https://registry.npmjs.org/autoprefixer" rel="nofollow">https://registry.npmjs.org/autoprefixer</a> 135ms (from cache)<br> 1080 silly pacote range manifest for autoprefixer@^9.6.1 fetched in 142ms<br> 1081 http fetch GET 200 <a href="https://registry.npmjs.org/css-has-pseudo" rel="nofollow">https://registry.npmjs.org/css-has-pseudo</a> 88ms<br> 1082 http fetch GET 200 <a href="https://registry.npmjs.org/css-blank-pseudo" rel="nofollow">https://registry.npmjs.org/css-blank-pseudo</a> 137ms<br> 1083 http fetch GET 200 <a href="https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz" rel="nofollow">https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz</a> 116ms<br> 1084 silly pacote range manifest for css-has-pseudo@^0.10.0 fetched in 217ms<br> 1085 http fetch GET 200 <a href="https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz</a> 202ms<br> 1086 http fetch GET 200 <a href="https://registry.npmjs.org/css-prefers-color-scheme" rel="nofollow">https://registry.npmjs.org/css-prefers-color-scheme</a> 110ms<br> 1087 silly pacote range manifest for css-blank-pseudo@^0.1.4 fetched in 347ms<br> 1088 http fetch GET 200 <a href="https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz" rel="nofollow">https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz</a> 110ms<br> 1089 silly pacote range manifest for css-prefers-color-scheme@^3.1.1 fetched in 235ms<br> 1090 http fetch GET 200 <a href="https://registry.npmjs.org/cssdb" rel="nofollow">https://registry.npmjs.org/cssdb</a> 128ms<br> 1091 http fetch GET 200 <a href="https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz" rel="nofollow">https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz</a> 92ms<br> 1092 silly pacote range manifest for cssdb@^4.4.0 fetched in 238ms<br> 1093 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-attribute-case-insensitive" rel="nofollow">https://registry.npmjs.org/postcss-attribute-case-insensitive</a> 157ms<br> 1094 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz" rel="nofollow">https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz</a> 1084ms<br> 1095 silly pacote range manifest for source-map-js@^0.6.2 fetched in 1301ms<br> 1096 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz</a> 103ms<br> 1097 silly pacote range manifest for postcss-attribute-case-insensitive@^4.0.1 fetched in 268ms<br> 1098 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-gray" rel="nofollow">https://registry.npmjs.org/postcss-color-gray</a> 125ms<br> 1099 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-functional-notation" rel="nofollow">https://registry.npmjs.org/postcss-color-functional-notation</a> 162ms<br> 1100 http fetch GET 200 <a href="https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz" rel="nofollow">https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz</a> 604ms<br> 1101 silly pacote range manifest for postcss@^7.0.17 fetched in 615ms<br> 1102 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz</a> 118ms<br> 1103 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz</a> 103ms<br> 1104 silly pacote range manifest for postcss-color-functional-notation@^2.0.1 fetched in 273ms<br> 1105 silly pacote range manifest for postcss-color-gray@^5.0.0 fetched in 254ms<br> 1106 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-mod-function" rel="nofollow">https://registry.npmjs.org/postcss-color-mod-function</a> 113ms<br> 1107 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-hex-alpha" rel="nofollow">https://registry.npmjs.org/postcss-color-hex-alpha</a> 143ms<br> 1108 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-rebeccapurple" rel="nofollow">https://registry.npmjs.org/postcss-color-rebeccapurple</a> 129ms<br> 1109 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz" rel="nofollow">https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz</a> 195ms<br> 1110 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz</a> 193ms<br> 1111 silly pacote range manifest for postcss-color-hex-alpha@^5.0.3 fetched in 352ms<br> 1112 silly pacote range manifest for postcss-color-rebeccapurple@^4.0.1 fetched in 334ms<br> 1113 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-media" rel="nofollow">https://registry.npmjs.org/postcss-custom-media</a> 212ms<br> 1114 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-properties" rel="nofollow">https://registry.npmjs.org/postcss-custom-properties</a> 313ms<br> 1115 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz" rel="nofollow">https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz</a> 160ms<br> 1116 silly pacote range manifest for postcss-custom-media@^7.0.8 fetched in 377ms<br> 1117 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz" rel="nofollow">https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz</a> 597ms<br> 1118 silly pacote range manifest for postcss-color-mod-function@^3.0.3 fetched in 719ms<br> 1119 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-selectors" rel="nofollow">https://registry.npmjs.org/postcss-custom-selectors</a> 162ms<br> 1120 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-dir-pseudo-class" rel="nofollow">https://registry.npmjs.org/postcss-dir-pseudo-class</a> 153ms<br> 1121 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz" rel="nofollow">https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz</a> 230ms<br> 1122 silly pacote range manifest for postcss-custom-properties@^8.0.11 fetched in 556ms<br> 1123 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz</a> 115ms<br> 1124 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-double-position-gradients" rel="nofollow">https://registry.npmjs.org/postcss-double-position-gradients</a> 98ms<br> 1125 silly pacote range manifest for postcss-dir-pseudo-class@^5.0.0 fetched in 281ms<br> 1126 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz</a> 198ms<br> 1127 silly pacote range manifest for postcss-custom-selectors@^5.1.2 fetched in 369ms<br> 1128 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz</a> 273ms<br> 1129 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-env-function" rel="nofollow">https://registry.npmjs.org/postcss-env-function</a> 267ms<br> 1130 silly pacote range manifest for postcss-double-position-gradients@^1.0.0 fetched in 383ms<br> 1131 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-focus-visible" rel="nofollow">https://registry.npmjs.org/postcss-focus-visible</a> 217ms<br> 1132 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-focus-within" rel="nofollow">https://registry.npmjs.org/postcss-focus-within</a> 251ms<br> 1133 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz</a> 260ms<br> 1134 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz</a> 232ms<br> 1135 silly pacote range manifest for postcss-focus-visible@^4.0.0 fetched in 458ms<br> 1136 silly pacote range manifest for postcss-env-function@^2.0.2 fetched in 537ms<br> 1137 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-font-variant" rel="nofollow">https://registry.npmjs.org/postcss-font-variant</a> 120ms<br> 1138 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-gap-properties" rel="nofollow">https://registry.npmjs.org/postcss-gap-properties</a> 120ms<br> 1139 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz</a> 135ms<br> 1140 silly pacote range manifest for postcss-focus-within@^3.0.0 fetched in 401ms<br> 1141 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz</a> 91ms<br> 1142 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz</a> 97ms<br> 1143 silly pacote range manifest for postcss-gap-properties@^2.0.0 fetched in 234ms<br> 1144 silly pacote range manifest for postcss-font-variant@^4.0.0 fetched in 239ms<br> 1145 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-image-set-function" rel="nofollow">https://registry.npmjs.org/postcss-image-set-function</a> 101ms<br> 1146 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz</a> 112ms<br> 1147 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-initial" rel="nofollow">https://registry.npmjs.org/postcss-initial</a> 119ms<br> 1148 silly pacote range manifest for postcss-image-set-function@^3.0.1 fetched in 233ms<br> 1149 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-lab-function" rel="nofollow">https://registry.npmjs.org/postcss-lab-function</a> 140ms<br> 1150 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz" rel="nofollow">https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz</a> 76ms<br> 1151 silly pacote range manifest for postcss-initial@^3.0.0 fetched in 203ms<br> 1152 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-logical" rel="nofollow">https://registry.npmjs.org/postcss-logical</a> 99ms<br> 1153 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz</a> 112ms<br> 1154 silly pacote range manifest for postcss-lab-function@^2.0.1 fetched in 267ms<br> 1155 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-media-minmax" rel="nofollow">https://registry.npmjs.org/postcss-media-minmax</a> 90ms<br> 1156 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz</a> 116ms<br> 1157 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-nesting" rel="nofollow">https://registry.npmjs.org/postcss-nesting</a> 157ms<br> 1158 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz</a> 198ms<br> 1159 silly pacote range manifest for postcss-media-minmax@^4.0.0 fetched in 237ms<br> 1160 silly pacote range manifest for postcss-logical@^3.0.0 fetched in 314ms<br> 1161 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz</a> 92ms<br> 1162 silly pacote range manifest for postcss-nesting@^7.0.0 fetched in 268ms<br> 1163 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-overflow-shorthand" rel="nofollow">https://registry.npmjs.org/postcss-overflow-shorthand</a> 127ms<br> 1164 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-page-break" rel="nofollow">https://registry.npmjs.org/postcss-page-break</a> 117ms<br> 1165 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-place" rel="nofollow">https://registry.npmjs.org/postcss-place</a> 98ms<br> 1166 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz</a> 85ms<br> 1167 silly pacote range manifest for postcss-page-break@^2.0.0 fetched in 222ms<br> 1168 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz</a> 110ms<br> 1169 silly pacote range manifest for postcss-overflow-shorthand@^2.0.0 fetched in 246ms<br> 1170 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz</a> 76ms<br> 1171 silly pacote range manifest for postcss-place@^4.0.1 fetched in 182ms<br> 1172 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-pseudo-class-any-link" rel="nofollow">https://registry.npmjs.org/postcss-pseudo-class-any-link</a> 87ms<br> 1173 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-replace-overflow-wrap" rel="nofollow">https://registry.npmjs.org/postcss-replace-overflow-wrap</a> 85ms<br> 1174 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-matches" rel="nofollow">https://registry.npmjs.org/postcss-selector-matches</a> 79ms<br> 1175 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz</a> 59ms<br> 1176 silly pacote range manifest for postcss-replace-overflow-wrap@^3.0.0 fetched in 162ms<br> 1177 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz</a> 93ms<br> 1178 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz</a> 63ms<br> 1179 silly pacote range manifest for postcss-pseudo-class-any-link@^6.0.0 fetched in 192ms<br> 1180 silly pacote range manifest for postcss-selector-matches@^4.0.0 fetched in 152ms<br> 1181 silly pacote range manifest for postcss@^7.0.35 fetched in 4ms<br> 1182 http fetch GET 200 <a href="https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" rel="nofollow">https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz</a> 13ms (from cache)<br> 1183 silly pacote version manifest for [email protected] fetched in 19ms<br> 1184 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-not" rel="nofollow">https://registry.npmjs.org/postcss-selector-not</a> 103ms<br> 1185 http fetch GET 200 <a href="https://registry.npmjs.org/adjust-sourcemap-loader" rel="nofollow">https://registry.npmjs.org/adjust-sourcemap-loader</a> 86ms<br> 1186 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz</a> 91ms<br> 1187 http fetch GET 200 <a href="https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz</a> 93ms<br> 1188 silly pacote range manifest for postcss-selector-not@^4.0.0 fetched in 200ms<br> 1189 silly pacote range manifest for adjust-sourcemap-loader@^4.0.0 fetched in 187ms<br> 1190 silly pacote range manifest for source-map@^0.6.0 fetched in 2ms<br> 1191 http fetch GET 200 <a href="https://registry.npmjs.org/neo-async" rel="nofollow">https://registry.npmjs.org/neo-async</a> 163ms<br> 1192 http fetch GET 304 <a href="https://registry.npmjs.org/buffer-from" rel="nofollow">https://registry.npmjs.org/buffer-from</a> 73ms (from cache)<br> 1193 silly pacote range manifest for buffer-from@^1.0.0 fetched in 75ms<br> 1194 silly pacote range manifest for iconv-lite@^0.6.2 fetched in 1ms<br> 1195 http fetch GET 200 <a href="https://registry.npmjs.org/abab" rel="nofollow">https://registry.npmjs.org/abab</a> 131ms<br> 1196 http fetch GET 200 <a href="https://registry.npmjs.org/css-parse" rel="nofollow">https://registry.npmjs.org/css-parse</a> 80ms<br> 1197 http fetch GET 200 <a href="https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" rel="nofollow">https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz</a> 146ms<br> 1198 silly pacote range manifest for neo-async@^2.6.2 fetched in 319ms<br> 1199 http fetch GET 200 <a href="https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" rel="nofollow">https://registry.npmjs.org/abab/-/abab-2.0.5.tgz</a> 75ms<br> 1200 silly pacote range manifest for abab@^2.0.5 fetched in 220ms<br> 1201 silly pacote range manifest for glob@^7.1.6 fetched in 3ms<br> 1202 silly pacote range manifest for mkdirp@~1.0.4 fetched in 4ms<br> 1203 http fetch GET 200 <a href="https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz</a> 100ms<br> 1204 silly pacote range manifest for css-parse@~2.0.0 fetched in 190ms<br> 1205 http fetch GET 200 <a href="https://registry.npmjs.org/debug/-/debug-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/debug/-/debug-3.1.0.tgz</a> 131ms<br> 1206 silly pacote range manifest for debug@~3.1.0 fetched in 138ms<br> 1207 silly pacote range manifest for source-map@^0.7.3 fetched in 3ms<br> 1208 silly pacote range manifest for colorette@^1.2.1 fetched in 1ms<br> 1209 http fetch GET 304 <a href="https://registry.npmjs.org/safer-buffer" rel="nofollow">https://registry.npmjs.org/safer-buffer</a> 89ms (from cache)<br> 1210 silly pacote range manifest for safer-buffer@^2.1.2 fetched in 90ms<br> 1211 http fetch GET 200 <a href="https://registry.npmjs.org/sax" rel="nofollow">https://registry.npmjs.org/sax</a> 116ms<br> 1212 http fetch GET 200 <a href="https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" rel="nofollow">https://registry.npmjs.org/sax/-/sax-1.2.4.tgz</a> 132ms<br> 1213 silly pacote range manifest for sax@~1.2.4 fetched in 263ms<br> 1214 http fetch GET 304 <a href="https://registry.npmjs.org/mime-types" rel="nofollow">https://registry.npmjs.org/mime-types</a> 95ms (from cache)<br> 1215 silly pacote range manifest for mime-types@^2.1.28 fetched in 98ms<br> 1216 silly pacote range manifest for chokidar@&gt;=3.0.0 &lt;4.0.0 fetched in 1ms<br> 1217 http fetch GET 200 <a href="https://registry.npmjs.org/memfs" rel="nofollow">https://registry.npmjs.org/memfs</a> 338ms<br> 1218 http fetch GET 200 <a href="https://registry.npmjs.org/commander" rel="nofollow">https://registry.npmjs.org/commander</a> 208ms<br> 1219 http fetch GET 200 <a href="https://registry.npmjs.org/memfs/-/memfs-3.2.2.tgz" rel="nofollow">https://registry.npmjs.org/memfs/-/memfs-3.2.2.tgz</a> 192ms<br> 1220 silly pacote range manifest for memfs@^3.2.0 fetched in 543ms<br> 1221 silly pacote range manifest for source-map@~0.7.2 fetched in 2ms<br> 1222 silly pacote range manifest for source-map-support@~0.5.19 fetched in 1ms<br> 1223 silly pacote range manifest for @babel/code-frame@^7.14.5 fetched in 1ms<br> 1224 silly pacote range manifest for @babel/generator@^7.14.5 fetched in 1ms<br> 1225 silly pacote range manifest for @babel/helper-compilation-targets@^7.14.5 fetched in 1ms<br> 1226 silly pacote range manifest for @babel/helper-module-transforms@^7.14.5 fetched in 2ms<br> 1227 silly pacote range manifest for @babel/helpers@^7.14.5 fetched in 2ms<br> 1228 silly pacote range manifest for @babel/parser@^7.14.5 fetched in 2ms<br> 1229 silly pacote range manifest for @babel/template@^7.14.5 fetched in 2ms<br> 1230 silly pacote range manifest for @babel/traverse@^7.14.5 fetched in 2ms<br> 1231 silly pacote range manifest for @babel/types@^7.14.5 fetched in 2ms<br> 1232 silly pacote range manifest for webpack-sources@^1.3.0 fetched in 2ms<br> 1233 http fetch GET 200 <a href="https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" rel="nofollow">https://registry.npmjs.org/commander/-/commander-2.20.3.tgz</a> 132ms<br> 1234 http fetch GET 200 <a href="https://registry.npmjs.org/clone-deep" rel="nofollow">https://registry.npmjs.org/clone-deep</a> 88ms<br> 1235 silly pacote range manifest for commander@^2.20.0 fetched in 363ms<br> 1236 http fetch GET 200 <a href="https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz</a> 63ms<br> 1237 silly pacote range manifest for clone-deep@^4.0.1 fetched in 165ms<br> 1238 http fetch GET 200 <a href="https://registry.npmjs.org/wildcard" rel="nofollow">https://registry.npmjs.org/wildcard</a> 88ms<br> 1239 http fetch GET 304 <a href="https://registry.npmjs.org/has-flag" rel="nofollow">https://registry.npmjs.org/has-flag</a> 103ms (from cache)<br> 1240 silly pacote range manifest for has-flag@^4.0.0 fetched in 107ms<br> 1241 http fetch GET 200 <a href="https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz</a> 92ms<br> 1242 silly pacote range manifest for wildcard@^2.0.0 fetched in 189ms<br> 1243 http fetch GET 304 <a href="https://registry.npmjs.org/balanced-match" rel="nofollow">https://registry.npmjs.org/balanced-match</a> 95ms (from cache)<br> 1244 silly pacote range manifest for balanced-match@^1.0.0 fetched in 100ms<br> 1245 http fetch GET 304 <a href="https://registry.npmjs.org/concat-map" rel="nofollow">https://registry.npmjs.org/concat-map</a> 103ms (from cache)<br> 1246 silly pacote version manifest for [email protected] fetched in 106ms<br> 1247 http fetch GET 304 <a href="https://registry.npmjs.org/fast-deep-equal" rel="nofollow">https://registry.npmjs.org/fast-deep-equal</a> 72ms (from cache)<br> 1248 silly pacote range manifest for fast-deep-equal@^3.1.1 fetched in 74ms<br> 1249 http fetch GET 304 <a href="https://registry.npmjs.org/json-schema-traverse" rel="nofollow">https://registry.npmjs.org/json-schema-traverse</a> 73ms (from cache)<br> 1250 silly pacote range manifest for json-schema-traverse@^1.0.0 fetched in 75ms<br> 1251 http fetch GET 304 <a href="https://registry.npmjs.org/require-from-string" rel="nofollow">https://registry.npmjs.org/require-from-string</a> 61ms (from cache)<br> 1252 silly pacote range manifest for require-from-string@^2.0.2 fetched in 64ms<br> 1253 http fetch GET 304 <a href="https://registry.npmjs.org/uri-js" rel="nofollow">https://registry.npmjs.org/uri-js</a> 80ms (from cache)<br> 1254 silly pacote range manifest for uri-js@^4.2.2 fetched in 81ms<br> 1255 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-html" rel="nofollow">https://registry.npmjs.org/ansi-html</a> 103ms<br> 1256 http fetch GET 200 <a href="https://registry.npmjs.org/bonjour" rel="nofollow">https://registry.npmjs.org/bonjour</a> 96ms<br> 1257 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz" rel="nofollow">https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz</a> 76ms<br> 1258 silly pacote version manifest for [email protected] fetched in 196ms<br> 1259 silly pacote range manifest for chokidar@^2.1.8 fetched in 5ms<br> 1260 warn deprecated [email protected]: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.<br> 1261 http fetch GET 200 <a href="https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz" rel="nofollow">https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz</a> 85ms<br> 1262 silly pacote range manifest for bonjour@^3.5.0 fetched in 190ms<br> 1263 http fetch GET 200 <a href="https://registry.npmjs.org/mem" rel="nofollow">https://registry.npmjs.org/mem</a> 1336ms<br> 1264 http fetch GET 200 <a href="https://registry.npmjs.org/connect-history-api-fallback" rel="nofollow">https://registry.npmjs.org/connect-history-api-fallback</a> 76ms<br> 1265 http fetch GET 200 <a href="https://registry.npmjs.org/compression" rel="nofollow">https://registry.npmjs.org/compression</a> 109ms<br> 1266 http fetch GET 200 <a href="https://registry.npmjs.org/mem/-/mem-8.1.1.tgz" rel="nofollow">https://registry.npmjs.org/mem/-/mem-8.1.1.tgz</a> 90ms<br> 1267 silly pacote range manifest for mem@^8.0.0 fetched in 1436ms<br> 1268 http fetch GET 200 <a href="https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz</a> 79ms<br> 1269 silly pacote range manifest for connect-history-api-fallback@^1.6.0 fetched in 167ms<br> 1270 http fetch GET 200 <a href="https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" rel="nofollow">https://registry.npmjs.org/compression/-/compression-1.7.4.tgz</a> 91ms<br> 1271 silly pacote range manifest for compression@^1.7.4 fetched in 212ms<br> 1272 http fetch GET 200 <a href="https://registry.npmjs.org/del" rel="nofollow">https://registry.npmjs.org/del</a> 145ms<br> 1273 http fetch GET 200 <a href="https://registry.npmjs.org/html-entities" rel="nofollow">https://registry.npmjs.org/html-entities</a> 143ms<br> 1274 http fetch GET 200 <a href="https://registry.npmjs.org/del/-/del-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/del/-/del-4.1.1.tgz</a> 78ms<br> 1275 silly pacote range manifest for del@^4.1.1 fetched in 236ms<br> 1276 http fetch GET 200 <a href="https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz</a> 99ms<br> 1277 silly pacote range manifest for html-entities@^1.3.1 fetched in 253ms<br> 1278 http fetch GET 200 <a href="https://registry.npmjs.org/import-local" rel="nofollow">https://registry.npmjs.org/import-local</a> 65ms<br> 1279 http fetch GET 200 <a href="https://registry.npmjs.org/express" rel="nofollow">https://registry.npmjs.org/express</a> 416ms<br> 1280 http fetch GET 200 <a href="https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz</a> 94ms<br> 1281 silly pacote range manifest for import-local@^2.0.0 fetched in 171ms<br> 1282 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy-middleware" rel="nofollow">https://registry.npmjs.org/http-proxy-middleware</a> 292ms<br> 1283 http fetch GET 200 <a href="https://registry.npmjs.org/internal-ip" rel="nofollow">https://registry.npmjs.org/internal-ip</a> 102ms<br> 1284 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz" rel="nofollow">https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz</a> 99ms<br> 1285 http fetch GET 200 <a href="https://registry.npmjs.org/express/-/express-4.17.1.tgz" rel="nofollow">https://registry.npmjs.org/express/-/express-4.17.1.tgz</a> 144ms<br> 1286 silly pacote version manifest for [email protected] fetched in 401ms<br> 1287 silly pacote range manifest for express@^4.17.1 fetched in 585ms<br> 1288 http fetch GET 200 <a href="https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz</a> 60ms<br> 1289 silly pacote range manifest for internal-ip@^4.3.0 fetched in 170ms<br> 1290 http fetch GET 304 <a href="https://registry.npmjs.org/ip" rel="nofollow">https://registry.npmjs.org/ip</a> 85ms (from cache)<br> 1291 silly pacote range manifest for ip@^1.1.5 fetched in 88ms<br> 1292 http fetch GET 200 <a href="https://registry.npmjs.org/is-absolute-url" rel="nofollow">https://registry.npmjs.org/is-absolute-url</a> 91ms<br> 1293 http fetch GET 200 <a href="https://registry.npmjs.org/killable" rel="nofollow">https://registry.npmjs.org/killable</a> 73ms<br> 1294 http fetch GET 200 <a href="https://registry.npmjs.org/killable/-/killable-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/killable/-/killable-1.0.1.tgz</a> 64ms<br> 1295 silly pacote range manifest for killable@^1.0.1 fetched in 155ms<br> 1296 http fetch GET 200 <a href="https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz" rel="nofollow">https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz</a> 99ms<br> 1297 silly pacote range manifest for is-absolute-url@^3.0.3 fetched in 199ms<br> 1298 http fetch GET 200 <a href="https://registry.npmjs.org/loglevel" rel="nofollow">https://registry.npmjs.org/loglevel</a> 130ms<br> 1299 http fetch GET 200 <a href="https://registry.npmjs.org/opn" rel="nofollow">https://registry.npmjs.org/opn</a> 82ms<br> 1300 http fetch GET 200 <a href="https://registry.npmjs.org/p-retry" rel="nofollow">https://registry.npmjs.org/p-retry</a> 79ms<br> 1301 http fetch GET 200 <a href="https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz" rel="nofollow">https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz</a> 144ms<br> 1302 http fetch GET 200 <a href="https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz" rel="nofollow">https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz</a> 87ms<br> 1303 http fetch GET 200 <a href="https://registry.npmjs.org/opn/-/opn-5.5.0.tgz" rel="nofollow">https://registry.npmjs.org/opn/-/opn-5.5.0.tgz</a> 101ms<br> 1304 silly pacote range manifest for loglevel@^1.6.8 fetched in 291ms<br> 1305 silly pacote range manifest for p-retry@^3.0.1 fetched in 177ms<br> 1306 silly pacote range manifest for opn@^5.5.0 fetched in 194ms<br> 1307 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz</a> 70ms<br> 1308 silly pacote range manifest for schema-utils@^1.0.0 fetched in 89ms<br> 1309 http fetch GET 200 <a href="https://registry.npmjs.org/selfsigned" rel="nofollow">https://registry.npmjs.org/selfsigned</a> 97ms<br> 1310 http fetch GET 200 <a href="https://registry.npmjs.org/portfinder" rel="nofollow">https://registry.npmjs.org/portfinder</a> 128ms<br> 1311 http fetch GET 200 <a href="https://registry.npmjs.org/serve-index" rel="nofollow">https://registry.npmjs.org/serve-index</a> 86ms<br> 1312 http fetch GET 200 <a href="https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz" rel="nofollow">https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz</a> 73ms<br> 1313 http fetch GET 200 <a href="https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz" rel="nofollow">https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz</a> 96ms<br> 1314 silly pacote range manifest for portfinder@^1.0.26 fetched in 208ms<br> 1315 silly pacote range manifest for selfsigned@^1.10.8 fetched in 204ms<br> 1316 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs-client" rel="nofollow">https://registry.npmjs.org/sockjs-client</a> 134ms<br> 1317 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs" rel="nofollow">https://registry.npmjs.org/sockjs</a> 140ms<br> 1318 http fetch GET 200 <a href="https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz</a> 174ms<br> 1319 silly pacote range manifest for serve-index@^1.9.1 fetched in 270ms<br> 1320 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz" rel="nofollow">https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz</a> 215ms<br> 1321 http fetch GET 200 <a href="https://registry.npmjs.org/spdy" rel="nofollow">https://registry.npmjs.org/spdy</a> 213ms<br> 1322 silly pacote range manifest for sockjs@^0.3.21 fetched in 414ms<br> 1323 silly pacote range manifest for strip-ansi@^3.0.1 fetched in 3ms<br> 1324 silly pacote range manifest for supports-color@^6.1.0 fetched in 6ms<br> 1325 http fetch GET 200 <a href="https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz</a> 104ms<br> 1326 silly pacote range manifest for spdy@^4.0.2 fetched in 333ms<br> 1327 http fetch GET 200 <a href="https://registry.npmjs.org/url" rel="nofollow">https://registry.npmjs.org/url</a> 73ms<br> 1328 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz" rel="nofollow">https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz</a> 167ms<br> 1329 http fetch GET 200 <a href="https://registry.npmjs.org/url/-/url-0.11.0.tgz" rel="nofollow">https://registry.npmjs.org/url/-/url-0.11.0.tgz</a> 158ms<br> 1330 silly pacote range manifest for webpack-dev-middleware@^3.7.2 fetched in 177ms<br> 1331 silly pacote range manifest for url@^0.11.0 fetched in 242ms<br> 1332 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz</a> 594ms<br> 1333 silly pacote range manifest for sockjs-client@^1.5.0 fetched in 750ms<br> 1334 silly pacote range manifest for yargs@^13.3.2 fetched in 9ms<br> 1335 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-log" rel="nofollow">https://registry.npmjs.org/webpack-log</a> 108ms<br> 1336 silly pacote range manifest for semver@^6.0.0 fetched in 14ms<br> 1337 http fetch GET 200 <a href="https://registry.npmjs.org/ws" rel="nofollow">https://registry.npmjs.org/ws</a> 187ms<br> 1338 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz</a> 103ms<br> 1339 silly pacote range manifest for webpack-log@^2.0.0 fetched in 222ms<br> 1340 silly pacote range manifest for sourcemap-codec@^1.4.4 fetched in 2ms<br> 1341 http fetch GET 200 <a href="https://registry.npmjs.org/ws/-/ws-6.2.2.tgz" rel="nofollow">https://registry.npmjs.org/ws/-/ws-6.2.2.tgz</a> 144ms<br> 1342 silly pacote range manifest for ws@^6.2.1 fetched in 355ms<br> 1343 http fetch GET 304 <a href="https://registry.npmjs.org/safe-buffer" rel="nofollow">https://registry.npmjs.org/safe-buffer</a> 134ms (from cache)<br> 1344 silly pacote range manifest for safe-buffer@~5.1.1 fetched in 142ms<br> 1345 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-styles" rel="nofollow">https://registry.npmjs.org/ansi-styles</a> 88ms (from cache)<br> 1346 silly pacote range manifest for ansi-styles@^4.1.0 fetched in 90ms<br> 1347 http fetch GET 304 <a href="https://registry.npmjs.org/type-fest" rel="nofollow">https://registry.npmjs.org/type-fest</a> 83ms (from cache)<br> 1348 silly pacote range manifest for type-fest@^0.21.3 fetched in 87ms<br> 1349 http fetch GET 304 <a href="https://registry.npmjs.org/restore-cursor" rel="nofollow">https://registry.npmjs.org/restore-cursor</a> 97ms (from cache)<br> 1350 silly pacote range manifest for restore-cursor@^3.1.0 fetched in 100ms<br> 1351 silly pacote range manifest for iconv-lite@^0.4.24 fetched in 13ms<br> 1352 http fetch GET 304 <a href="https://registry.npmjs.org/chardet" rel="nofollow">https://registry.npmjs.org/chardet</a> 110ms (from cache)<br> 1353 silly pacote range manifest for tmp@^0.0.33 fetched in 3ms<br> 1354 silly pacote range manifest for chardet@^0.7.0 fetched in 114ms<br> 1355 http fetch GET 200 <a href="https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz" rel="nofollow">https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz</a> 455ms<br> 1356 silly pacote range manifest for ajv@^8.0.0 fetched in 462ms<br> 1357 http fetch GET 304 <a href="https://registry.npmjs.org/escape-string-regexp" rel="nofollow">https://registry.npmjs.org/escape-string-regexp</a> 66ms (from cache)<br> 1358 silly pacote range manifest for escape-string-regexp@^1.0.5 fetched in 69ms<br> 1359 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-validator-identifier" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-validator-identifier</a> 90ms<br> 1360 http fetch GET 200 <a href="https://registry.npmjs.org/to-fast-properties" rel="nofollow">https://registry.npmjs.org/to-fast-properties</a> 89ms<br> 1361 http fetch GET 304 <a href="https://registry.npmjs.org/emoji-regex" rel="nofollow">https://registry.npmjs.org/emoji-regex</a> 78ms (from cache)<br> 1362 silly pacote range manifest for emoji-regex@^8.0.0 fetched in 82ms<br> 1363 http fetch GET 200 <a href="https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz</a> 86ms<br> 1364 silly pacote range manifest for to-fast-properties@^2.0.0 fetched in 181ms<br> 1365 http fetch GET 304 <a href="https://registry.npmjs.org/is-fullwidth-code-point" rel="nofollow">https://registry.npmjs.org/is-fullwidth-code-point</a> 72ms (from cache)<br> 1366 silly pacote range manifest for is-fullwidth-code-point@^3.0.0 fetched in 73ms<br> 1367 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-regex" rel="nofollow">https://registry.npmjs.org/ansi-regex</a> 73ms (from cache)<br> 1368 silly pacote range manifest for ansi-regex@^5.0.0 fetched in 74ms<br> 1369 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2feslint-scope" rel="nofollow">https://registry.npmjs.org/@types%2feslint-scope</a> 68ms<br> 1370 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2festree" rel="nofollow">https://registry.npmjs.org/@types%2festree</a> 131ms<br> 1371 http fetch GET 200 <a href="https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz</a> 91ms<br> 1372 silly pacote range manifest for @types/eslint-scope@^3.7.0 fetched in 179ms<br> 1373 http fetch GET 200 <a href="https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz" rel="nofollow">https://registry.npmjs.org/@types/estree/-/estree-0.0.47.tgz</a> 113ms<br> 1374 silly pacote range manifest for @types/estree@^0.0.47 fetched in 261ms<br> 1375 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fast" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fast</a> 256ms<br> 1376 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-edit" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-edit</a> 253ms<br> 1377 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz</a> 156ms<br> 1378 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 438ms<br> 1379 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz</a> 94ms<br> 1380 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 359ms<br> 1381 http fetch GET 200 <a href="https://registry.npmjs.org/acorn" rel="nofollow">https://registry.npmjs.org/acorn</a> 189ms<br> 1382 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-parser" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-parser</a> 256ms<br> 1383 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz</a> 124ms<br> 1384 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 389ms<br> 1385 silly pacote range manifest for browserslist@^4.14.5 fetched in 3ms<br> 1386 http fetch GET 200 <a href="https://registry.npmjs.org/acorn/-/acorn-8.4.0.tgz" rel="nofollow">https://registry.npmjs.org/acorn/-/acorn-8.4.0.tgz</a> 228ms<br> 1387 silly pacote range manifest for acorn@^8.2.1 fetched in 431ms<br> 1388 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz</a> 1239ms<br> 1389 http fetch GET 200 <a href="https://registry.npmjs.org/chrome-trace-event" rel="nofollow">https://registry.npmjs.org/chrome-trace-event</a> 88ms<br> 1390 silly pacote range manifest for @babel/helper-validator-identifier@^7.14.5 fetched in 1346ms<br> 1391 http fetch GET 200 <a href="https://registry.npmjs.org/es-module-lexer" rel="nofollow">https://registry.npmjs.org/es-module-lexer</a> 172ms<br> 1392 http fetch GET 200 <a href="https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz</a> 186ms<br> 1393 http fetch GET 200 <a href="https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz" rel="nofollow">https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz</a> 214ms<br> 1394 silly pacote range manifest for chrome-trace-event@^1.0.2 fetched in 290ms<br> 1395 silly pacote range manifest for enhanced-resolve@^5.8.0 fetched in 226ms<br> 1396 http fetch GET 200 <a href="https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.1.tgz" rel="nofollow">https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.4.1.tgz</a> 109ms<br> 1397 http fetch GET 200 <a href="https://registry.npmjs.org/eslint-scope" rel="nofollow">https://registry.npmjs.org/eslint-scope</a> 102ms<br> 1398 http fetch GET 200 <a href="https://registry.npmjs.org/events" rel="nofollow">https://registry.npmjs.org/events</a> 103ms<br> 1399 silly pacote range manifest for es-module-lexer@^0.4.0 fetched in 304ms<br> 1400 http fetch GET 200 <a href="https://registry.npmjs.org/glob-to-regexp" rel="nofollow">https://registry.npmjs.org/glob-to-regexp</a> 87ms<br> 1401 http fetch GET 200 <a href="https://registry.npmjs.org/events/-/events-3.3.0.tgz" rel="nofollow">https://registry.npmjs.org/events/-/events-3.3.0.tgz</a> 96ms<br> 1402 silly pacote range manifest for events@^3.2.0 fetched in 218ms<br> 1403 silly pacote range manifest for graceful-fs@^4.2.4 fetched in 3ms<br> 1404 http fetch GET 200 <a href="https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" rel="nofollow">https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz</a> 148ms<br> 1405 silly pacote version manifest for [email protected] fetched in 268ms<br> 1406 http fetch GET 200 <a href="https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" rel="nofollow">https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz</a> 111ms<br> 1407 silly pacote range manifest for glob-to-regexp@^0.4.1 fetched in 214ms<br> 1408 silly pacote range manifest for mime-types@^2.1.27 fetched in 2ms<br> 1409 http fetch GET 200 <a href="https://registry.npmjs.org/json-parse-better-errors" rel="nofollow">https://registry.npmjs.org/json-parse-better-errors</a> 153ms<br> 1410 http fetch GET 200 <a href="https://registry.npmjs.org/loader-runner" rel="nofollow">https://registry.npmjs.org/loader-runner</a> 124ms<br> 1411 http fetch GET 200 <a href="https://registry.npmjs.org/tapable" rel="nofollow">https://registry.npmjs.org/tapable</a> 131ms<br> 1412 http fetch GET 200 <a href="https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz</a> 91ms<br> 1413 http fetch GET 200 <a href="https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz</a> 90ms<br> 1414 silly pacote range manifest for json-parse-better-errors@^1.0.2 fetched in 264ms<br> 1415 silly pacote range manifest for loader-runner@^4.2.0 fetched in 236ms<br> 1416 http fetch GET 200 <a href="https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/tapable/-/tapable-2.2.0.tgz</a> 82ms<br> 1417 silly pacote range manifest for tapable@^2.1.1 fetched in 224ms<br> 1418 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.0.tgz</a> 95ms<br> 1419 silly pacote range manifest for webpack-sources@^2.3.0 fetched in 102ms<br> 1420 silly pacote range manifest for semver@^7.1.1 fetched in 1ms<br> 1421 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack" rel="nofollow">https://registry.npmjs.org/watchpack</a> 194ms<br> 1422 http fetch GET 200 <a href="https://registry.npmjs.org/terser-webpack-plugin" rel="nofollow">https://registry.npmjs.org/terser-webpack-plugin</a> 217ms<br> 1423 http fetch GET 304 <a href="https://registry.npmjs.org/builtins" rel="nofollow">https://registry.npmjs.org/builtins</a> 76ms (from cache)<br> 1424 silly pacote range manifest for builtins@^1.0.3 fetched in 77ms<br> 1425 http fetch GET 200 <a href="https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz" rel="nofollow">https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.3.tgz</a> 88ms<br> 1426 silly pacote range manifest for terser-webpack-plugin@^5.1.1 fetched in 310ms<br> 1427 silly pacote range manifest for inherits@^2.0.4 fetched in 2ms<br> 1428 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz</a> 117ms<br> 1429 http fetch GET 304 <a href="https://registry.npmjs.org/buffer" rel="nofollow">https://registry.npmjs.org/buffer</a> 79ms (from cache)<br> 1430 silly pacote range manifest for buffer@^5.5.0 fetched in 81ms<br> 1431 silly pacote range manifest for watchpack@^2.2.0 fetched in 318ms<br> 1432 silly pacote range manifest for is-docker@^2.0.0 fetched in 1ms<br> 1433 silly pacote range manifest for minipass@^3.0.0 fetched in 1ms<br> 1434 http fetch GET 304 <a href="https://registry.npmjs.org/readable-stream" rel="nofollow">https://registry.npmjs.org/readable-stream</a> 78ms (from cache)<br> 1435 silly pacote range manifest for readable-stream@^3.4.0 fetched in 126ms<br> 1436 http fetch GET 304 <a href="https://registry.npmjs.org/defaults" rel="nofollow">https://registry.npmjs.org/defaults</a> 115ms (from cache)<br> 1437 silly pacote range manifest for defaults@^1.0.3 fetched in 116ms<br> 1438 silly pacote range manifest for @npmcli/promise-spawn@^1.3.2 fetched in 1ms<br> 1439 http fetch GET 304 <a href="https://registry.npmjs.org/node-gyp" rel="nofollow">https://registry.npmjs.org/node-gyp</a> 105ms (from cache)<br> 1440 silly pacote range manifest for node-gyp@^7.1.0 fetched in 110ms<br> 1441 http fetch GET 304 <a href="https://registry.npmjs.org/yallist" rel="nofollow">https://registry.npmjs.org/yallist</a> 120ms (from cache)<br> 1442 silly pacote range manifest for yallist@^4.0.0 fetched in 121ms<br> 1443 http fetch GET 304 <a href="https://registry.npmjs.org/json-parse-even-better-errors" rel="nofollow">https://registry.npmjs.org/json-parse-even-better-errors</a> 79ms (from cache)<br> 1444 silly pacote range manifest for json-parse-even-better-errors@^2.3.0 fetched in 82ms<br> 1445 silly pacote range manifest for mkdirp@^1.0.4 fetched in 3ms<br> 1446 silly pacote range manifest for npm-pick-manifest@^6.1.1 fetched in 3ms<br> 1447 silly pacote range manifest for which@^2.0.2 fetched in 4ms<br> 1448 http fetch GET 304 <a href="https://registry.npmjs.org/minizlib" rel="nofollow">https://registry.npmjs.org/minizlib</a> 78ms (from cache)<br> 1449 silly pacote range manifest for minizlib@^2.1.1 fetched in 81ms<br> 1450 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2fnode-gyp" rel="nofollow">https://registry.npmjs.org/@npmcli%2fnode-gyp</a> 490ms (from cache)<br> 1451 silly pacote range manifest for @npmcli/node-gyp@^1.0.2 fetched in 493ms<br> 1452 http fetch GET 304 <a href="https://registry.npmjs.org/has" rel="nofollow">https://registry.npmjs.org/has</a> 91ms (from cache)<br> 1453 silly pacote range manifest for has@^1.0.3 fetched in 92ms<br> 1454 silly pacote range manifest for is-glob@^4.0.1 fetched in 2ms<br> 1455 http fetch GET 304 <a href="https://registry.npmjs.org/picomatch" rel="nofollow">https://registry.npmjs.org/picomatch</a> 106ms (from cache)<br> 1456 silly pacote range manifest for picomatch@^2.0.4 fetched in 117ms<br> 1457 http fetch GET 304 <a href="https://registry.npmjs.org/binary-extensions" rel="nofollow">https://registry.npmjs.org/binary-extensions</a> 112ms (from cache)<br> 1458 silly pacote range manifest for binary-extensions@^2.0.0 fetched in 115ms<br> 1459 silly pacote range manifest for picomatch@^2.2.1 fetched in 9ms<br> 1460 http fetch GET 304 <a href="https://registry.npmjs.org/is-extglob" rel="nofollow">https://registry.npmjs.org/is-extglob</a> 102ms (from cache)<br> 1461 silly pacote range manifest for is-extglob@^2.1.1 fetched in 107ms<br> 1462 http fetch GET 304 <a href="https://registry.npmjs.org/to-regex-range" rel="nofollow">https://registry.npmjs.org/to-regex-range</a> 84ms (from cache)<br> 1463 silly pacote version manifest for [email protected] fetched in 4ms<br> 1464 silly pacote range manifest for safer-buffer@&gt;= 2.1.2 &lt; 3 fetched in 1ms<br> 1465 silly pacote range manifest for to-regex-range@^5.0.1 fetched in 88ms<br> 1466 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-fetch" rel="nofollow">https://registry.npmjs.org/minipass-fetch</a> 79ms (from cache)<br> 1467 silly pacote range manifest for minipass-fetch@^1.3.0 fetched in 80ms<br> 1468 http fetch GET 304 <a href="https://registry.npmjs.org/make-fetch-happen" rel="nofollow">https://registry.npmjs.org/make-fetch-happen</a> 90ms (from cache)<br> 1469 silly pacote range manifest for make-fetch-happen@^8.0.9 fetched in 92ms<br> 1470 silly pacote range manifest for minizlib@^2.0.0 fetched in 2ms<br> 1471 silly pacote range manifest for npm-package-arg@^8.0.0 fetched in 1ms<br> 1472 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-json-stream" rel="nofollow">https://registry.npmjs.org/minipass-json-stream</a> 59ms (from cache)<br> 1473 silly pacote range manifest for minipass-json-stream@^1.0.1 fetched in 60ms<br> 1474 http fetch GET 304 <a href="https://registry.npmjs.org/err-code" rel="nofollow">https://registry.npmjs.org/err-code</a> 61ms (from cache)<br> 1475 silly pacote range manifest for err-code@^2.0.2 fetched in 62ms<br> 1476 http fetch GET 304 <a href="https://registry.npmjs.org/retry" rel="nofollow">https://registry.npmjs.org/retry</a> 67ms (from cache)<br> 1477 silly pacote range manifest for retry@^0.12.0 fetched in 68ms<br> 1478 http fetch GET 200 <a href="https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" rel="nofollow">https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz</a> 88ms<br> 1479 silly pacote version manifest for [email protected] fetched in 100ms<br> 1480 http fetch GET 304 <a href="https://registry.npmjs.org/npm-bundled" rel="nofollow">https://registry.npmjs.org/npm-bundled</a> 1258ms (from cache)<br> 1481 silly pacote range manifest for npm-bundled@^1.1.1 fetched in 1261ms<br> 1482 http fetch GET 200 <a href="https://registry.npmjs.org/setprototypeof" rel="nofollow">https://registry.npmjs.org/setprototypeof</a> 91ms<br> 1483 http fetch GET 200 <a href="https://registry.npmjs.org/statuses" rel="nofollow">https://registry.npmjs.org/statuses</a> 81ms<br> 1484 http fetch GET 200 <a href="https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz</a> 71ms<br> 1485 silly pacote version manifest for [email protected] fetched in 170ms<br> 1486 http fetch GET 200 <a href="https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" rel="nofollow">https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz</a> 80ms<br> 1487 silly pacote range manifest for statuses@&gt;= 1.5.0 &lt; 2 fetched in 172ms<br> 1488 http fetch GET 200 <a href="https://registry.npmjs.org/toidentifier" rel="nofollow">https://registry.npmjs.org/toidentifier</a> 69ms<br> 1489 http fetch GET 200 <a href="https://registry.npmjs.org/ee-first" rel="nofollow">https://registry.npmjs.org/ee-first</a> 83ms<br> 1490 http fetch GET 200 <a href="https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz</a> 96ms<br> 1491 silly pacote version manifest for [email protected] fetched in 175ms<br> 1492 http fetch GET 200 <a href="https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz</a> 81ms<br> 1493 silly pacote version manifest for [email protected] fetched in 173ms<br> 1494 http fetch GET 200 <a href="https://registry.npmjs.org/unpipe" rel="nofollow">https://registry.npmjs.org/unpipe</a> 74ms<br> 1495 http fetch GET 304 <a href="https://registry.npmjs.org/wrappy" rel="nofollow">https://registry.npmjs.org/wrappy</a> 88ms (from cache)<br> 1496 silly pacote range manifest for wrappy@1 fetched in 91ms<br> 1497 http fetch GET 200 <a href="https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz</a> 100ms<br> 1498 silly pacote version manifest for [email protected] fetched in 182ms<br> 1499 silly pacote range manifest for mime-types@~2.1.24 fetched in 1ms<br> 1500 http fetch GET 200 <a href="https://registry.npmjs.org/media-typer" rel="nofollow">https://registry.npmjs.org/media-typer</a> 82ms<br> 1501 http fetch GET 200 <a href="https://registry.npmjs.org/encodeurl" rel="nofollow">https://registry.npmjs.org/encodeurl</a> 63ms<br> 1502 http fetch GET 200 <a href="https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz</a> 72ms<br> 1503 http fetch GET 200 <a href="https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" rel="nofollow">https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz</a> 88ms<br> 1504 silly pacote range manifest for encodeurl@~1.0.2 fetched in 146ms<br> 1505 silly pacote version manifest for [email protected] fetched in 182ms<br> 1506 silly pacote range manifest for statuses@~1.5.0 fetched in 2ms<br> 1507 http fetch GET 200 <a href="https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz</a> 5ms (from cache)<br> 1508 silly pacote range manifest for unpipe@~1.0.0 fetched in 13ms<br> 1509 http fetch GET 200 <a href="https://registry.npmjs.org/escape-html" rel="nofollow">https://registry.npmjs.org/escape-html</a> 71ms<br> 1510 http fetch GET 200 <a href="https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz</a> 79ms<br> 1511 silly pacote range manifest for date-format@^2.1.0 fetched in 91ms<br> 1512 http fetch GET 200 <a href="https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz</a> 67ms<br> 1513 silly pacote range manifest for escape-html@~1.0.3 fetched in 152ms<br> 1514 http fetch GET 200 <a href="https://registry.npmjs.org/negotiator" rel="nofollow">https://registry.npmjs.org/negotiator</a> 78ms<br> 1515 http fetch GET 200 <a href="https://registry.npmjs.org/fs-extra" rel="nofollow">https://registry.npmjs.org/fs-extra</a> 136ms<br> 1516 http fetch GET 304 <a href="https://registry.npmjs.org/ignore-walk" rel="nofollow">https://registry.npmjs.org/ignore-walk</a> 1218ms (from cache)<br> 1517 silly pacote range manifest for ignore-walk@^3.0.3 fetched in 1221ms<br> 1518 http fetch GET 200 <a href="https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz" rel="nofollow">https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz</a> 80ms<br> 1519 silly pacote version manifest for [email protected] fetched in 164ms<br> 1520 http fetch GET 200 <a href="https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" rel="nofollow">https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz</a> 93ms<br> 1521 silly pacote range manifest for fs-extra@^8.1.0 fetched in 239ms<br> 1522 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fcomponent-emitter" rel="nofollow">https://registry.npmjs.org/@types%2fcomponent-emitter</a> 96ms<br> 1523 http fetch GET 304 <a href="https://registry.npmjs.org/component-emitter" rel="nofollow">https://registry.npmjs.org/component-emitter</a> 62ms (from cache)<br> 1524 silly pacote range manifest for component-emitter@~1.3.0 fetched in 63ms<br> 1525 http fetch GET 200 <a href="https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz</a> 3ms (from cache)<br> 1526 silly pacote version manifest for [email protected] fetched in 6ms<br> 1527 http fetch GET 304 <a href="https://registry.npmjs.org/wrap-ansi" rel="nofollow">https://registry.npmjs.org/wrap-ansi</a> 67ms (from cache)<br> 1528 http fetch GET 200 <a href="https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz" rel="nofollow">https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz</a> 84ms<br> 1529 silly pacote range manifest for @types/component-emitter@^1.2.10 fetched in 184ms<br> 1530 http fetch GET 200 <a href="https://registry.npmjs.org/cookie" rel="nofollow">https://registry.npmjs.org/cookie</a> 76ms<br> 1531 http fetch GET 200 <a href="https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" rel="nofollow">https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz</a> 72ms<br> 1532 silly pacote range manifest for wrap-ansi@^7.0.0 fetched in 144ms<br> 1533 http fetch GET 200 <a href="https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz" rel="nofollow">https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz</a> 92ms<br> 1534 silly pacote range manifest for cookie@~0.4.1 fetched in 181ms<br> 1535 http fetch GET 200 <a href="https://registry.npmjs.org/engine.io-parser" rel="nofollow">https://registry.npmjs.org/engine.io-parser</a> 112ms<br> 1536 http fetch GET 200 <a href="https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz</a> 103ms<br> 1537 http fetch GET 200 <a href="https://registry.npmjs.org/ws/-/ws-7.4.6.tgz" rel="nofollow">https://registry.npmjs.org/ws/-/ws-7.4.6.tgz</a> 148ms<br> 1538 silly pacote range manifest for engine.io-parser@~4.0.0 fetched in 227ms<br> 1539 silly pacote range manifest for ws@~7.4.2 fetched in 159ms<br> 1540 silly pacote range manifest for @babel/helper-module-imports@^7.14.5 fetched in 3ms<br> 1541 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhighlight" rel="nofollow">https://registry.npmjs.org/@babel%2fhighlight</a> 221ms<br> 1542 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-replace-supers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-replace-supers</a> 224ms<br> 1543 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz</a> 126ms<br> 1544 silly pacote range manifest for @babel/highlight@^7.14.5 fetched in 363ms<br> 1545 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-simple-access" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-simple-access</a> 141ms<br> 1546 http fetch GET 200 <a href="https://registry.npmjs.org/cors" rel="nofollow">https://registry.npmjs.org/cors</a> 1235ms<br> 1547 http fetch GET 200 <a href="https://registry.npmjs.org/cors/-/cors-2.8.5.tgz" rel="nofollow">https://registry.npmjs.org/cors/-/cors-2.8.5.tgz</a> 71ms<br> 1548 silly pacote range manifest for cors@~2.8.5 fetched in 1321ms<br> 1549 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-split-export-declaration" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-split-export-declaration</a> 161ms<br> 1550 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz</a> 82ms<br> 1551 silly pacote range manifest for @babel/helper-split-export-declaration@^7.14.5 fetched in 263ms<br> 1552 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure</a> 138ms<br> 1553 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz</a> 1268ms<br> 1554 silly pacote range manifest for @babel/helper-replace-supers@^7.14.5 fetched in 1505ms<br> 1555 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-wrap-function" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-wrap-function</a> 165ms<br> 1556 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz</a> 1255ms<br> 1557 silly pacote range manifest for @babel/helper-simple-access@^7.14.5 fetched in 1404ms<br> 1558 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-function-name" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-function-name</a> 144ms<br> 1559 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz</a> 79ms<br> 1560 silly pacote range manifest for @babel/helper-function-name@^7.14.5 fetched in 228ms<br> 1561 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-hoist-variables" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-hoist-variables</a> 126ms<br> 1562 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz</a> 80ms<br> 1563 silly pacote range manifest for @babel/helper-hoist-variables@^7.14.5 fetched in 210ms<br> 1564 http fetch GET 200 <a href="https://registry.npmjs.org/globals" rel="nofollow">https://registry.npmjs.org/globals</a> 120ms<br> 1565 http fetch GET 200 <a href="https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" rel="nofollow">https://registry.npmjs.org/globals/-/globals-11.12.0.tgz</a> 85ms<br> 1566 silly pacote range manifest for globals@^11.1.0 fetched in 219ms<br> 1567 silly pacote range manifest for @babel/compat-data@^7.14.5 fetched in 2ms<br> 1568 silly pacote range manifest for @babel/helper-validator-option@^7.14.5 fetched in 2ms<br> 1569 silly pacote range manifest for browserslist@^4.16.6 fetched in 2ms<br> 1570 silly pacote range manifest for minimist@^1.2.5 fetched in 6ms<br> 1571 silly pacote range manifest for @babel/helper-plugin-utils@^7.14.5 fetched in 1ms<br> 1572 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers</a> 69ms<br> 1573 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz</a> 82ms<br> 1574 silly pacote range manifest for @babel/helper-skip-transparent-expression-wrappers@^7.14.5 fetched in 167ms<br> 1575 silly pacote range manifest for @babel/plugin-proposal-optional-chaining@^7.14.5 fetched in 3ms<br> 1576 silly pacote range manifest for @babel/helper-remap-async-to-generator@^7.14.5 fetched in 4ms<br> 1577 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz</a> 1280ms<br> 1578 silly pacote range manifest for @babel/helper-annotate-as-pure@^7.14.5 fetched in 1433ms<br> 1579 silly pacote range manifest for @babel/plugin-syntax-class-static-block@^7.14.5 fetched in 3ms<br> 1580 silly pacote range manifest for @babel/plugin-transform-parameters@^7.14.5 fetched in 4ms<br> 1581 silly pacote range manifest for @babel/plugin-syntax-private-property-in-object@^7.14.5 fetched in 2ms<br> 1582 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.0 fetched in 2ms<br> 1583 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin</a> 157ms<br> 1584 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz</a> 1205ms<br> 1585 silly pacote range manifest for @babel/helper-wrap-function@^7.14.5 fetched in 1390ms<br> 1586 silly pacote range manifest for @babel/helper-plugin-utils@^7.12.13 fetched in 3ms<br> 1587 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.5.tgz</a> 132ms<br> 1588 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.3 fetched in 5ms<br> 1589 silly pacote range manifest for @babel/helper-plugin-utils@^7.10.4 fetched in 2ms<br> 1590 silly pacote range manifest for @babel/helper-create-class-features-plugin@^7.14.5 fetched in 303ms<br> 1591 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin</a> 176ms<br> 1592 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor</a> 129ms<br> 1593 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression</a> 174ms<br> 1594 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz</a> 82ms<br> 1595 silly pacote range manifest for @babel/helper-builder-binary-assignment-operator-visitor@^7.14.5 fetched in 226ms<br> 1596 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-dynamic-import-node" rel="nofollow">https://registry.npmjs.org/babel-plugin-dynamic-import-node</a> 100ms<br> 1597 http fetch GET 200 <a href="https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" rel="nofollow">https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz</a> 95ms<br> 1598 silly pacote range manifest for babel-plugin-dynamic-import-node@^2.3.3 fetched in 209ms<br> 1599 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-transform" rel="nofollow">https://registry.npmjs.org/regenerator-transform</a> 101ms<br> 1600 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" rel="nofollow">https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz</a> 84ms<br> 1601 silly pacote range manifest for regenerator-transform@^0.14.2 fetched in 195ms<br> 1602 silly pacote range manifest for @babel/helper-plugin-utils@^7.0.0 fetched in 2ms<br> 1603 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.4.4 fetched in 1ms<br> 1604 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.4.4 fetched in 1ms<br> 1605 silly pacote range manifest for @babel/types@^7.4.4 fetched in 2ms<br> 1606 http fetch GET 200 <a href="https://registry.npmjs.org/esutils" rel="nofollow">https://registry.npmjs.org/esutils</a> 80ms<br> 1607 http fetch GET 200 <a href="https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" rel="nofollow">https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz</a> 76ms<br> 1608 silly pacote range manifest for esutils@^2.0.2 fetched in 171ms<br> 1609 silly pacote range manifest for @babel/compat-data@^7.13.11 fetched in 3ms<br> 1610 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider</a> 112ms<br> 1611 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz</a> 149ms<br> 1612 silly pacote range manifest for @babel/helper-define-polyfill-provider@^0.2.2 fetched in 276ms<br> 1613 silly pacote range manifest for semver@^6.1.1 fetched in 7ms<br> 1614 silly pacote range manifest for core-js-compat@^3.9.1 fetched in 2ms<br> 1615 http fetch GET 200 <a href="https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" rel="nofollow">https://registry.npmjs.org/semver/-/semver-7.0.0.tgz</a> 109ms<br> 1616 silly pacote version manifest for [email protected] fetched in 120ms<br> 1617 silly pacote range manifest for ajv@^6.12.4 fetched in 8ms<br> 1618 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz</a> 1215ms<br> 1619 silly pacote range manifest for @babel/helper-create-regexp-features-plugin@^7.14.5 fetched in 1398ms<br> 1620 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-keywords" rel="nofollow">https://registry.npmjs.org/ajv-keywords</a> 107ms<br> 1621 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fjson-schema" rel="nofollow">https://registry.npmjs.org/@types%2fjson-schema</a> 112ms (from cache)<br> 1622 http fetch GET 200 <a href="https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz" rel="nofollow">https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz</a> 9ms (from cache)<br> 1623 silly pacote range manifest for @types/json-schema@^7.0.5 fetched in 135ms<br> 1624 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" rel="nofollow">https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz</a> 86ms<br> 1625 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz</a> 1254ms<br> 1626 silly pacote range manifest for ajv-keywords@^3.5.2 fetched in 242ms<br> 1627 silly pacote range manifest for @babel/helper-optimise-call-expression@^7.14.5 fetched in 1476ms<br> 1628 http fetch GET 304 <a href="https://registry.npmjs.org/aggregate-error" rel="nofollow">https://registry.npmjs.org/aggregate-error</a> 102ms (from cache)<br> 1629 silly pacote range manifest for aggregate-error@^3.0.0 fetched in 103ms<br> 1630 http fetch GET 304 <a href="https://registry.npmjs.org/unique-slug" rel="nofollow">https://registry.npmjs.org/unique-slug</a> 95ms (from cache)<br> 1631 silly pacote range manifest for unique-slug@^2.0.0 fetched in 101ms<br> 1632 http fetch GET 200 <a href="https://registry.npmjs.org/json5/-/json5-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/json5/-/json5-1.0.1.tgz</a> 104ms<br> 1633 silly pacote range manifest for json5@^1.0.1 fetched in 113ms<br> 1634 silly pacote range manifest for glob-parent@^5.1.0 fetched in 1ms<br> 1635 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib%2ffs.stat" rel="nofollow">https://registry.npmjs.org/@nodelib%2ffs.stat</a> 115ms<br> 1636 http fetch GET 200 <a href="https://registry.npmjs.org/merge2" rel="nofollow">https://registry.npmjs.org/merge2</a> 79ms<br> 1637 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib%2ffs.walk" rel="nofollow">https://registry.npmjs.org/@nodelib%2ffs.walk</a> 133ms<br> 1638 http fetch GET 200 <a href="https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" rel="nofollow">https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz</a> 76ms<br> 1639 silly pacote range manifest for merge2@^1.3.0 fetched in 170ms<br> 1640 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz" rel="nofollow">https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz</a> 125ms<br> 1641 silly pacote range manifest for @nodelib/fs.walk@^1.2.3 fetched in 267ms<br> 1642 http fetch GET 304 <a href="https://registry.npmjs.org/micromatch" rel="nofollow">https://registry.npmjs.org/micromatch</a> 120ms (from cache)<br> 1643 silly pacote range manifest for micromatch@^4.0.2 fetched in 127ms<br> 1644 http fetch GET 200 <a href="https://registry.npmjs.org/yocto-queue" rel="nofollow">https://registry.npmjs.org/yocto-queue</a> 78ms<br> 1645 http fetch GET 200 <a href="https://registry.npmjs.org/array-union" rel="nofollow">https://registry.npmjs.org/array-union</a> 69ms<br> 1646 http fetch GET 200 <a href="https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" rel="nofollow">https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz</a> 69ms<br> 1647 silly pacote range manifest for yocto-queue@^0.1.0 fetched in 156ms<br> 1648 http fetch GET 200 <a href="https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz</a> 63ms<br> 1649 silly pacote range manifest for array-union@^2.1.0 fetched in 140ms<br> 1650 silly pacote range manifest for fast-glob@^3.1.1 fetched in 2ms<br> 1651 http fetch GET 200 <a href="https://registry.npmjs.org/dir-glob" rel="nofollow">https://registry.npmjs.org/dir-glob</a> 116ms<br> 1652 http fetch GET 200 <a href="https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" rel="nofollow">https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz</a> 80ms<br> 1653 silly pacote range manifest for dir-glob@^3.0.1 fetched in 210ms<br> 1654 http fetch GET 200 <a href="https://registry.npmjs.org/ignore" rel="nofollow">https://registry.npmjs.org/ignore</a> 194ms<br> 1655 http fetch GET 304 <a href="https://registry.npmjs.org/slash" rel="nofollow">https://registry.npmjs.org/slash</a> 76ms (from cache)<br> 1656 http fetch GET 200 <a href="https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz" rel="nofollow">https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz</a> 103ms<br> 1657 silly pacote range manifest for ignore@^5.1.4 fetched in 309ms<br> 1658 silly pacote range manifest for ajv@^6.12.5 fetched in 5ms<br> 1659 silly pacote range manifest for @types/json-schema@^7.0.6 fetched in 2ms<br> 1660 http fetch GET 200 <a href="https://registry.npmjs.org/randombytes" rel="nofollow">https://registry.npmjs.org/randombytes</a> 108ms<br> 1661 http fetch GET 200 <a href="https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/slash/-/slash-3.0.0.tgz</a> 195ms<br> 1662 silly pacote range manifest for slash@^3.0.0 fetched in 289ms<br> 1663 http fetch GET 200 <a href="https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz</a> 120ms<br> 1664 silly pacote range manifest for randombytes@^2.1.0 fetched in 242ms<br> 1665 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-preset-default" rel="nofollow">https://registry.npmjs.org/cssnano-preset-default</a> 155ms<br> 1666 http fetch GET 200 <a href="https://registry.npmjs.org/is-resolvable" rel="nofollow">https://registry.npmjs.org/is-resolvable</a> 83ms<br> 1667 http fetch GET 200 <a href="https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz</a> 71ms<br> 1668 silly pacote range manifest for is-resolvable@^1.1.0 fetched in 176ms<br> 1669 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.3.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.3.tgz</a> 121ms<br> 1670 silly pacote range manifest for cssnano-preset-default@^5.1.3 fetched in 288ms<br> 1671 silly pacote range manifest for icss-utils@^5.0.0 fetched in 6ms<br> 1672 http fetch GET 304 <a href="https://registry.npmjs.org/find-up" rel="nofollow">https://registry.npmjs.org/find-up</a> 99ms (from cache)<br> 1673 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" rel="nofollow">https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz</a> 1286ms<br> 1674 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-parser" rel="nofollow">https://registry.npmjs.org/postcss-selector-parser</a> 97ms<br> 1675 silly pacote range manifest for @nodelib/fs.stat@^2.0.2 fetched in 1413ms<br> 1676 http fetch GET 200 <a href="https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz</a> 98ms<br> 1677 http fetch GET 200 <a href="https://registry.npmjs.org/source-list-map" rel="nofollow">https://registry.npmjs.org/source-list-map</a> 82ms<br> 1678 silly pacote range manifest for find-up@^4.0.0 fetched in 219ms<br> 1679 silly pacote range manifest for source-map@~0.6.1 fetched in 4ms<br> 1680 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz" rel="nofollow">https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz</a> 152ms<br> 1681 silly pacote range manifest for postcss-selector-parser@^6.0.4 fetched in 259ms<br> 1682 http fetch GET 304 <a href="https://registry.npmjs.org/source-map-resolve" rel="nofollow">https://registry.npmjs.org/source-map-resolve</a> 69ms (from cache)<br> 1683 http fetch GET 200 <a href="https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz</a> 104ms<br> 1684 silly pacote range manifest for source-list-map@^2.0.0 fetched in 196ms<br> 1685 silly pacote range manifest for tapable@^2.2.0 fetched in 2ms<br> 1686 http fetch GET 304 <a href="https://registry.npmjs.org/pify" rel="nofollow">https://registry.npmjs.org/pify</a> 68ms (from cache)<br> 1687 silly pacote range manifest for pify@^2.3.0 fetched in 70ms<br> 1688 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz" rel="nofollow">https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz</a> 95ms<br> 1689 silly pacote range manifest for source-map-resolve@^0.6.0 fetched in 175ms<br> 1690 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fsource-list-map" rel="nofollow">https://registry.npmjs.org/@types%2fsource-list-map</a> 154ms<br> 1691 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fparse-json" rel="nofollow">https://registry.npmjs.org/@types%2fparse-json</a> 100ms (from cache)<br> 1692 http fetch GET 200 <a href="https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz</a> 6ms (from cache)<br> 1693 http fetch GET 200 <a href="https://registry.npmjs.org/is-what" rel="nofollow">https://registry.npmjs.org/is-what</a> 154ms<br> 1694 silly pacote range manifest for @types/parse-json@^4.0.0 fetched in 117ms<br> 1695 http fetch GET 200 <a href="https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz</a> 129ms<br> 1696 http fetch GET 200 <a href="https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz" rel="nofollow">https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz</a> 110ms<br> 1697 http fetch GET 200 <a href="https://registry.npmjs.org/import-fresh" rel="nofollow">https://registry.npmjs.org/import-fresh</a> 109ms<br> 1698 silly pacote range manifest for @types/source-list-map@* fetched in 303ms<br> 1699 silly pacote range manifest for is-what@^3.12.0 fetched in 279ms<br> 1700 http fetch GET 200 <a href="https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" rel="nofollow">https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz</a> 100ms<br> 1701 silly pacote range manifest for import-fresh@^3.2.1 fetched in 220ms<br> 1702 http fetch GET 304 <a href="https://registry.npmjs.org/parse-json" rel="nofollow">https://registry.npmjs.org/parse-json</a> 112ms (from cache)<br> 1703 http fetch GET 304 <a href="https://registry.npmjs.org/path-type" rel="nofollow">https://registry.npmjs.org/path-type</a> 106ms (from cache)<br> 1704 http fetch GET 200 <a href="https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz</a> 83ms<br> 1705 http fetch GET 200 <a href="https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" rel="nofollow">https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz</a> 88ms<br> 1706 silly pacote range manifest for path-type@^4.0.0 fetched in 203ms<br> 1707 silly pacote range manifest for parse-json@^5.0.0 fetched in 216ms<br> 1708 silly pacote range manifest for semver@^5.6.0 fetched in 6ms<br> 1709 http fetch GET 200 <a href="https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/pify/-/pify-4.0.1.tgz</a> 72ms<br> 1710 silly pacote range manifest for pify@^4.0.1 fetched in 82ms<br> 1711 http fetch GET 200 <a href="https://registry.npmjs.org/prr" rel="nofollow">https://registry.npmjs.org/prr</a> 96ms<br> 1712 http fetch GET 200 <a href="https://registry.npmjs.org/yaml" rel="nofollow">https://registry.npmjs.org/yaml</a> 233ms<br> 1713 http fetch GET 200 <a href="https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" rel="nofollow">https://registry.npmjs.org/debug/-/debug-3.2.7.tgz</a> 90ms<br> 1714 http fetch GET 200 <a href="https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/prr/-/prr-1.0.1.tgz</a> 71ms<br> 1715 silly pacote range manifest for debug@^3.2.6 fetched in 105ms<br> 1716 silly pacote range manifest for iconv-lite@^0.4.4 fetched in 4ms<br> 1717 silly pacote range manifest for sax@^1.2.4 fetched in 2ms<br> 1718 silly pacote range manifest for prr@~1.0.1 fetched in 184ms<br> 1719 silly pacote range manifest for browserslist@^4.12.0 fetched in 3ms<br> 1720 silly pacote range manifest for caniuse-lite@^1.0.30001109 fetched in 4ms<br> 1721 http fetch GET 304 <a href="https://registry.npmjs.org/num2fraction" rel="nofollow">https://registry.npmjs.org/num2fraction</a> 73ms (from cache)<br> 1722 silly pacote range manifest for num2fraction@^1.2.2 fetched in 77ms<br> 1723 silly pacote range manifest for postcss@^7.0.32 fetched in 5ms<br> 1724 silly pacote range manifest for postcss@^7.0.6 fetched in 5ms<br> 1725 http fetch GET 304 <a href="https://registry.npmjs.org/normalize-range" rel="nofollow">https://registry.npmjs.org/normalize-range</a> 96ms (from cache)<br> 1726 silly pacote range manifest for normalize-range@^0.1.2 fetched in 99ms<br> 1727 silly pacote range manifest for postcss@^7.0.5 fetched in 2ms<br> 1728 silly pacote range manifest for postcss@^7.0.2 fetched in 3ms<br> 1729 silly pacote range manifest for postcss-selector-parser@^6.0.2 fetched in 5ms<br> 1730 silly pacote range manifest for chalk@^2.4.2 fetched in 3ms<br> 1731 http fetch GET 200 <a href="https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" rel="nofollow">https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz</a> 185ms<br> 1732 silly pacote range manifest for yaml@^1.10.0 fetched in 427ms<br> 1733 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz</a> 136ms<br> 1734 silly pacote range manifest for postcss-selector-parser@^5.0.0-rc.4 fetched in 147ms<br> 1735 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-values-parser" rel="nofollow">https://registry.npmjs.org/postcss-values-parser</a> 127ms<br> 1736 silly pacote range manifest for postcss@^7.0.14 fetched in 4ms<br> 1737 http fetch GET 200 <a href="https://registry.npmjs.org/@csstools%2fconvert-colors" rel="nofollow">https://registry.npmjs.org/@csstools%2fconvert-colors</a> 163ms<br> 1738 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz</a> 114ms<br> 1739 silly pacote range manifest for postcss-values-parser@^2.0.1 fetched in 128ms<br> 1740 silly pacote range manifest for postcss-selector-parser@^5.0.0-rc.3 fetched in 5ms<br> 1741 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz</a> 151ms<br> 1742 silly pacote range manifest for postcss-values-parser@^2.0.0 fetched in 288ms<br> 1743 silly pacote range manifest for safer-buffer@&gt;= 2.1.2 &lt; 3.0.0 fetched in 2ms<br> 1744 http fetch GET 200 <a href="https://registry.npmjs.org/regex-parser" rel="nofollow">https://registry.npmjs.org/regex-parser</a> 77ms<br> 1745 http fetch GET 200 <a href="https://registry.npmjs.org/css/-/css-2.2.4.tgz" rel="nofollow">https://registry.npmjs.org/css/-/css-2.2.4.tgz</a> 85ms<br> 1746 silly pacote range manifest for css@^2.0.0 fetched in 97ms<br> 1747 http fetch GET 200 <a href="https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz" rel="nofollow">https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz</a> 144ms<br> 1748 http fetch GET 304 <a href="https://registry.npmjs.org/mime-db" rel="nofollow">https://registry.npmjs.org/mime-db</a> 105ms (from cache)<br> 1749 silly pacote range manifest for regex-parser@^2.2.11 fetched in 233ms<br> 1750 silly pacote version manifest for [email protected] fetched in 110ms<br> 1751 http fetch GET 304 <a href="https://registry.npmjs.org/is-plain-object" rel="nofollow">https://registry.npmjs.org/is-plain-object</a> 78ms (from cache)<br> 1752 silly pacote range manifest for is-plain-object@^2.0.4 fetched in 81ms<br> 1753 http fetch GET 200 <a href="https://registry.npmjs.org/fs-monkey" rel="nofollow">https://registry.npmjs.org/fs-monkey</a> 85ms<br> 1754 http fetch GET 200 <a href="https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz</a> 77ms<br> 1755 http fetch GET 304 <a href="https://registry.npmjs.org/kind-of" rel="nofollow">https://registry.npmjs.org/kind-of</a> 86ms (from cache)<br> 1756 silly pacote range manifest for kind-of@^6.0.2 fetched in 88ms<br> 1757 silly pacote version manifest for [email protected] fetched in 175ms<br> 1758 http fetch GET 304 <a href="https://registry.npmjs.org/punycode" rel="nofollow">https://registry.npmjs.org/punycode</a> 98ms (from cache)<br> 1759 silly pacote range manifest for punycode@^2.1.0 fetched in 102ms<br> 1760 silly pacote range manifest for anymatch@^2.0.0 fetched in 7ms<br> 1761 http fetch GET 200 <a href="https://registry.npmjs.org/shallow-clone" rel="nofollow">https://registry.npmjs.org/shallow-clone</a> 119ms<br> 1762 http fetch GET 200 <a href="https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" rel="nofollow">https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz</a> 88ms<br> 1763 silly pacote range manifest for shallow-clone@^3.0.0 fetched in 224ms<br> 1764 http fetch GET 304 <a href="https://registry.npmjs.org/async-each" rel="nofollow">https://registry.npmjs.org/async-each</a> 116ms (from cache)<br> 1765 silly pacote range manifest for braces@^2.3.2 fetched in 5ms<br> 1766 silly pacote range manifest for async-each@^1.0.1 fetched in 123ms<br> 1767 silly pacote range manifest for glob-parent@^3.1.0 fetched in 5ms<br> 1768 silly pacote range manifest for inherits@^2.0.3 fetched in 2ms<br> 1769 silly pacote range manifest for is-binary-path@^1.0.0 fetched in 2ms<br> 1770 silly pacote range manifest for is-glob@^4.0.0 fetched in 3ms<br> 1771 silly pacote range manifest for readdirp@^2.2.1 fetched in 3ms<br> 1772 silly pacote range manifest for fsevents@^1.2.7 fetched in 4ms<br> 1773 warn deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.<br> 1774 http fetch GET 304 <a href="https://registry.npmjs.org/upath" rel="nofollow">https://registry.npmjs.org/upath</a> 94ms (from cache)<br> 1775 silly pacote range manifest for upath@^1.1.1 fetched in 99ms<br> 1776 http fetch GET 200 <a href="https://registry.npmjs.org/array-flatten" rel="nofollow">https://registry.npmjs.org/array-flatten</a> 97ms<br> 1777 http fetch GET 200 <a href="https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" rel="nofollow">https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz</a> 82ms<br> 1778 http fetch GET 200 <a href="https://registry.npmjs.org/deep-equal" rel="nofollow">https://registry.npmjs.org/deep-equal</a> 91ms<br> 1779 silly pacote range manifest for array-flatten@^2.1.0 fetched in 198ms<br> 1780 http fetch GET 200 <a href="https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz</a> 72ms<br> 1781 silly pacote range manifest for deep-equal@^1.0.1 fetched in 172ms<br> 1782 http fetch GET 200 <a href="https://registry.npmjs.org/dns-equal" rel="nofollow">https://registry.npmjs.org/dns-equal</a> 69ms<br> 1783 http fetch GET 200 <a href="https://registry.npmjs.org/dns-txt" rel="nofollow">https://registry.npmjs.org/dns-txt</a> 86ms<br> 1784 http fetch GET 200 <a href="https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz</a> 103ms<br> 1785 silly pacote range manifest for dns-equal@^1.0.0 fetched in 183ms<br> 1786 http fetch GET 200 <a href="https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz</a> 82ms<br> 1787 silly pacote range manifest for dns-txt@^2.0.2 fetched in 203ms<br> 1788 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns" rel="nofollow">https://registry.npmjs.org/multicast-dns</a> 92ms<br> 1789 http fetch GET 200 <a href="https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz</a> 1249ms<br> 1790 silly pacote range manifest for @csstools/convert-colors@^1.4.0 fetched in 1419ms<br> 1791 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns-service-types" rel="nofollow">https://registry.npmjs.org/multicast-dns-service-types</a> 89ms<br> 1792 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz" rel="nofollow">https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz</a> 103ms<br> 1793 silly pacote range manifest for multicast-dns@^6.0.1 fetched in 208ms<br> 1794 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz</a> 117ms<br> 1795 http fetch GET 304 <a href="https://registry.npmjs.org/mimic-fn" rel="nofollow">https://registry.npmjs.org/mimic-fn</a> 88ms (from cache)<br> 1796 silly pacote range manifest for multicast-dns-service-types@^1.1.0 fetched in 215ms<br> 1797 silly pacote range manifest for accepts@~1.3.5 fetched in 1ms<br> 1798 http fetch GET 200 <a href="https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz</a> 85ms<br> 1799 silly pacote version manifest for [email protected] fetched in 101ms<br> 1800 http fetch GET 200 <a href="https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz</a> 112ms<br> 1801 silly pacote range manifest for mimic-fn@^3.1.0 fetched in 211ms<br> 1802 http fetch GET 200 <a href="https://registry.npmjs.org/compressible" rel="nofollow">https://registry.npmjs.org/compressible</a> 88ms<br> 1803 http fetch GET 200 <a href="https://registry.npmjs.org/on-headers" rel="nofollow">https://registry.npmjs.org/on-headers</a> 126ms<br> 1804 http fetch GET 200 <a href="https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" rel="nofollow">https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz</a> 74ms<br> 1805 silly pacote range manifest for compressible@~2.0.16 fetched in 177ms<br> 1806 http fetch GET 200 <a href="https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" rel="nofollow">https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz</a> 9ms (from cache)<br> 1807 silly pacote version manifest for [email protected] fetched in 52ms<br> 1808 http fetch GET 200 <a href="https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz</a> 93ms<br> 1809 silly pacote range manifest for on-headers@~1.0.2 fetched in 228ms<br> 1810 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fglob" rel="nofollow">https://registry.npmjs.org/@types%2fglob</a> 93ms (from cache)<br> 1811 http fetch GET 200 <a href="https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz" rel="nofollow">https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz</a> 7ms (from cache)<br> 1812 http fetch GET 200 <a href="https://registry.npmjs.org/vary" rel="nofollow">https://registry.npmjs.org/vary</a> 120ms<br> 1813 silly pacote range manifest for @types/glob@^7.1.1 fetched in 114ms<br> 1814 http fetch GET 200 <a href="https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/vary/-/vary-1.1.2.tgz</a> 93ms<br> 1815 http fetch GET 200 <a href="https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" rel="nofollow">https://registry.npmjs.org/globby/-/globby-6.1.0.tgz</a> 96ms<br> 1816 silly pacote range manifest for vary@~1.1.2 fetched in 235ms<br> 1817 silly pacote range manifest for globby@^6.1.0 fetched in 115ms<br> 1818 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-in-cwd" rel="nofollow">https://registry.npmjs.org/is-path-in-cwd</a> 76ms<br> 1819 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-cwd" rel="nofollow">https://registry.npmjs.org/is-path-cwd</a> 92ms<br> 1820 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz</a> 87ms<br> 1821 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz</a> 78ms<br> 1822 silly pacote range manifest for is-path-in-cwd@^2.0.0 fetched in 174ms<br> 1823 silly pacote range manifest for is-path-cwd@^2.0.0 fetched in 184ms<br> 1824 silly pacote range manifest for rimraf@^2.6.3 fetched in 3ms<br> 1825 http fetch GET 200 <a href="https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz</a> 75ms<br> 1826 http fetch GET 200 <a href="https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz</a> 88ms<br> 1827 silly pacote range manifest for pkg-dir@^3.0.0 fetched in 90ms<br> 1828 silly pacote range manifest for p-map@^2.0.0 fetched in 104ms<br> 1829 silly pacote range manifest for http-proxy@^1.17.0 fetched in 3ms<br> 1830 silly pacote range manifest for lodash@^4.17.11 fetched in 3ms<br> 1831 silly pacote range manifest for micromatch@^3.1.10 fetched in 4ms<br> 1832 silly pacote range manifest for accepts@~1.3.7 fetched in 4ms<br> 1833 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-cwd" rel="nofollow">https://registry.npmjs.org/resolve-cwd</a> 86ms<br> 1834 http fetch GET 200 <a href="https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz</a> 79ms<br> 1835 silly pacote version manifest for [email protected] fetched in 92ms<br> 1836 http fetch GET 200 <a href="https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz" rel="nofollow">https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz</a> 7ms (from cache)<br> 1837 silly pacote version manifest for [email protected] fetched in 20ms<br> 1838 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz</a> 64ms<br> 1839 silly pacote range manifest for resolve-cwd@^2.0.0 fetched in 166ms<br> 1840 http fetch GET 200 <a href="https://registry.npmjs.org/map-age-cleaner" rel="nofollow">https://registry.npmjs.org/map-age-cleaner</a> 1198ms<br> 1841 http fetch GET 200 <a href="https://registry.npmjs.org/content-disposition" rel="nofollow">https://registry.npmjs.org/content-disposition</a> 113ms<br> 1842 http fetch GET 200 <a href="https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz" rel="nofollow">https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz</a> 81ms<br> 1843 silly pacote version manifest for [email protected] fetched in 95ms<br> 1844 http fetch GET 200 <a href="https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz" rel="nofollow">https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz</a> 86ms<br> 1845 silly pacote range manifest for map-age-cleaner@^0.1.3 fetched in 1291ms<br> 1846 http fetch GET 200 <a href="https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz" rel="nofollow">https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz</a> 90ms<br> 1847 http fetch GET 200 <a href="https://registry.npmjs.org/cookie-signature" rel="nofollow">https://registry.npmjs.org/cookie-signature</a> 82ms<br> 1848 silly pacote version manifest for [email protected] fetched in 220ms<br> 1849 http fetch GET 200 <a href="https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz</a> 3ms (from cache)<br> 1850 http fetch GET 200 <a href="https://registry.npmjs.org/etag" rel="nofollow">https://registry.npmjs.org/etag</a> 84ms<br> 1851 silly pacote range manifest for finalhandler@~1.1.2 fetched in 13ms<br> 1852 http fetch GET 200 <a href="https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" rel="nofollow">https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz</a> 83ms<br> 1853 http fetch GET 200 <a href="https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" rel="nofollow">https://registry.npmjs.org/etag/-/etag-1.8.1.tgz</a> 79ms<br> 1854 silly pacote version manifest for [email protected] fetched in 183ms<br> 1855 http fetch GET 200 <a href="https://registry.npmjs.org/fresh" rel="nofollow">https://registry.npmjs.org/fresh</a> 80ms<br> 1856 silly pacote range manifest for etag@~1.8.1 fetched in 176ms<br> 1857 http fetch GET 200 <a href="https://registry.npmjs.org/merge-descriptors" rel="nofollow">https://registry.npmjs.org/merge-descriptors</a> 80ms<br> 1858 http fetch GET 200 <a href="https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" rel="nofollow">https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz</a> 75ms<br> 1859 silly pacote version manifest for [email protected] fetched in 174ms<br> 1860 http fetch GET 200 <a href="https://registry.npmjs.org/methods" rel="nofollow">https://registry.npmjs.org/methods</a> 99ms<br> 1861 http fetch GET 200 <a href="https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz</a> 69ms<br> 1862 silly pacote version manifest for [email protected] fetched in 164ms<br> 1863 http fetch GET 200 <a href="https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/methods/-/methods-1.1.2.tgz</a> 76ms<br> 1864 silly pacote range manifest for methods@~1.1.2 fetched in 189ms<br> 1865 http fetch GET 200 <a href="https://registry.npmjs.org/path-to-regexp" rel="nofollow">https://registry.npmjs.org/path-to-regexp</a> 102ms<br> 1866 silly pacote range manifest for range-parser@~1.2.1 fetched in 6ms<br> 1867 http fetch GET 200 <a href="https://registry.npmjs.org/proxy-addr" rel="nofollow">https://registry.npmjs.org/proxy-addr</a> 86ms<br> 1868 http fetch GET 200 <a href="https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" rel="nofollow">https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz</a> 87ms<br> 1869 silly pacote version manifest for [email protected] fetched in 207ms<br> 1870 http fetch GET 200 <a href="https://registry.npmjs.org/send" rel="nofollow">https://registry.npmjs.org/send</a> 123ms<br> 1871 http fetch GET 200 <a href="https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" rel="nofollow">https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz</a> 93ms<br> 1872 silly pacote range manifest for proxy-addr@~2.0.5 fetched in 193ms<br> 1873 silly pacote range manifest for type-is@~1.6.18 fetched in 3ms<br> 1874 http fetch GET 200 <a href="https://registry.npmjs.org/send/-/send-0.17.1.tgz" rel="nofollow">https://registry.npmjs.org/send/-/send-0.17.1.tgz</a> 97ms<br> 1875 http fetch GET 200 <a href="https://registry.npmjs.org/serve-static" rel="nofollow">https://registry.npmjs.org/serve-static</a> 137ms<br> 1876 silly pacote version manifest for [email protected] fetched in 243ms<br> 1877 http fetch GET 200 <a href="https://registry.npmjs.org/default-gateway" rel="nofollow">https://registry.npmjs.org/default-gateway</a> 114ms<br> 1878 http fetch GET 200 <a href="https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz" rel="nofollow">https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz</a> 81ms<br> 1879 http fetch GET 200 <a href="https://registry.npmjs.org/ipaddr.js" rel="nofollow">https://registry.npmjs.org/ipaddr.js</a> 79ms<br> 1880 silly pacote version manifest for [email protected] fetched in 230ms<br> 1881 http fetch GET 200 <a href="https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz</a> 70ms<br> 1882 silly pacote range manifest for default-gateway@^4.2.0 fetched in 193ms<br> 1883 silly pacote range manifest for ajv@^6.1.0 fetched in 4ms<br> 1884 http fetch GET 200 <a href="https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz</a> 87ms<br> 1885 http fetch GET 200 <a href="https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz</a> 80ms<br> 1886 silly pacote range manifest for ipaddr.js@^1.9.0 fetched in 180ms<br> 1887 silly pacote range manifest for is-wsl@^1.1.0 fetched in 94ms<br> 1888 silly pacote range manifest for ajv-keywords@^3.1.0 fetched in 5ms<br> 1889 silly pacote range manifest for debug@^3.1.1 fetched in 2ms<br> 1890 silly pacote range manifest for mkdirp@^0.5.5 fetched in 2ms<br> 1891 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-errors" rel="nofollow">https://registry.npmjs.org/ajv-errors</a> 87ms<br> 1892 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz</a> 77ms<br> 1893 silly pacote range manifest for ajv-errors@^1.0.0 fetched in 176ms<br> 1894 http fetch GET 200 <a href="https://registry.npmjs.org/async" rel="nofollow">https://registry.npmjs.org/async</a> 142ms<br> 1895 http fetch GET 200 <a href="https://registry.npmjs.org/node-forge" rel="nofollow">https://registry.npmjs.org/node-forge</a> 139ms<br> 1896 http fetch GET 200 <a href="https://registry.npmjs.org/batch" rel="nofollow">https://registry.npmjs.org/batch</a> 101ms<br> 1897 http fetch GET 200 <a href="https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" rel="nofollow">https://registry.npmjs.org/batch/-/batch-0.6.1.tgz</a> 74ms<br> 1898 silly pacote version manifest for [email protected] fetched in 195ms<br> 1899 http fetch GET 200 <a href="https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" rel="nofollow">https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz</a> 89ms<br> 1900 silly pacote range manifest for http-errors@~1.6.2 fetched in 100ms<br> 1901 silly pacote range manifest for mime-types@~2.1.17 fetched in 2ms<br> 1902 silly pacote range manifest for parseurl@~1.3.2 fetched in 2ms<br> 1903 http fetch GET 200 <a href="https://registry.npmjs.org/async/-/async-2.6.3.tgz" rel="nofollow">https://registry.npmjs.org/async/-/async-2.6.3.tgz</a> 269ms<br> 1904 silly pacote range manifest for async@^2.6.2 fetched in 427ms<br> 1905 silly pacote range manifest for uuid@^3.4.0 fetched in 2ms<br> 1906 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 <a href="https://v8.dev/blog/math-random" rel="nofollow">https://v8.dev/blog/math-random</a> for details.<br> 1907 http fetch GET 200 <a href="https://registry.npmjs.org/faye-websocket" rel="nofollow">https://registry.npmjs.org/faye-websocket</a> 85ms<br> 1908 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-driver" rel="nofollow">https://registry.npmjs.org/websocket-driver</a> 85ms<br> 1909 http fetch GET 200 <a href="https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz" rel="nofollow">https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz</a> 85ms<br> 1910 silly pacote range manifest for faye-websocket@^0.11.3 fetched in 191ms<br> 1911 silly pacote range manifest for ansi-regex@^2.0.0 fetched in 8ms<br> 1912 silly pacote range manifest for has-flag@^3.0.0 fetched in 3ms<br> 1913 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" rel="nofollow">https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz</a> 101ms<br> 1914 silly pacote range manifest for websocket-driver@^0.7.4 fetched in 207ms<br> 1915 http fetch GET 200 <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz" rel="nofollow">https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz</a> 523ms<br> 1916 silly pacote range manifest for node-forge@^0.10.0 fetched in 676ms<br> 1917 http fetch GET 200 <a href="https://registry.npmjs.org/handle-thing" rel="nofollow">https://registry.npmjs.org/handle-thing</a> 89ms<br> 1918 http fetch GET 200 <a href="https://registry.npmjs.org/http-deceiver" rel="nofollow">https://registry.npmjs.org/http-deceiver</a> 100ms<br> 1919 http fetch GET 200 <a href="https://registry.npmjs.org/select-hose" rel="nofollow">https://registry.npmjs.org/select-hose</a> 69ms<br> 1920 http fetch GET 200 <a href="https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz</a> 73ms<br> 1921 silly pacote range manifest for handle-thing@^2.0.0 fetched in 169ms<br> 1922 http fetch GET 200 <a href="https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" rel="nofollow">https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz</a> 65ms<br> 1923 silly pacote range manifest for http-deceiver@^1.2.7 fetched in 171ms<br> 1924 http fetch GET 200 <a href="https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz</a> 76ms<br> 1925 silly pacote range manifest for select-hose@^2.0.0 fetched in 152ms<br> 1926 silly pacote range manifest for mime@^2.4.4 fetched in 1ms<br> 1927 silly pacote range manifest for mkdirp@^0.5.1 fetched in 1ms<br> 1928 http fetch GET 200 <a href="https://registry.npmjs.org/spdy-transport" rel="nofollow">https://registry.npmjs.org/spdy-transport</a> 89ms<br> 1929 http fetch GET 200 <a href="https://registry.npmjs.org/memory-fs" rel="nofollow">https://registry.npmjs.org/memory-fs</a> 74ms<br> 1930 http fetch GET 200 <a href="https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" rel="nofollow">https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz</a> 81ms<br> 1931 silly pacote version manifest for [email protected] fetched in 85ms<br> 1932 http fetch GET 200 <a href="https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz</a> 99ms<br> 1933 silly pacote range manifest for spdy-transport@^3.0.0 fetched in 202ms<br> 1934 http fetch GET 200 <a href="https://registry.npmjs.org/querystring" rel="nofollow">https://registry.npmjs.org/querystring</a> 71ms<br> 1935 http fetch GET 200 <a href="https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz" rel="nofollow">https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz</a> 119ms<br> 1936 silly pacote range manifest for memory-fs@^0.4.1 fetched in 199ms<br> 1937 http fetch GET 200 <a href="https://registry.npmjs.org/eventsource" rel="nofollow">https://registry.npmjs.org/eventsource</a> 81ms<br> 1938 http fetch GET 200 <a href="https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" rel="nofollow">https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz</a> 68ms<br> 1939 http fetch GET 200 <a href="https://registry.npmjs.org/json3" rel="nofollow">https://registry.npmjs.org/json3</a> 72ms<br> 1940 silly pacote version manifest for [email protected] fetched in 154ms<br> 1941 http fetch GET 200 <a href="https://registry.npmjs.org/json3/-/json3-3.3.3.tgz" rel="nofollow">https://registry.npmjs.org/json3/-/json3-3.3.3.tgz</a> 101ms<br> 1942 http fetch GET 200 <a href="https://registry.npmjs.org/url-parse" rel="nofollow">https://registry.npmjs.org/url-parse</a> 105ms<br> 1943 silly pacote range manifest for json3@^3.3.3 fetched in 191ms<br> 1944 silly pacote range manifest for cliui@^5.0.0 fetched in 3ms<br> 1945 silly pacote range manifest for find-up@^3.0.0 fetched in 2ms<br> 1946 silly pacote range manifest for get-caller-file@^2.0.1 fetched in 2ms<br> 1947 http fetch GET 200 <a href="https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz</a> 167ms<br> 1948 silly pacote range manifest for eventsource@^1.0.7 fetched in 260ms<br> 1949 http fetch GET 200 <a href="https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz</a> 77ms<br> 1950 silly pacote range manifest for url-parse@^1.5.1 fetched in 193ms<br> 1951 silly pacote range manifest for string-width@^3.0.0 fetched in 6ms<br> 1952 http fetch GET 304 <a href="https://registry.npmjs.org/require-main-filename" rel="nofollow">https://registry.npmjs.org/require-main-filename</a> 88ms (from cache)<br> 1953 silly pacote range manifest for require-main-filename@^2.0.0 fetched in 90ms<br> 1954 silly pacote range manifest for y18n@^4.0.0 fetched in 2ms<br> 1955 silly pacote range manifest for yargs-parser@^13.1.2 fetched in 2ms<br> 1956 silly pacote range manifest for ansi-colors@^3.0.0 fetched in 6ms<br> 1957 silly pacote range manifest for uuid@^3.3.2 fetched in 2ms<br> 1958 http fetch GET 304 <a href="https://registry.npmjs.org/set-blocking" rel="nofollow">https://registry.npmjs.org/set-blocking</a> 73ms (from cache)<br> 1959 silly pacote range manifest for set-blocking@^2.0.0 fetched in 74ms<br> 1960 http fetch GET 304 <a href="https://registry.npmjs.org/which-module" rel="nofollow">https://registry.npmjs.org/which-module</a> 77ms (from cache)<br> 1961 silly pacote range manifest for which-module@^2.0.0 fetched in 79ms<br> 1962 http fetch GET 200 <a href="https://registry.npmjs.org/async-limiter" rel="nofollow">https://registry.npmjs.org/async-limiter</a> 64ms<br> 1963 http fetch GET 304 <a href="https://registry.npmjs.org/color-convert" rel="nofollow">https://registry.npmjs.org/color-convert</a> 72ms (from cache)<br> 1964 silly pacote range manifest for color-convert@^2.0.1 fetched in 74ms<br> 1965 http fetch GET 304 <a href="https://registry.npmjs.org/onetime" rel="nofollow">https://registry.npmjs.org/onetime</a> 64ms (from cache)<br> 1966 silly pacote range manifest for onetime@^5.1.0 fetched in 66ms<br> 1967 http fetch GET 200 <a href="https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz</a> 66ms<br> 1968 silly pacote range manifest for async-limiter@~1.0.0 fetched in 134ms<br> 1969 http fetch GET 304 <a href="https://registry.npmjs.org/signal-exit" rel="nofollow">https://registry.npmjs.org/signal-exit</a> 69ms (from cache)<br> 1970 silly pacote range manifest for signal-exit@^3.0.2 fetched in 70ms<br> 1971 http fetch GET 304 <a href="https://registry.npmjs.org/os-tmpdir" rel="nofollow">https://registry.npmjs.org/os-tmpdir</a> 128ms (from cache)<br> 1972 silly pacote range manifest for os-tmpdir@~1.0.2 fetched in 131ms<br> 1973 http fetch GET 200 <a href="https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz" rel="nofollow">https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz</a> 100ms<br> 1974 silly pacote range manifest for @types/estree@* fetched in 108ms<br> 1975 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2feslint" rel="nofollow">https://registry.npmjs.org/@types%2feslint</a> 134ms<br> 1976 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-numbers" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-numbers</a> 90ms<br> 1977 http fetch GET 200 <a href="https://registry.npmjs.org/@types/eslint/-/eslint-7.2.13.tgz" rel="nofollow">https://registry.npmjs.org/@types/eslint/-/eslint-7.2.13.tgz</a> 116ms<br> 1978 silly pacote range manifest for @types/eslint@* fetched in 264ms<br> 1979 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode</a> 145ms<br> 1980 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz</a> 83ms<br> 1981 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 182ms<br> 1982 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz</a> 118ms<br> 1983 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 280ms<br> 1984 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer</a> 323ms<br> 1985 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section</a> 295ms<br> 1986 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-gen" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-gen</a> 255ms<br> 1987 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz</a> 108ms<br> 1988 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz</a> 105ms<br> 1989 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 415ms<br> 1990 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 452ms<br> 1991 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz</a> 88ms<br> 1992 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 358ms<br> 1993 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-opt" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-opt</a> 193ms<br> 1994 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwast-printer" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwast-printer</a> 213ms<br> 1995 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error</a> 205ms<br> 1996 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz</a> 85ms<br> 1997 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz</a> 109ms<br> 1998 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 303ms<br> 1999 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 308ms<br> 2000 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz</a> 116ms<br> 2001 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 333ms<br> 2002 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fieee754" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fieee754</a> 230ms<br> 2003 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fleb128" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fleb128</a> 233ms<br> 2004 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2futf8" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2futf8</a> 155ms<br> 2005 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz</a> 72ms<br> 2006 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz</a> 67ms<br> 2007 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 306ms<br> 2008 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 231ms<br> 2009 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz</a> 75ms<br> 2010 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 313ms<br> 2011 silly pacote range manifest for source-list-map@^2.0.1 fetched in 1ms<br> 2012 http fetch GET 200 <a href="https://registry.npmjs.org/estraverse" rel="nofollow">https://registry.npmjs.org/estraverse</a> 79ms<br> 2013 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.2.tgz" rel="nofollow">https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.2.tgz</a> 74ms<br> 2014 http fetch GET 200 <a href="https://registry.npmjs.org/esrecurse" rel="nofollow">https://registry.npmjs.org/esrecurse</a> 85ms<br> 2015 silly pacote range manifest for jest-worker@^27.0.2 fetched in 80ms<br> 2016 http fetch GET 200 <a href="https://registry.npmjs.org/terser/-/terser-5.7.0.tgz" rel="nofollow">https://registry.npmjs.org/terser/-/terser-5.7.0.tgz</a> 6ms (from cache)<br> 2017 silly pacote range manifest for terser@^5.7.0 fetched in 10ms<br> 2018 http fetch GET 200 <a href="https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz</a> 94ms<br> 2019 silly pacote range manifest for esrecurse@^4.3.0 fetched in 192ms<br> 2020 http fetch GET 200 <a href="https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz</a> 131ms<br> 2021 http fetch GET 304 <a href="https://registry.npmjs.org/base64-js" rel="nofollow">https://registry.npmjs.org/base64-js</a> 119ms (from cache)<br> 2022 silly pacote range manifest for base64-js@^1.3.1 fetched in 122ms<br> 2023 silly pacote range manifest for estraverse@^4.1.1 fetched in 223ms<br> 2024 http fetch GET 304 <a href="https://registry.npmjs.org/string_decoder" rel="nofollow">https://registry.npmjs.org/string_decoder</a> 67ms (from cache)<br> 2025 http fetch GET 304 <a href="https://registry.npmjs.org/ieee754" rel="nofollow">https://registry.npmjs.org/ieee754</a> 99ms (from cache)<br> 2026 silly pacote range manifest for string_decoder@^1.1.1 fetched in 78ms<br> 2027 silly pacote range manifest for ieee754@^1.1.13 fetched in 110ms<br> 2028 http fetch GET 304 <a href="https://registry.npmjs.org/util-deprecate" rel="nofollow">https://registry.npmjs.org/util-deprecate</a> 83ms (from cache)<br> 2029 silly pacote range manifest for util-deprecate@^1.0.1 fetched in 86ms<br> 2030 silly pacote range manifest for graceful-fs@^4.2.3 fetched in 1ms<br> 2031 http fetch GET 304 <a href="https://registry.npmjs.org/clone" rel="nofollow">https://registry.npmjs.org/clone</a> 67ms (from cache)<br> 2032 silly pacote range manifest for clone@^1.0.2 fetched in 68ms<br> 2033 http fetch GET 304 <a href="https://registry.npmjs.org/nopt" rel="nofollow">https://registry.npmjs.org/nopt</a> 83ms (from cache)<br> 2034 http fetch GET 304 <a href="https://registry.npmjs.org/env-paths" rel="nofollow">https://registry.npmjs.org/env-paths</a> 95ms (from cache)<br> 2035 silly pacote range manifest for nopt@^5.0.0 fetched in 84ms<br> 2036 silly pacote range manifest for env-paths@^2.2.0 fetched in 97ms<br> 2037 silly pacote range manifest for semver@^7.3.2 fetched in 3ms<br> 2038 http fetch GET 304 <a href="https://registry.npmjs.org/npmlog" rel="nofollow">https://registry.npmjs.org/npmlog</a> 104ms (from cache)<br> 2039 http fetch GET 304 <a href="https://registry.npmjs.org/request" rel="nofollow">https://registry.npmjs.org/request</a> 96ms (from cache)<br> 2040 silly pacote range manifest for npmlog@^4.1.2 fetched in 132ms<br> 2041 silly pacote range manifest for request@^2.88.2 fetched in 105ms<br> 2042 warn deprecated [email protected]: request has been deprecated, see <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#3142</a><br> 2043 http fetch GET 304 <a href="https://registry.npmjs.org/function-bind" rel="nofollow">https://registry.npmjs.org/function-bind</a> 104ms (from cache)<br> 2044 silly pacote range manifest for function-bind@^1.1.1 fetched in 107ms<br> 2045 silly pacote range manifest for minipass@^3.1.0 fetched in 1ms<br> 2046 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-sized" rel="nofollow">https://registry.npmjs.org/minipass-sized</a> 87ms (from cache)<br> 2047 silly pacote range manifest for minipass-sized@^1.0.3 fetched in 90ms<br> 2048 http fetch GET 304 <a href="https://registry.npmjs.org/is-number" rel="nofollow">https://registry.npmjs.org/is-number</a> 105ms (from cache)<br> 2049 silly pacote range manifest for is-number@^7.0.0 fetched in 109ms<br> 2050 http fetch GET 304 <a href="https://registry.npmjs.org/http-cache-semantics" rel="nofollow">https://registry.npmjs.org/http-cache-semantics</a> 86ms (from cache)<br> 2051 silly pacote range manifest for http-cache-semantics@^4.1.0 fetched in 89ms<br> 2052 http fetch GET 304 <a href="https://registry.npmjs.org/http-proxy-agent" rel="nofollow">https://registry.npmjs.org/http-proxy-agent</a> 90ms (from cache)<br> 2053 silly pacote range manifest for http-proxy-agent@^4.0.1 fetched in 94ms<br> 2054 silly pacote range manifest for https-proxy-agent@^5.0.0 fetched in 4ms<br> 2055 http fetch GET 304 <a href="https://registry.npmjs.org/is-lambda" rel="nofollow">https://registry.npmjs.org/is-lambda</a> 91ms (from cache)<br> 2056 silly pacote range manifest for is-lambda@^1.0.1 fetched in 94ms<br> 2057 silly pacote range manifest for minipass-fetch@^1.3.2 fetched in 3ms<br> 2058 silly pacote range manifest for minipass-pipeline@^1.2.4 fetched in 3ms<br> 2059 http fetch GET 304 <a href="https://registry.npmjs.org/encoding" rel="nofollow">https://registry.npmjs.org/encoding</a> 1203ms (from cache)<br> 2060 silly pacote range manifest for encoding@^0.1.12 fetched in 1203ms<br> 2061 silly pacote range manifest for ssri@^8.0.0 fetched in 0ms<br> 2062 http fetch GET 304 <a href="https://registry.npmjs.org/agentkeepalive" rel="nofollow">https://registry.npmjs.org/agentkeepalive</a> 1230ms (from cache)<br> 2063 silly pacote range manifest for agentkeepalive@^4.1.3 fetched in 1234ms<br> 2064 silly pacote range manifest for graceful-fs@^4.2.0 fetched in 4ms<br> 2065 http fetch GET 200 <a href="https://registry.npmjs.org/jsonfile" rel="nofollow">https://registry.npmjs.org/jsonfile</a> 89ms<br> 2066 http fetch GET 200 <a href="https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz</a> 81ms<br> 2067 silly pacote range manifest for jsonfile@^4.0.0 fetched in 173ms<br> 2068 http fetch GET 304 <a href="https://registry.npmjs.org/socks-proxy-agent" rel="nofollow">https://registry.npmjs.org/socks-proxy-agent</a> 1173ms (from cache)<br> 2069 silly pacote range manifest for socks-proxy-agent@^5.0.0 fetched in 1176ms<br> 2070 silly pacote range manifest for ansi-styles@^4.0.0 fetched in 3ms<br> 2071 http fetch GET 200 <a href="https://registry.npmjs.org/universalify" rel="nofollow">https://registry.npmjs.org/universalify</a> 81ms<br> 2072 http fetch GET 200 <a href="https://registry.npmjs.org/base64-arraybuffer" rel="nofollow">https://registry.npmjs.org/base64-arraybuffer</a> 75ms<br> 2073 http fetch GET 200 <a href="https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" rel="nofollow">https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz</a> 84ms<br> 2074 silly pacote range manifest for universalify@^0.1.0 fetched in 178ms<br> 2075 silly pacote range manifest for chalk@^2.0.0 fetched in 2ms<br> 2076 http fetch GET 200 <a href="https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz</a> 119ms<br> 2077 silly pacote version manifest for [email protected] fetched in 207ms<br> 2078 http fetch GET 200 <a href="https://registry.npmjs.org/js-tokens" rel="nofollow">https://registry.npmjs.org/js-tokens</a> 103ms<br> 2079 http fetch GET 304 <a href="https://registry.npmjs.org/object-assign" rel="nofollow">https://registry.npmjs.org/object-assign</a> 70ms (from cache)<br> 2080 silly pacote range manifest for object-assign@^4 fetched in 70ms<br> 2081 silly pacote range manifest for vary@^1 fetched in 0ms<br> 2082 http fetch GET 200 <a href="https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz</a> 75ms<br> 2083 silly pacote range manifest for js-tokens@^4.0.0 fetched in 183ms<br> 2084 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions</a> 121ms<br> 2085 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-get-function-arity" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-get-function-arity</a> 125ms<br> 2086 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz</a> 86ms<br> 2087 silly pacote range manifest for @babel/helper-get-function-arity@^7.14.5 fetched in 224ms<br> 2088 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression</a> 151ms<br> 2089 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz</a> 113ms<br> 2090 silly pacote range manifest for @babel/helper-explode-assignable-expression@^7.14.5 fetched in 279ms<br> 2091 http fetch GET 304 <a href="https://registry.npmjs.org/object.assign" rel="nofollow">https://registry.npmjs.org/object.assign</a> 64ms (from cache)<br> 2092 silly pacote range manifest for object.assign@^4.1.0 fetched in 67ms<br> 2093 http fetch GET 304 <a href="https://registry.npmjs.org/jsonparse" rel="nofollow">https://registry.npmjs.org/jsonparse</a> 1253ms (from cache)<br> 2094 silly pacote range manifest for jsonparse@^1.3.1 fetched in 1253ms<br> 2095 silly pacote range manifest for @babel/helper-compilation-targets@^7.13.0 fetched in 1ms<br> 2096 silly pacote range manifest for @babel/traverse@^7.13.0 fetched in 1ms<br> 2097 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.debounce" rel="nofollow">https://registry.npmjs.org/lodash.debounce</a> 85ms<br> 2098 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.5.tgz</a> 104ms<br> 2099 silly pacote range manifest for @babel/runtime@^7.8.4 fetched in 108ms<br> 2100 silly pacote range manifest for resolve@^1.14.2 fetched in 0ms<br> 2101 silly pacote range manifest for semver@^6.1.2 fetched in 1ms<br> 2102 silly pacote range manifest for fast-json-stable-stringify@^2.0.0 fetched in 0ms<br> 2103 silly pacote range manifest for json-schema-traverse@^0.4.1 fetched in 0ms<br> 2104 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz" rel="nofollow">https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz</a> 77ms<br> 2105 silly pacote range manifest for lodash.debounce@^4.0.8 fetched in 174ms<br> 2106 http fetch GET 200 <a href="https://registry.npmjs.org/regexpu-core" rel="nofollow">https://registry.npmjs.org/regexpu-core</a> 147ms<br> 2107 http fetch GET 304 <a href="https://registry.npmjs.org/clean-stack" rel="nofollow">https://registry.npmjs.org/clean-stack</a> 91ms (from cache)<br> 2108 silly pacote range manifest for clean-stack@^2.0.0 fetched in 95ms<br> 2109 http fetch GET 200 <a href="https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz" rel="nofollow">https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz</a> 103ms<br> 2110 silly pacote range manifest for regexpu-core@^4.7.1 fetched in 268ms<br> 2111 http fetch GET 304 <a href="https://registry.npmjs.org/indent-string" rel="nofollow">https://registry.npmjs.org/indent-string</a> 99ms (from cache)<br> 2112 silly pacote range manifest for indent-string@^4.0.0 fetched in 100ms<br> 2113 http fetch GET 304 <a href="https://registry.npmjs.org/imurmurhash" rel="nofollow">https://registry.npmjs.org/imurmurhash</a> 73ms (from cache)<br> 2114 silly pacote range manifest for imurmurhash@^0.1.4 fetched in 80ms<br> 2115 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib%2ffs.scandir" rel="nofollow">https://registry.npmjs.org/@nodelib%2ffs.scandir</a> 122ms<br> 2116 http fetch GET 200 <a href="https://registry.npmjs.org/fastq" rel="nofollow">https://registry.npmjs.org/fastq</a> 93ms<br> 2117 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" rel="nofollow">https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz</a> 117ms<br> 2118 silly pacote version manifest for @nodelib/[email protected] fetched in 248ms<br> 2119 silly pacote range manifest for braces@^3.0.1 fetched in 2ms<br> 2120 silly pacote range manifest for picomatch@^2.2.3 fetched in 3ms<br> 2121 silly pacote range manifest for safe-buffer@^5.1.0 fetched in 1ms<br> 2122 http fetch GET 200 <a href="https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz</a> 97ms<br> 2123 silly pacote range manifest for fastq@^1.6.0 fetched in 196ms<br> 2124 http fetch GET 200 <a href="https://registry.npmjs.org/css-declaration-sorter" rel="nofollow">https://registry.npmjs.org/css-declaration-sorter</a> 74ms<br> 2125 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.5.tgz</a> 1226ms<br> 2126 silly pacote range manifest for @babel/helper-member-expression-to-functions@^7.14.5 fetched in 1351ms<br> 2127 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-utils" rel="nofollow">https://registry.npmjs.org/cssnano-utils</a> 108ms<br> 2128 http fetch GET 200 <a href="https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.0.3.tgz" rel="nofollow">https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.0.3.tgz</a> 72ms<br> 2129 silly pacote range manifest for css-declaration-sorter@^6.0.3 fetched in 150ms<br> 2130 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-2.0.1.tgz</a> 88ms<br> 2131 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-calc" rel="nofollow">https://registry.npmjs.org/postcss-calc</a> 98ms<br> 2132 silly pacote range manifest for cssnano-utils@^2.0.1 fetched in 213ms<br> 2133 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-colormin" rel="nofollow">https://registry.npmjs.org/postcss-colormin</a> 91ms<br> 2134 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.0.tgz</a> 95ms<br> 2135 silly pacote range manifest for postcss-colormin@^5.2.0 fetched in 198ms<br> 2136 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.0.0.tgz</a> 133ms<br> 2137 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-convert-values" rel="nofollow">https://registry.npmjs.org/postcss-convert-values</a> 125ms<br> 2138 silly pacote range manifest for postcss-calc@^8.0.0 fetched in 243ms<br> 2139 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.1.tgz</a> 91ms<br> 2140 silly pacote range manifest for postcss-convert-values@^5.0.1 fetched in 231ms<br> 2141 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-comments" rel="nofollow">https://registry.npmjs.org/postcss-discard-comments</a> 122ms<br> 2142 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-duplicates" rel="nofollow">https://registry.npmjs.org/postcss-discard-duplicates</a> 126ms<br> 2143 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz</a> 78ms<br> 2144 silly pacote range manifest for postcss-discard-comments@^5.0.1 fetched in 216ms<br> 2145 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz</a> 88ms<br> 2146 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-empty" rel="nofollow">https://registry.npmjs.org/postcss-discard-empty</a> 125ms<br> 2147 silly pacote range manifest for postcss-discard-duplicates@^5.0.1 fetched in 229ms<br> 2148 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-overridden" rel="nofollow">https://registry.npmjs.org/postcss-discard-overridden</a> 97ms<br> 2149 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz</a> 96ms<br> 2150 silly pacote range manifest for postcss-discard-empty@^5.0.1 fetched in 235ms<br> 2151 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-longhand" rel="nofollow">https://registry.npmjs.org/postcss-merge-longhand</a> 149ms<br> 2152 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.1.tgz</a> 83ms<br> 2153 silly pacote range manifest for postcss-discard-overridden@^5.0.1 fetched in 196ms<br> 2154 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.2.tgz</a> 81ms<br> 2155 silly pacote range manifest for postcss-merge-longhand@^5.0.2 fetched in 242ms<br> 2156 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-rules" rel="nofollow">https://registry.npmjs.org/postcss-merge-rules</a> 147ms<br> 2157 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-font-values" rel="nofollow">https://registry.npmjs.org/postcss-minify-font-values</a> 89ms<br> 2158 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.2.tgz</a> 66ms<br> 2159 silly pacote range manifest for postcss-merge-rules@^5.0.2 fetched in 218ms<br> 2160 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-gradients" rel="nofollow">https://registry.npmjs.org/postcss-minify-gradients</a> 93ms<br> 2161 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.1.tgz</a> 73ms<br> 2162 silly pacote range manifest for postcss-minify-font-values@^5.0.1 fetched in 168ms<br> 2163 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.1.tgz</a> 53ms<br> 2164 silly pacote range manifest for postcss-minify-gradients@^5.0.1 fetched in 151ms<br> 2165 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-selectors" rel="nofollow">https://registry.npmjs.org/postcss-minify-selectors</a> 112ms<br> 2166 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-params" rel="nofollow">https://registry.npmjs.org/postcss-minify-params</a> 141ms<br> 2167 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-charset" rel="nofollow">https://registry.npmjs.org/postcss-normalize-charset</a> 120ms<br> 2168 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.0.tgz</a> 69ms<br> 2169 silly pacote range manifest for postcss-minify-selectors@^5.1.0 fetched in 196ms<br> 2170 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.1.tgz</a> 75ms<br> 2171 silly pacote range manifest for postcss-minify-params@^5.0.1 fetched in 223ms<br> 2172 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz</a> 65ms<br> 2173 silly pacote range manifest for postcss-normalize-charset@^5.0.1 fetched in 193ms<br> 2174 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-display-values" rel="nofollow">https://registry.npmjs.org/postcss-normalize-display-values</a> 207ms<br> 2175 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-repeat-style" rel="nofollow">https://registry.npmjs.org/postcss-normalize-repeat-style</a> 164ms<br> 2176 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-positions" rel="nofollow">https://registry.npmjs.org/postcss-normalize-positions</a> 205ms<br> 2177 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz</a> 63ms<br> 2178 silly pacote range manifest for postcss-normalize-display-values@^5.0.1 fetched in 291ms<br> 2179 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.1.tgz</a> 77ms<br> 2180 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.1.tgz</a> 77ms<br> 2181 silly pacote range manifest for postcss-normalize-repeat-style@^5.0.1 fetched in 253ms<br> 2182 silly pacote range manifest for postcss-normalize-positions@^5.0.1 fetched in 295ms<br> 2183 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-unicode" rel="nofollow">https://registry.npmjs.org/postcss-normalize-unicode</a> 123ms<br> 2184 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-string" rel="nofollow">https://registry.npmjs.org/postcss-normalize-string</a> 139ms<br> 2185 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-timing-functions" rel="nofollow">https://registry.npmjs.org/postcss-normalize-timing-functions</a> 128ms<br> 2186 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.1.tgz</a> 75ms<br> 2187 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.1.tgz</a> 80ms<br> 2188 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.1.tgz</a> 81ms<br> 2189 silly pacote range manifest for postcss-normalize-timing-functions@^5.0.1 fetched in 225ms<br> 2190 silly pacote range manifest for postcss-normalize-unicode@^5.0.1 fetched in 227ms<br> 2191 silly pacote range manifest for postcss-normalize-string@^5.0.1 fetched in 241ms<br> 2192 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-whitespace" rel="nofollow">https://registry.npmjs.org/postcss-normalize-whitespace</a> 114ms<br> 2193 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-ordered-values" rel="nofollow">https://registry.npmjs.org/postcss-ordered-values</a> 128ms<br> 2194 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-url" rel="nofollow">https://registry.npmjs.org/postcss-normalize-url</a> 144ms<br> 2195 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.1.tgz</a> 84ms<br> 2196 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.2.tgz</a> 78ms<br> 2197 silly pacote range manifest for postcss-normalize-whitespace@^5.0.1 fetched in 217ms<br> 2198 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.0.2.tgz</a> 76ms<br> 2199 silly pacote range manifest for postcss-ordered-values@^5.0.2 fetched in 223ms<br> 2200 silly pacote range manifest for postcss-normalize-url@^5.0.2 fetched in 233ms<br> 2201 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-transforms" rel="nofollow">https://registry.npmjs.org/postcss-reduce-transforms</a> 108ms<br> 2202 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-initial" rel="nofollow">https://registry.npmjs.org/postcss-reduce-initial</a> 117ms<br> 2203 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-svgo" rel="nofollow">https://registry.npmjs.org/postcss-svgo</a> 123ms<br> 2204 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.1.tgz</a> 86ms<br> 2205 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.0.2.tgz</a> 75ms<br> 2206 silly pacote range manifest for postcss-reduce-transforms@^5.0.1 fetched in 227ms<br> 2207 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.0.1.tgz</a> 114ms<br> 2208 silly pacote range manifest for postcss-svgo@^5.0.2 fetched in 227ms<br> 2209 silly pacote range manifest for postcss-reduce-initial@^5.0.1 fetched in 248ms<br> 2210 http fetch GET 304 <a href="https://registry.npmjs.org/path-exists" rel="nofollow">https://registry.npmjs.org/path-exists</a> 84ms (from cache)<br> 2211 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-unique-selectors" rel="nofollow">https://registry.npmjs.org/postcss-unique-selectors</a> 114ms<br> 2212 http fetch GET 304 <a href="https://registry.npmjs.org/locate-path" rel="nofollow">https://registry.npmjs.org/locate-path</a> 109ms (from cache)<br> 2213 http fetch GET 200 <a href="https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz</a> 85ms<br> 2214 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.1.tgz</a> 76ms<br> 2215 http fetch GET 200 <a href="https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz</a> 80ms<br> 2216 silly pacote range manifest for path-exists@^4.0.0 fetched in 187ms<br> 2217 silly pacote range manifest for postcss-unique-selectors@^5.0.1 fetched in 202ms<br> 2218 silly pacote range manifest for util-deprecate@^1.0.2 fetched in 2ms<br> 2219 silly pacote range manifest for locate-path@^5.0.0 fetched in 205ms<br> 2220 http fetch GET 304 <a href="https://registry.npmjs.org/atob" rel="nofollow">https://registry.npmjs.org/atob</a> 55ms (from cache)<br> 2221 http fetch GET 304 <a href="https://registry.npmjs.org/decode-uri-component" rel="nofollow">https://registry.npmjs.org/decode-uri-component</a> 50ms (from cache)<br> 2222 silly pacote range manifest for atob@^2.1.2 fetched in 56ms<br> 2223 silly pacote range manifest for decode-uri-component@^0.2.0 fetched in 54ms<br> 2224 http fetch GET 200 <a href="https://registry.npmjs.org/cssesc" rel="nofollow">https://registry.npmjs.org/cssesc</a> 89ms<br> 2225 http fetch GET 200 <a href="https://registry.npmjs.org/parent-module" rel="nofollow">https://registry.npmjs.org/parent-module</a> 53ms<br> 2226 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-from" rel="nofollow">https://registry.npmjs.org/resolve-from</a> 55ms<br> 2227 http fetch GET 200 <a href="https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz</a> 62ms<br> 2228 http fetch GET 200 <a href="https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz</a> 99ms<br> 2229 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz</a> 71ms<br> 2230 silly pacote range manifest for parent-module@^1.0.0 fetched in 132ms<br> 2231 silly pacote range manifest for @babel/code-frame@^7.0.0 fetched in 3ms<br> 2232 silly pacote range manifest for cssesc@^3.0.0 fetched in 208ms<br> 2233 silly pacote range manifest for resolve-from@^4.0.0 fetched in 145ms<br> 2234 http fetch GET 304 <a href="https://registry.npmjs.org/error-ex" rel="nofollow">https://registry.npmjs.org/error-ex</a> 93ms (from cache)<br> 2235 silly pacote range manifest for error-ex@^1.3.1 fetched in 99ms<br> 2236 silly pacote range manifest for ansi-styles@^3.2.1 fetched in 2ms<br> 2237 http fetch GET 200 <a href="https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" rel="nofollow">https://registry.npmjs.org/ms/-/ms-2.1.3.tgz</a> 90ms<br> 2238 http fetch GET 200 <a href="https://registry.npmjs.org/lines-and-columns" rel="nofollow">https://registry.npmjs.org/lines-and-columns</a> 93ms<br> 2239 silly pacote range manifest for supports-color@^5.3.0 fetched in 6ms<br> 2240 silly pacote range manifest for ms@^2.1.1 fetched in 101ms<br> 2241 http fetch GET 200 <a href="https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" rel="nofollow">https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz</a> 56ms<br> 2242 silly pacote range manifest for lines-and-columns@^1.1.6 fetched in 156ms<br> 2243 http fetch GET 200 <a href="https://registry.npmjs.org/indexes-of" rel="nofollow">https://registry.npmjs.org/indexes-of</a> 64ms<br> 2244 http fetch GET 200 <a href="https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz</a> 72ms<br> 2245 silly pacote range manifest for cssesc@^2.0.0 fetched in 79ms<br> 2246 http fetch GET 200 <a href="https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz</a> 65ms<br> 2247 http fetch GET 200 <a href="https://registry.npmjs.org/uniq" rel="nofollow">https://registry.npmjs.org/uniq</a> 86ms<br> 2248 silly pacote range manifest for indexes-of@^1.0.1 fetched in 144ms<br> 2249 http fetch GET 200 <a href="https://registry.npmjs.org/flatten" rel="nofollow">https://registry.npmjs.org/flatten</a> 71ms<br> 2250 silly pacote range manifest for source-map-resolve@^0.5.2 fetched in 3ms<br> 2251 http fetch GET 200 <a href="https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz</a> 89ms<br> 2252 http fetch GET 200 <a href="https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz</a> 82ms<br> 2253 http fetch GET 304 <a href="https://registry.npmjs.org/urix" rel="nofollow">https://registry.npmjs.org/urix</a> 87ms (from cache)<br> 2254 silly pacote range manifest for urix@^0.1.0 fetched in 90ms<br> 2255 warn deprecated [email protected]: Please see <a href="https://github.com/lydell/urix#deprecated">https://github.com/lydell/urix#deprecated</a><br> 2256 silly pacote range manifest for uniq@^1.0.1 fetched in 185ms<br> 2257 silly pacote range manifest for flatten@^1.0.2 fetched in 166ms<br> 2258 silly pacote range manifest for micromatch@^3.1.4 fetched in 3ms<br> 2259 silly pacote range manifest for normalize-path@^2.1.1 fetched in 6ms<br> 2260 http fetch GET 304 <a href="https://registry.npmjs.org/array-unique" rel="nofollow">https://registry.npmjs.org/array-unique</a> 72ms (from cache)<br> 2261 silly pacote range manifest for array-unique@^0.3.2 fetched in 74ms<br> 2262 http fetch GET 304 <a href="https://registry.npmjs.org/arr-flatten" rel="nofollow">https://registry.npmjs.org/arr-flatten</a> 80ms (from cache)<br> 2263 silly pacote range manifest for arr-flatten@^1.1.0 fetched in 83ms<br> 2264 silly pacote range manifest for fill-range@^4.0.0 fetched in 4ms<br> 2265 http fetch GET 304 <a href="https://registry.npmjs.org/isobject" rel="nofollow">https://registry.npmjs.org/isobject</a> 111ms (from cache)<br> 2266 silly pacote range manifest for isobject@^3.0.1 fetched in 114ms<br> 2267 http fetch GET 304 <a href="https://registry.npmjs.org/extend-shallow" rel="nofollow">https://registry.npmjs.org/extend-shallow</a> 72ms (from cache)<br> 2268 silly pacote range manifest for extend-shallow@^2.0.1 fetched in 79ms<br> 2269 http fetch GET 304 <a href="https://registry.npmjs.org/repeat-element" rel="nofollow">https://registry.npmjs.org/repeat-element</a> 86ms (from cache)<br> 2270 silly pacote range manifest for repeat-element@^1.1.2 fetched in 89ms<br> 2271 http fetch GET 304 <a href="https://registry.npmjs.org/snapdragon" rel="nofollow">https://registry.npmjs.org/snapdragon</a> 74ms (from cache)<br> 2272 silly pacote range manifest for snapdragon@^0.8.1 fetched in 77ms<br> 2273 http fetch GET 304 <a href="https://registry.npmjs.org/snapdragon-node" rel="nofollow">https://registry.npmjs.org/snapdragon-node</a> 74ms (from cache)<br> 2274 silly pacote range manifest for snapdragon-node@^2.0.1 fetched in 78ms<br> 2275 silly pacote range manifest for is-glob@^3.1.0 fetched in 7ms<br> 2276 http fetch GET 304 <a href="https://registry.npmjs.org/split-string" rel="nofollow">https://registry.npmjs.org/split-string</a> 87ms (from cache)<br> 2277 silly pacote range manifest for split-string@^3.0.2 fetched in 89ms<br> 2278 silly pacote range manifest for binary-extensions@^1.0.0 fetched in 2ms<br> 2279 silly pacote range manifest for graceful-fs@^4.1.11 fetched in 1ms<br> 2280 silly pacote range manifest for readable-stream@^2.0.2 fetched in 3ms<br> 2281 http fetch GET 304 <a href="https://registry.npmjs.org/to-regex" rel="nofollow">https://registry.npmjs.org/to-regex</a> 89ms (from cache)<br> 2282 silly pacote range manifest for to-regex@^3.0.1 fetched in 93ms<br> 2283 http fetch GET 304 <a href="https://registry.npmjs.org/path-dirname" rel="nofollow">https://registry.npmjs.org/path-dirname</a> 97ms (from cache)<br> 2284 silly pacote range manifest for path-dirname@^1.0.0 fetched in 103ms<br> 2285 http fetch GET 304 <a href="https://registry.npmjs.org/bindings" rel="nofollow">https://registry.npmjs.org/bindings</a> 79ms (from cache)<br> 2286 silly pacote range manifest for bindings@^1.5.0 fetched in 84ms<br> 2287 http fetch GET 304 <a href="https://registry.npmjs.org/nan" rel="nofollow">https://registry.npmjs.org/nan</a> 87ms (from cache)<br> 2288 silly pacote range manifest for nan@^2.12.1 fetched in 90ms<br> 2289 http fetch GET 200 <a href="https://registry.npmjs.org/is-arguments" rel="nofollow">https://registry.npmjs.org/is-arguments</a> 81ms<br> 2290 http fetch GET 200 <a href="https://registry.npmjs.org/is-date-object" rel="nofollow">https://registry.npmjs.org/is-date-object</a> 89ms<br> 2291 http fetch GET 200 <a href="https://registry.npmjs.org/is-regex" rel="nofollow">https://registry.npmjs.org/is-regex</a> 93ms<br> 2292 http fetch GET 200 <a href="https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz</a> 84ms<br> 2293 silly pacote range manifest for is-arguments@^1.0.4 fetched in 186ms<br> 2294 http fetch GET 200 <a href="https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz</a> 100ms<br> 2295 http fetch GET 200 <a href="https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz</a> 94ms<br> 2296 silly pacote range manifest for is-date-object@^1.0.1 fetched in 202ms<br> 2297 silly pacote range manifest for is-regex@^1.0.4 fetched in 197ms<br> 2298 http fetch GET 200 <a href="https://registry.npmjs.org/object-is" rel="nofollow">https://registry.npmjs.org/object-is</a> 101ms<br> 2299 http fetch GET 200 <a href="https://registry.npmjs.org/regexp.prototype.flags" rel="nofollow">https://registry.npmjs.org/regexp.prototype.flags</a> 84ms<br> 2300 http fetch GET 304 <a href="https://registry.npmjs.org/object-keys" rel="nofollow">https://registry.npmjs.org/object-keys</a> 95ms (from cache)<br> 2301 silly pacote range manifest for object-keys@^1.1.1 fetched in 98ms<br> 2302 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-indexof" rel="nofollow">https://registry.npmjs.org/buffer-indexof</a> 75ms<br> 2303 http fetch GET 200 <a href="https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz</a> 83ms<br> 2304 http fetch GET 200 <a href="https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" rel="nofollow">https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz</a> 102ms<br> 2305 silly pacote range manifest for regexp.prototype.flags@^1.2.0 fetched in 178ms<br> 2306 silly pacote range manifest for object-is@^1.0.1 fetched in 216ms<br> 2307 http fetch GET 200 <a href="https://registry.npmjs.org/thunky" rel="nofollow">https://registry.npmjs.org/thunky</a> 64ms<br> 2308 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz</a> 92ms<br> 2309 silly pacote range manifest for buffer-indexof@^1.0.0 fetched in 178ms<br> 2310 http fetch GET 200 <a href="https://registry.npmjs.org/dns-packet" rel="nofollow">https://registry.npmjs.org/dns-packet</a> 97ms<br> 2311 http fetch GET 200 <a href="https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz" rel="nofollow">https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz</a> 8ms (from cache)<br> 2312 silly pacote range manifest for mime-db@&gt;= 1.43.0 &lt; 2 fetched in 16ms<br> 2313 http fetch GET 200 <a href="https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz</a> 92ms<br> 2314 http fetch GET 200 <a href="https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz" rel="nofollow">https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz</a> 68ms<br> 2315 silly pacote range manifest for thunky@^1.0.2 fetched in 168ms<br> 2316 silly pacote range manifest for dns-packet@^1.3.1 fetched in 182ms<br> 2317 silly pacote range manifest for glob@^7.0.3 fetched in 3ms<br> 2318 silly pacote range manifest for object-assign@^4.0.1 fetched in 2ms<br> 2319 silly pacote range manifest for pify@^2.0.0 fetched in 2ms<br> 2320 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fminimatch" rel="nofollow">https://registry.npmjs.org/@types%2fminimatch</a> 86ms (from cache)<br> 2321 silly pacote range manifest for @types/minimatch@* fetched in 89ms<br> 2322 http fetch GET 200 <a href="https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz</a> 69ms<br> 2323 silly pacote range manifest for array-union@^1.0.1 fetched in 81ms<br> 2324 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-inside" rel="nofollow">https://registry.npmjs.org/is-path-inside</a> 84ms<br> 2325 http fetch GET 304 <a href="https://registry.npmjs.org/pinkie-promise" rel="nofollow">https://registry.npmjs.org/pinkie-promise</a> 100ms (from cache)<br> 2326 silly pacote range manifest for pinkie-promise@^2.0.0 fetched in 103ms<br> 2327 silly pacote range manifest for braces@^2.3.1 fetched in 2ms<br> 2328 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz</a> 69ms<br> 2329 silly pacote range manifest for is-path-inside@^2.1.0 fetched in 175ms<br> 2330 http fetch GET 304 <a href="https://registry.npmjs.org/arr-diff" rel="nofollow">https://registry.npmjs.org/arr-diff</a> 120ms (from cache)<br> 2331 http fetch GET 304 <a href="https://registry.npmjs.org/define-property" rel="nofollow">https://registry.npmjs.org/define-property</a> 83ms (from cache)<br> 2332 silly pacote range manifest for extend-shallow@^3.0.2 fetched in 6ms<br> 2333 silly pacote range manifest for arr-diff@^4.0.0 fetched in 126ms<br> 2334 silly pacote range manifest for define-property@^2.0.2 fetched in 88ms<br> 2335 http fetch GET 304 <a href="https://registry.npmjs.org/nanomatch" rel="nofollow">https://registry.npmjs.org/nanomatch</a> 99ms (from cache)<br> 2336 http fetch GET 304 <a href="https://registry.npmjs.org/extglob" rel="nofollow">https://registry.npmjs.org/extglob</a> 105ms (from cache)<br> 2337 silly pacote range manifest for nanomatch@^1.2.9 fetched in 106ms<br> 2338 silly pacote range manifest for extglob@^2.0.4 fetched in 115ms<br> 2339 http fetch GET 304 <a href="https://registry.npmjs.org/fragment-cache" rel="nofollow">https://registry.npmjs.org/fragment-cache</a> 117ms (from cache)<br> 2340 silly pacote range manifest for fragment-cache@^0.2.1 fetched in 125ms<br> 2341 silly pacote range manifest for to-regex@^3.0.2 fetched in 1ms<br> 2342 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz</a> 88ms<br> 2343 http fetch GET 304 <a href="https://registry.npmjs.org/object.pick" rel="nofollow">https://registry.npmjs.org/object.pick</a> 114ms (from cache)<br> 2344 silly pacote range manifest for object.pick@^1.3.0 fetched in 118ms<br> 2345 silly pacote range manifest for resolve-from@^3.0.0 fetched in 108ms<br> 2346 http fetch GET 304 <a href="https://registry.npmjs.org/regex-not" rel="nofollow">https://registry.npmjs.org/regex-not</a> 126ms (from cache)<br> 2347 silly pacote range manifest for regex-not@^1.0.0 fetched in 129ms<br> 2348 http fetch GET 200 <a href="https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz</a> 3ms (from cache)<br> 2349 silly pacote version manifest for [email protected] fetched in 11ms<br> 2350 http fetch GET 200 <a href="https://registry.npmjs.org/destroy" rel="nofollow">https://registry.npmjs.org/destroy</a> 75ms<br> 2351 http fetch GET 200 <a href="https://registry.npmjs.org/forwarded" rel="nofollow">https://registry.npmjs.org/forwarded</a> 95ms<br> 2352 http fetch GET 200 <a href="https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" rel="nofollow">https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz</a> 75ms<br> 2353 http fetch GET 200 <a href="https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz</a> 78ms<br> 2354 silly pacote range manifest for destroy@~1.0.4 fetched in 163ms<br> 2355 silly pacote version manifest for [email protected] fetched in 182ms<br> 2356 http fetch GET 200 <a href="https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/mime/-/mime-1.6.0.tgz</a> 5ms (from cache)<br> 2357 silly pacote version manifest for [email protected] fetched in 15ms<br> 2358 http fetch GET 200 <a href="https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" rel="nofollow">https://registry.npmjs.org/ms/-/ms-2.1.1.tgz</a> 50ms<br> 2359 http fetch GET 200 <a href="https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz" rel="nofollow">https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz</a> 78ms<br> 2360 silly pacote version manifest for [email protected] fetched in 67ms<br> 2361 silly pacote range manifest for http-errors@~1.7.2 fetched in 93ms<br> 2362 http fetch GET 200 <a href="https://registry.npmjs.org/ip-regex" rel="nofollow">https://registry.npmjs.org/ip-regex</a> 76ms<br> 2363 http fetch GET 200 <a href="https://registry.npmjs.org/execa" rel="nofollow">https://registry.npmjs.org/execa</a> 136ms<br> 2364 http fetch GET 200 <a href="https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz</a> 70ms<br> 2365 silly pacote range manifest for ip-regex@^2.1.0 fetched in 159ms<br> 2366 http fetch GET 200 <a href="https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/execa/-/execa-1.0.0.tgz</a> 93ms<br> 2367 silly pacote range manifest for execa@^1.0.0 fetched in 247ms<br> 2368 silly pacote range manifest for statuses@&gt;= 1.4.0 &lt; 2 fetched in 3ms<br> 2369 silly pacote range manifest for lodash@^4.17.14 fetched in 2ms<br> 2370 silly pacote range manifest for websocket-driver@&gt;=0.5.1 fetched in 1ms<br> 2371 http fetch GET 200 <a href="https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz</a> 85ms<br> 2372 silly pacote version manifest for [email protected] fetched in 95ms<br> 2373 silly pacote range manifest for safe-buffer@&gt;=5.1.0 fetched in 1ms<br> 2374 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-extensions" rel="nofollow">https://registry.npmjs.org/websocket-extensions</a> 82ms<br> 2375 http fetch GET 200 <a href="https://registry.npmjs.org/http-parser-js" rel="nofollow">https://registry.npmjs.org/http-parser-js</a> 98ms<br> 2376 http fetch GET 200 <a href="https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz" rel="nofollow">https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz</a> 77ms<br> 2377 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz</a> 87ms<br> 2378 silly pacote range manifest for http-parser-js@&gt;=0.5.1 fetched in 190ms<br> 2379 silly pacote range manifest for websocket-extensions@&gt;=0.1.1 fetched in 189ms<br> 2380 http fetch GET 200 <a href="https://registry.npmjs.org/detect-node" rel="nofollow">https://registry.npmjs.org/detect-node</a> 80ms<br> 2381 http fetch GET 200 <a href="https://registry.npmjs.org/hpack.js" rel="nofollow">https://registry.npmjs.org/hpack.js</a> 85ms<br> 2382 http fetch GET 200 <a href="https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz</a> 78ms<br> 2383 silly pacote range manifest for detect-node@^2.0.4 fetched in 173ms<br> 2384 http fetch GET 200 <a href="https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" rel="nofollow">https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz</a> 117ms<br> 2385 silly pacote range manifest for hpack.js@^2.1.6 fetched in 215ms<br> 2386 silly pacote range manifest for readable-stream@^3.0.6 fetched in 2ms<br> 2387 http fetch GET 200 <a href="https://registry.npmjs.org/obuf" rel="nofollow">https://registry.npmjs.org/obuf</a> 58ms<br> 2388 http fetch GET 200 <a href="https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz</a> 72ms<br> 2389 http fetch GET 200 <a href="https://registry.npmjs.org/wbuf" rel="nofollow">https://registry.npmjs.org/wbuf</a> 88ms<br> 2390 silly pacote range manifest for obuf@^1.1.2 fetched in 145ms<br> 2391 silly pacote range manifest for errno@^0.1.3 fetched in 4ms<br> 2392 silly pacote range manifest for readable-stream@^2.0.1 fetched in 2ms<br> 2393 silly pacote range manifest for string-width@^3.1.0 fetched in 3ms<br> 2394 silly pacote range manifest for strip-ansi@^5.2.0 fetched in 2ms<br> 2395 silly pacote range manifest for wrap-ansi@^5.1.0 fetched in 3ms<br> 2396 silly pacote range manifest for locate-path@^3.0.0 fetched in 2ms<br> 2397 http fetch GET 200 <a href="https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" rel="nofollow">https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz</a> 71ms<br> 2398 silly pacote range manifest for wbuf@^1.7.3 fetched in 172ms<br> 2399 http fetch GET 200 <a href="https://registry.npmjs.org/original" rel="nofollow">https://registry.npmjs.org/original</a> 91ms<br> 2400 http fetch GET 200 <a href="https://registry.npmjs.org/original/-/original-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/original/-/original-1.0.2.tgz</a> 71ms<br> 2401 http fetch GET 200 <a href="https://registry.npmjs.org/querystringify" rel="nofollow">https://registry.npmjs.org/querystringify</a> 100ms<br> 2402 silly pacote range manifest for original@^1.0.0 fetched in 182ms<br> 2403 silly pacote range manifest for emoji-regex@^7.0.1 fetched in 4ms<br> 2404 silly pacote range manifest for is-fullwidth-code-point@^2.0.0 fetched in 3ms<br> 2405 silly pacote range manifest for strip-ansi@^5.1.0 fetched in 2ms<br> 2406 http fetch GET 200 <a href="https://registry.npmjs.org/p-defer" rel="nofollow">https://registry.npmjs.org/p-defer</a> 1245ms<br> 2407 silly pacote range manifest for camelcase@^5.0.0 fetched in 4ms<br> 2408 http fetch GET 200 <a href="https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz</a> 98ms<br> 2409 http fetch GET 200 <a href="https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz</a> 84ms<br> 2410 silly pacote range manifest for querystringify@^2.1.1 fetched in 214ms<br> 2411 silly pacote range manifest for p-defer@^1.0.0 fetched in 1341ms<br> 2412 silly pacote range manifest for mimic-fn@^2.1.0 fetched in 2ms<br> 2413 silly pacote range manifest for @types/json-schema@* fetched in 1ms<br> 2414 http fetch GET 304 <a href="https://registry.npmjs.org/decamelize" rel="nofollow">https://registry.npmjs.org/decamelize</a> 99ms (from cache)<br> 2415 silly pacote range manifest for decamelize@^1.2.0 fetched in 101ms<br> 2416 http fetch GET 304 <a href="https://registry.npmjs.org/color-name" rel="nofollow">https://registry.npmjs.org/color-name</a> 84ms (from cache)<br> 2417 silly pacote range manifest for color-name@~1.1.4 fetched in 87ms<br> 2418 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser</a> 235ms<br> 2419 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz</a> 81ms<br> 2420 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 331ms<br> 2421 http fetch GET 200 <a href="https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" rel="nofollow">https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz</a> 93ms<br> 2422 silly pacote range manifest for supports-color@^8.0.0 fetched in 109ms<br> 2423 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc%2fieee754" rel="nofollow">https://registry.npmjs.org/@xtuc%2fieee754</a> 375ms<br> 2424 http fetch GET 200 <a href="https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" rel="nofollow">https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz</a> 74ms<br> 2425 silly pacote range manifest for estraverse@^5.2.0 fetched in 89ms<br> 2426 silly pacote range manifest for safe-buffer@~5.2.0 fetched in 3ms<br> 2427 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz</a> 115ms<br> 2428 silly pacote range manifest for @xtuc/ieee754@^1.2.0 fetched in 503ms<br> 2429 http fetch GET 304 <a href="https://registry.npmjs.org/abbrev" rel="nofollow">https://registry.npmjs.org/abbrev</a> 96ms (from cache)<br> 2430 silly pacote range manifest for abbrev@1 fetched in 99ms<br> 2431 http fetch GET 304 <a href="https://registry.npmjs.org/are-we-there-yet" rel="nofollow">https://registry.npmjs.org/are-we-there-yet</a> 76ms (from cache)<br> 2432 silly pacote range manifest for are-we-there-yet@~1.1.2 fetched in 77ms<br> 2433 http fetch GET 304 <a href="https://registry.npmjs.org/console-control-strings" rel="nofollow">https://registry.npmjs.org/console-control-strings</a> 74ms (from cache)<br> 2434 silly pacote range manifest for console-control-strings@~1.1.0 fetched in 78ms<br> 2435 silly pacote range manifest for set-blocking@~2.0.0 fetched in 1ms<br> 2436 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc%2flong" rel="nofollow">https://registry.npmjs.org/@xtuc%2flong</a> 755ms<br> 2437 http fetch GET 304 <a href="https://registry.npmjs.org/gauge" rel="nofollow">https://registry.npmjs.org/gauge</a> 107ms (from cache)<br> 2438 silly pacote range manifest for gauge@~2.7.3 fetched in 109ms<br> 2439 http fetch GET 304 <a href="https://registry.npmjs.org/aws-sign2" rel="nofollow">https://registry.npmjs.org/aws-sign2</a> 67ms (from cache)<br> 2440 silly pacote range manifest for aws-sign2@~0.7.0 fetched in 68ms<br> 2441 http fetch GET 304 <a href="https://registry.npmjs.org/aws4" rel="nofollow">https://registry.npmjs.org/aws4</a> 94ms (from cache)<br> 2442 silly pacote range manifest for aws4@^1.8.0 fetched in 96ms<br> 2443 http fetch GET 304 <a href="https://registry.npmjs.org/caseless" rel="nofollow">https://registry.npmjs.org/caseless</a> 86ms (from cache)<br> 2444 silly pacote range manifest for caseless@~0.12.0 fetched in 87ms<br> 2445 silly pacote range manifest for extend@~3.0.2 fetched in 2ms<br> 2446 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" rel="nofollow">https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz</a> 152ms<br> 2447 silly pacote version manifest for @xtuc/[email protected] fetched in 913ms<br> 2448 http fetch GET 304 <a href="https://registry.npmjs.org/combined-stream" rel="nofollow">https://registry.npmjs.org/combined-stream</a> 74ms (from cache)<br> 2449 silly pacote range manifest for combined-stream@~1.0.6 fetched in 76ms<br> 2450 http fetch GET 304 <a href="https://registry.npmjs.org/forever-agent" rel="nofollow">https://registry.npmjs.org/forever-agent</a> 78ms (from cache)<br> 2451 silly pacote range manifest for forever-agent@~0.6.1 fetched in 79ms<br> 2452 http fetch GET 304 <a href="https://registry.npmjs.org/http-signature" rel="nofollow">https://registry.npmjs.org/http-signature</a> 65ms (from cache)<br> 2453 silly pacote range manifest for http-signature@~1.2.0 fetched in 69ms<br> 2454 http fetch GET 304 <a href="https://registry.npmjs.org/form-data" rel="nofollow">https://registry.npmjs.org/form-data</a> 108ms (from cache)<br> 2455 http fetch GET 304 <a href="https://registry.npmjs.org/har-validator" rel="nofollow">https://registry.npmjs.org/har-validator</a> 87ms (from cache)<br> 2456 silly pacote range manifest for form-data@~2.3.2 fetched in 112ms<br> 2457 silly pacote range manifest for har-validator@~5.1.3 fetched in 91ms<br> 2458 warn deprecated [email protected]: this library is no longer supported<br> 2459 http fetch GET 304 <a href="https://registry.npmjs.org/is-typedarray" rel="nofollow">https://registry.npmjs.org/is-typedarray</a> 88ms (from cache)<br> 2460 silly pacote range manifest for is-typedarray@~1.0.0 fetched in 89ms<br> 2461 http fetch GET 304 <a href="https://registry.npmjs.org/isstream" rel="nofollow">https://registry.npmjs.org/isstream</a> 81ms (from cache)<br> 2462 http fetch GET 304 <a href="https://registry.npmjs.org/json-stringify-safe" rel="nofollow">https://registry.npmjs.org/json-stringify-safe</a> 79ms (from cache)<br> 2463 silly pacote range manifest for mime-types@~2.1.19 fetched in 2ms<br> 2464 silly pacote range manifest for isstream@~0.1.2 fetched in 84ms<br> 2465 silly pacote range manifest for json-stringify-safe@~5.0.1 fetched in 83ms<br> 2466 silly pacote range manifest for qs@~6.5.2 fetched in 7ms<br> 2467 silly pacote range manifest for safe-buffer@^5.1.2 fetched in 2ms<br> 2468 http fetch GET 304 <a href="https://registry.npmjs.org/oauth-sign" rel="nofollow">https://registry.npmjs.org/oauth-sign</a> 112ms (from cache)<br> 2469 silly pacote range manifest for oauth-sign@~0.9.0 fetched in 113ms<br> 2470 http fetch GET 304 <a href="https://registry.npmjs.org/performance-now" rel="nofollow">https://registry.npmjs.org/performance-now</a> 116ms (from cache)<br> 2471 http fetch GET 304 <a href="https://registry.npmjs.org/tough-cookie" rel="nofollow">https://registry.npmjs.org/tough-cookie</a> 103ms (from cache)<br> 2472 silly pacote range manifest for performance-now@^2.1.0 fetched in 119ms<br> 2473 silly pacote range manifest for tough-cookie@~2.5.0 fetched in 106ms<br> 2474 silly pacote range manifest for depd@^1.1.2 fetched in 2ms<br> 2475 http fetch GET 304 <a href="https://registry.npmjs.org/tunnel-agent" rel="nofollow">https://registry.npmjs.org/tunnel-agent</a> 100ms (from cache)<br> 2476 http fetch GET 304 <a href="https://registry.npmjs.org/humanize-ms" rel="nofollow">https://registry.npmjs.org/humanize-ms</a> 91ms (from cache)<br> 2477 silly pacote range manifest for tunnel-agent@^0.6.0 fetched in 104ms<br> 2478 silly pacote range manifest for humanize-ms@^1.2.1 fetched in 96ms<br> 2479 silly pacote range manifest for graceful-fs@^4.1.6 fetched in 5ms<br> 2480 http fetch GET 304 <a href="https://registry.npmjs.org/@tootallnate%2fonce" rel="nofollow">https://registry.npmjs.org/@tootallnate%2fonce</a> 114ms (from cache)<br> 2481 silly pacote range manifest for @tootallnate/once@1 fetched in 115ms<br> 2482 http fetch GET 304 <a href="https://registry.npmjs.org/socks" rel="nofollow">https://registry.npmjs.org/socks</a> 71ms (from cache)<br> 2483 silly pacote range manifest for socks@^2.3.3 fetched in 78ms<br> 2484 http fetch GET 304 <a href="https://registry.npmjs.org/define-properties" rel="nofollow">https://registry.npmjs.org/define-properties</a> 82ms (from cache)<br> 2485 silly pacote range manifest for define-properties@^1.1.3 fetched in 86ms<br> 2486 http fetch GET 304 <a href="https://registry.npmjs.org/call-bind" rel="nofollow">https://registry.npmjs.org/call-bind</a> 103ms (from cache)<br> 2487 silly pacote range manifest for call-bind@^1.0.0 fetched in 106ms<br> 2488 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate" rel="nofollow">https://registry.npmjs.org/regenerate</a> 84ms<br> 2489 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate-unicode-properties" rel="nofollow">https://registry.npmjs.org/regenerate-unicode-properties</a> 115ms<br> 2490 http fetch GET 304 <a href="https://registry.npmjs.org/has-symbols" rel="nofollow">https://registry.npmjs.org/has-symbols</a> 155ms (from cache)<br> 2491 silly pacote range manifest for has-symbols@^1.0.1 fetched in 156ms<br> 2492 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" rel="nofollow">https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz</a> 96ms<br> 2493 silly pacote range manifest for regenerate@^1.4.0 fetched in 193ms<br> 2494 http fetch GET 200 <a href="https://registry.npmjs.org/regjsgen" rel="nofollow">https://registry.npmjs.org/regjsgen</a> 128ms<br> 2495 http fetch GET 200 <a href="https://registry.npmjs.org/regjsparser" rel="nofollow">https://registry.npmjs.org/regjsparser</a> 120ms<br> 2496 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz" rel="nofollow">https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz</a> 205ms<br> 2497 http fetch GET 200 <a href="https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz" rel="nofollow">https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz</a> 66ms<br> 2498 silly pacote range manifest for regenerate-unicode-properties@^8.2.0 fetched in 327ms<br> 2499 silly pacote range manifest for regjsgen@^0.5.1 fetched in 205ms<br> 2500 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-match-property-ecmascript</a> 90ms<br> 2501 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-value-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-match-property-value-ecmascript</a> 127ms<br> 2502 http fetch GET 200 <a href="https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz" rel="nofollow">https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.9.tgz</a> 154ms<br> 2503 silly pacote range manifest for regjsparser@^0.6.4 fetched in 283ms<br> 2504 http fetch GET 200 <a href="https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" rel="nofollow">https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz</a> 4ms (from cache)<br> 2505 silly pacote version manifest for @nodelib/[email protected] fetched in 10ms<br> 2506 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz</a> 69ms<br> 2507 silly pacote range manifest for unicode-match-property-value-ecmascript@^1.2.0 fetched in 211ms<br> 2508 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz</a> 152ms<br> 2509 silly pacote range manifest for unicode-match-property-ecmascript@^1.0.4 fetched in 258ms<br> 2510 http fetch GET 200 <a href="https://registry.npmjs.org/reusify" rel="nofollow">https://registry.npmjs.org/reusify</a> 85ms<br> 2511 http fetch GET 200 <a href="https://registry.npmjs.org/run-parallel" rel="nofollow">https://registry.npmjs.org/run-parallel</a> 147ms<br> 2512 http fetch GET 200 <a href="https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz</a> 82ms<br> 2513 silly pacote range manifest for reusify@^1.0.4 fetched in 179ms<br> 2514 http fetch GET 200 <a href="https://registry.npmjs.org/timsort" rel="nofollow">https://registry.npmjs.org/timsort</a> 148ms<br> 2515 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-api" rel="nofollow">https://registry.npmjs.org/caniuse-api</a> 86ms<br> 2516 http fetch GET 200 <a href="https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz</a> 216ms<br> 2517 silly pacote range manifest for run-parallel@^1.1.9 fetched in 377ms<br> 2518 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz</a> 80ms<br> 2519 silly pacote range manifest for caniuse-api@^3.0.0 fetched in 173ms<br> 2520 silly pacote range manifest for postcss-value-parser@^4.0.2 fetched in 1ms<br> 2521 http fetch GET 200 <a href="https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz" rel="nofollow">https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz</a> 206ms<br> 2522 silly pacote range manifest for timsort@^0.3.0 fetched in 365ms<br> 2523 http fetch GET 200 <a href="https://registry.npmjs.org/css-color-names" rel="nofollow">https://registry.npmjs.org/css-color-names</a> 74ms<br> 2524 http fetch GET 200 <a href="https://registry.npmjs.org/css-color-names/-/css-color-names-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/css-color-names/-/css-color-names-1.0.1.tgz</a> 75ms<br> 2525 silly pacote range manifest for css-color-names@^1.0.1 fetched in 166ms<br> 2526 silly pacote range manifest for postcss-selector-parser@^6.0.5 fetched in 3ms<br> 2527 http fetch GET 200 <a href="https://registry.npmjs.org/colord" rel="nofollow">https://registry.npmjs.org/colord</a> 261ms<br> 2528 http fetch GET 200 <a href="https://registry.npmjs.org/vendors" rel="nofollow">https://registry.npmjs.org/vendors</a> 80ms<br> 2529 http fetch GET 200 <a href="https://registry.npmjs.org/stylehacks" rel="nofollow">https://registry.npmjs.org/stylehacks</a> 225ms<br> 2530 http fetch GET 200 <a href="https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz</a> 79ms<br> 2531 silly pacote range manifest for vendors@^1.0.3 fetched in 174ms<br> 2532 http fetch GET 200 <a href="https://registry.npmjs.org/is-color-stop" rel="nofollow">https://registry.npmjs.org/is-color-stop</a> 65ms<br> 2533 http fetch GET 200 <a href="https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz" rel="nofollow">https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz</a> 170ms<br> 2534 http fetch GET 200 <a href="https://registry.npmjs.org/colord/-/colord-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/colord/-/colord-2.0.1.tgz</a> 229ms<br> 2535 silly pacote range manifest for colord@^2.0.1 fetched in 505ms<br> 2536 silly pacote range manifest for stylehacks@^5.0.1 fetched in 415ms<br> 2537 silly pacote range manifest for browserslist@^4.16.0 fetched in 2ms<br> 2538 http fetch GET 200 <a href="https://registry.npmjs.org/alphanum-sort" rel="nofollow">https://registry.npmjs.org/alphanum-sort</a> 65ms<br> 2539 http fetch GET 200 <a href="https://registry.npmjs.org/uniqs" rel="nofollow">https://registry.npmjs.org/uniqs</a> 90ms<br> 2540 http fetch GET 200 <a href="https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz</a> 88ms<br> 2541 silly pacote range manifest for alphanum-sort@^1.0.2 fetched in 171ms<br> 2542 http fetch GET 200 <a href="https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz</a> 76ms<br> 2543 silly pacote range manifest for uniqs@^2.0.0 fetched in 178ms<br> 2544 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-url" rel="nofollow">https://registry.npmjs.org/normalize-url</a> 105ms<br> 2545 http fetch GET 200 <a href="https://registry.npmjs.org/svgo" rel="nofollow">https://registry.npmjs.org/svgo</a> 152ms<br> 2546 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-url/-/normalize-url-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/normalize-url/-/normalize-url-6.0.1.tgz</a> 76ms<br> 2547 silly pacote range manifest for normalize-url@^6.0.1 fetched in 195ms<br> 2548 http fetch GET 304 <a href="https://registry.npmjs.org/p-locate" rel="nofollow">https://registry.npmjs.org/p-locate</a> 117ms (from cache)<br> 2549 http fetch GET 200 <a href="https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz</a> 103ms<br> 2550 http fetch GET 200 <a href="https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz</a> 646ms<br> 2551 silly pacote range manifest for p-locate@^4.1.0 fetched in 234ms<br> 2552 silly pacote range manifest for is-color-stop@^1.1.0 fetched in 728ms<br> 2553 http fetch GET 200 <a href="https://registry.npmjs.org/svgo/-/svgo-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/svgo/-/svgo-2.3.0.tgz</a> 284ms<br> 2554 silly pacote range manifest for svgo@^2.3.0 fetched in 451ms<br> 2555 silly pacote range manifest for color-convert@^1.9.0 fetched in 3ms<br> 2556 http fetch GET 200 <a href="https://registry.npmjs.org/callsites" rel="nofollow">https://registry.npmjs.org/callsites</a> 82ms<br> 2557 http fetch GET 304 <a href="https://registry.npmjs.org/is-arrayish" rel="nofollow">https://registry.npmjs.org/is-arrayish</a> 86ms (from cache)<br> 2558 silly pacote range manifest for is-arrayish@^0.2.1 fetched in 88ms<br> 2559 http fetch GET 304 <a href="https://registry.npmjs.org/resolve-url" rel="nofollow">https://registry.npmjs.org/resolve-url</a> 112ms (from cache)<br> 2560 silly pacote range manifest for resolve-url@^0.2.1 fetched in 117ms<br> 2561 warn deprecated [email protected]: <a href="https://github.com/lydell/resolve-url#deprecated">https://github.com/lydell/resolve-url#deprecated</a><br> 2562 http fetch GET 200 <a href="https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz</a> 75ms<br> 2563 http fetch GET 304 <a href="https://registry.npmjs.org/source-map-url" rel="nofollow">https://registry.npmjs.org/source-map-url</a> 72ms (from cache)<br> 2564 silly pacote range manifest for source-map-url@^0.4.0 fetched in 74ms<br> 2565 silly pacote range manifest for is-number@^3.0.0 fetched in 2ms<br> 2566 silly pacote range manifest for callsites@^3.0.0 fetched in 169ms<br> 2567 silly pacote range manifest for to-regex-range@^2.1.0 fetched in 2ms<br> 2568 http fetch GET 304 <a href="https://registry.npmjs.org/remove-trailing-separator" rel="nofollow">https://registry.npmjs.org/remove-trailing-separator</a> 86ms (from cache)<br> 2569 http fetch GET 304 <a href="https://registry.npmjs.org/is-extendable" rel="nofollow">https://registry.npmjs.org/is-extendable</a> 73ms (from cache)<br> 2570 silly pacote range manifest for remove-trailing-separator@^1.0.1 fetched in 90ms<br> 2571 http fetch GET 304 <a href="https://registry.npmjs.org/repeat-string" rel="nofollow">https://registry.npmjs.org/repeat-string</a> 80ms (from cache)<br> 2572 silly pacote range manifest for is-extendable@^0.1.0 fetched in 77ms<br> 2573 silly pacote range manifest for debug@^2.2.0 fetched in 3ms<br> 2574 silly pacote range manifest for repeat-string@^1.6.1 fetched in 85ms<br> 2575 silly pacote range manifest for define-property@^0.2.5 fetched in 3ms<br> 2576 silly pacote range manifest for source-map@^0.5.6 fetched in 2ms<br> 2577 silly pacote range manifest for source-map-resolve@^0.5.0 fetched in 2ms<br> 2578 http fetch GET 304 <a href="https://registry.npmjs.org/map-cache" rel="nofollow">https://registry.npmjs.org/map-cache</a> 74ms (from cache)<br> 2579 silly pacote range manifest for map-cache@^0.2.2 fetched in 79ms<br> 2580 silly pacote range manifest for define-property@^1.0.0 fetched in 3ms<br> 2581 silly pacote range manifest for isobject@^3.0.0 fetched in 3ms<br> 2582 http fetch GET 304 <a href="https://registry.npmjs.org/base" rel="nofollow">https://registry.npmjs.org/base</a> 98ms (from cache)<br> 2583 silly pacote range manifest for base@^0.11.1 fetched in 101ms<br> 2584 silly pacote range manifest for is-extglob@^2.1.0 fetched in 2ms<br> 2585 http fetch GET 304 <a href="https://registry.npmjs.org/use" rel="nofollow">https://registry.npmjs.org/use</a> 90ms (from cache)<br> 2586 silly pacote range manifest for extend-shallow@^3.0.0 fetched in 2ms<br> 2587 silly pacote range manifest for use@^3.1.0 fetched in 94ms<br> 2588 silly pacote range manifest for inherits@~2.0.3 fetched in 2ms<br> 2589 http fetch GET 304 <a href="https://registry.npmjs.org/core-util-is" rel="nofollow">https://registry.npmjs.org/core-util-is</a> 75ms (from cache)<br> 2590 silly pacote range manifest for core-util-is@~1.0.0 fetched in 78ms<br> 2591 http fetch GET 304 <a href="https://registry.npmjs.org/snapdragon-util" rel="nofollow">https://registry.npmjs.org/snapdragon-util</a> 119ms (from cache)<br> 2592 http fetch GET 304 <a href="https://registry.npmjs.org/isarray" rel="nofollow">https://registry.npmjs.org/isarray</a> 100ms (from cache)<br> 2593 silly pacote range manifest for isarray@~1.0.0 fetched in 103ms<br> 2594 silly pacote range manifest for snapdragon-util@^3.0.1 fetched in 123ms<br> 2595 silly pacote range manifest for string_decoder@~1.1.1 fetched in 2ms<br> 2596 silly pacote range manifest for util-deprecate@~1.0.1 fetched in 2ms<br> 2597 silly pacote range manifest for regex-not@^1.0.2 fetched in 2ms<br> 2598 http fetch GET 304 <a href="https://registry.npmjs.org/process-nextick-args" rel="nofollow">https://registry.npmjs.org/process-nextick-args</a> 77ms (from cache)<br> 2599 silly pacote range manifest for process-nextick-args@~2.0.0 fetched in 79ms<br> 2600 silly pacote range manifest for call-bind@^1.0.2 fetched in 1ms<br> 2601 silly pacote range manifest for has-symbols@^1.0.2 fetched in 2ms<br> 2602 silly pacote range manifest for ip@^1.1.0 fetched in 1ms<br> 2603 silly pacote range manifest for safe-buffer@^5.0.1 fetched in 1ms<br> 2604 http fetch GET 304 <a href="https://registry.npmjs.org/safe-regex" rel="nofollow">https://registry.npmjs.org/safe-regex</a> 67ms (from cache)<br> 2605 silly pacote range manifest for safe-regex@^1.1.0 fetched in 69ms<br> 2606 http fetch GET 304 <a href="https://registry.npmjs.org/file-uri-to-path" rel="nofollow">https://registry.npmjs.org/file-uri-to-path</a> 73ms (from cache)<br> 2607 silly pacote version manifest for [email protected] fetched in 75ms<br> 2608 http fetch GET 304 <a href="https://registry.npmjs.org/array-uniq" rel="nofollow">https://registry.npmjs.org/array-uniq</a> 62ms (from cache)<br> 2609 silly pacote range manifest for array-uniq@^1.0.1 fetched in 65ms<br> 2610 http fetch GET 304 <a href="https://registry.npmjs.org/pinkie" rel="nofollow">https://registry.npmjs.org/pinkie</a> 89ms (from cache)<br> 2611 http fetch GET 200 <a href="https://registry.npmjs.org/path-is-inside" rel="nofollow">https://registry.npmjs.org/path-is-inside</a> 82ms<br> 2612 silly pacote range manifest for pinkie@^2.0.0 fetched in 97ms<br> 2613 silly pacote range manifest for is-extendable@^1.0.1 fetched in 3ms<br> 2614 http fetch GET 304 <a href="https://registry.npmjs.org/assign-symbols" rel="nofollow">https://registry.npmjs.org/assign-symbols</a> 76ms (from cache)<br> 2615 silly pacote range manifest for assign-symbols@^1.0.0 fetched in 79ms<br> 2616 http fetch GET 200 <a href="https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz</a> 62ms<br> 2617 http fetch GET 304 <a href="https://registry.npmjs.org/is-descriptor" rel="nofollow">https://registry.npmjs.org/is-descriptor</a> 58ms (from cache)<br> 2618 silly pacote range manifest for is-descriptor@^1.0.2 fetched in 60ms<br> 2619 silly pacote range manifest for path-is-inside@^1.0.2 fetched in 155ms<br> 2620 http fetch GET 200 <a href="https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" rel="nofollow">https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz</a> 4ms (from cache)<br> 2621 silly pacote version manifest for [email protected] fetched in 9ms<br> 2622 http fetch GET 304 <a href="https://registry.npmjs.org/is-windows" rel="nofollow">https://registry.npmjs.org/is-windows</a> 60ms (from cache)<br> 2623 silly pacote range manifest for is-windows@^1.0.2 fetched in 62ms<br> 2624 http fetch GET 304 <a href="https://registry.npmjs.org/cross-spawn" rel="nofollow">https://registry.npmjs.org/cross-spawn</a> 87ms (from cache)<br> 2625 http fetch GET 304 <a href="https://registry.npmjs.org/expand-brackets" rel="nofollow">https://registry.npmjs.org/expand-brackets</a> 103ms (from cache)<br> 2626 silly pacote range manifest for expand-brackets@^2.1.4 fetched in 107ms<br> 2627 http fetch GET 200 <a href="https://registry.npmjs.org/get-stream" rel="nofollow">https://registry.npmjs.org/get-stream</a> 85ms<br> 2628 http fetch GET 200 <a href="https://registry.npmjs.org/is-stream" rel="nofollow">https://registry.npmjs.org/is-stream</a> 81ms<br> 2629 http fetch GET 200 <a href="https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz</a> 80ms<br> 2630 silly pacote range manifest for get-stream@^4.0.0 fetched in 182ms<br> 2631 http fetch GET 200 <a href="https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" rel="nofollow">https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz</a> 109ms<br> 2632 silly pacote range manifest for cross-spawn@^6.0.0 fetched in 206ms<br> 2633 http fetch GET 200 <a href="https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz</a> 75ms<br> 2634 silly pacote range manifest for is-stream@^1.1.0 fetched in 164ms<br> 2635 silly pacote range manifest for signal-exit@^3.0.0 fetched in 2ms<br> 2636 http fetch GET 200 <a href="https://registry.npmjs.org/npm-run-path" rel="nofollow">https://registry.npmjs.org/npm-run-path</a> 65ms<br> 2637 http fetch GET 200 <a href="https://registry.npmjs.org/p-finally" rel="nofollow">https://registry.npmjs.org/p-finally</a> 67ms<br> 2638 http fetch GET 200 <a href="https://registry.npmjs.org/strip-eof" rel="nofollow">https://registry.npmjs.org/strip-eof</a> 64ms<br> 2639 http fetch GET 200 <a href="https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz</a> 65ms<br> 2640 silly pacote range manifest for npm-run-path@^2.0.0 fetched in 146ms<br> 2641 silly pacote range manifest for inherits@^2.0.1 fetched in 3ms<br> 2642 silly pacote range manifest for obuf@^1.0.0 fetched in 2ms<br> 2643 silly pacote range manifest for wbuf@^1.1.0 fetched in 1ms<br> 2644 silly pacote range manifest for ansi-regex@^4.1.0 fetched in 2ms<br> 2645 silly pacote range manifest for ansi-styles@^3.2.0 fetched in 2ms<br> 2646 silly pacote range manifest for strip-ansi@^5.0.0 fetched in 3ms<br> 2647 silly pacote range manifest for p-locate@^3.0.0 fetched in 2ms<br> 2648 silly pacote range manifest for path-exists@^3.0.0 fetched in 2ms<br> 2649 http fetch GET 200 <a href="https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz</a> 89ms<br> 2650 silly pacote range manifest for p-finally@^1.0.0 fetched in 163ms<br> 2651 silly pacote range manifest for url-parse@^1.4.3 fetched in 1ms<br> 2652 http fetch GET 200 <a href="https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz</a> 56ms<br> 2653 silly pacote range manifest for strip-eof@^1.0.0 fetched in 126ms<br> 2654 silly pacote range manifest for readable-stream@^2.0.6 fetched in 1ms<br> 2655 http fetch GET 200 <a href="https://registry.npmjs.org/minimalistic-assert" rel="nofollow">https://registry.npmjs.org/minimalistic-assert</a> 71ms<br> 2656 http fetch GET 304 <a href="https://registry.npmjs.org/delegates" rel="nofollow">https://registry.npmjs.org/delegates</a> 64ms (from cache)<br> 2657 silly pacote range manifest for delegates@^1.0.0 fetched in 65ms<br> 2658 silly pacote range manifest for console-control-strings@^1.0.0 fetched in 1ms<br> 2659 http fetch GET 304 <a href="https://registry.npmjs.org/aproba" rel="nofollow">https://registry.npmjs.org/aproba</a> 77ms (from cache)<br> 2660 silly pacote range manifest for aproba@^1.0.3 fetched in 78ms<br> 2661 silly pacote range manifest for object-assign@^4.1.0 fetched in 1ms<br> 2662 silly pacote range manifest for string-width@^1.0.1 fetched in 1ms<br> 2663 http fetch GET 200 <a href="https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz</a> 83ms<br> 2664 http fetch GET 304 <a href="https://registry.npmjs.org/has-unicode" rel="nofollow">https://registry.npmjs.org/has-unicode</a> 81ms (from cache)<br> 2665 silly pacote range manifest for has-unicode@^2.0.0 fetched in 82ms<br> 2666 silly pacote range manifest for minimalistic-assert@^1.0.0 fetched in 162ms<br> 2667 http fetch GET 304 <a href="https://registry.npmjs.org/wide-align" rel="nofollow">https://registry.npmjs.org/wide-align</a> 133ms (from cache)<br> 2668 silly pacote range manifest for wide-align@^1.1.0 fetched in 134ms<br> 2669 http fetch GET 304 <a href="https://registry.npmjs.org/assert-plus" rel="nofollow">https://registry.npmjs.org/assert-plus</a> 91ms (from cache)<br> 2670 http fetch GET 304 <a href="https://registry.npmjs.org/delayed-stream" rel="nofollow">https://registry.npmjs.org/delayed-stream</a> 96ms (from cache)<br> 2671 silly pacote range manifest for assert-plus@^1.0.0 fetched in 94ms<br> 2672 silly pacote range manifest for delayed-stream@~1.0.0 fetched in 99ms<br> 2673 http fetch GET 304 <a href="https://registry.npmjs.org/sshpk" rel="nofollow">https://registry.npmjs.org/sshpk</a> 94ms (from cache)<br> 2674 silly pacote range manifest for sshpk@^1.7.0 fetched in 96ms<br> 2675 http fetch GET 304 <a href="https://registry.npmjs.org/jsprim" rel="nofollow">https://registry.npmjs.org/jsprim</a> 110ms (from cache)<br> 2676 silly pacote range manifest for combined-stream@^1.0.6 fetched in 3ms<br> 2677 silly pacote range manifest for jsprim@^1.2.2 fetched in 113ms<br> 2678 silly pacote range manifest for mime-types@^2.1.12 fetched in 4ms<br> 2679 silly pacote range manifest for ajv@^6.12.3 fetched in 5ms<br> 2680 http fetch GET 304 <a href="https://registry.npmjs.org/asynckit" rel="nofollow">https://registry.npmjs.org/asynckit</a> 145ms (from cache)<br> 2681 silly pacote range manifest for asynckit@^0.4.0 fetched in 145ms<br> 2682 silly pacote range manifest for punycode@^2.1.1 fetched in 0ms<br> 2683 silly pacote range manifest for ms@^2.0.0 fetched in 1ms<br> 2684 http fetch GET 304 <a href="https://registry.npmjs.org/har-schema" rel="nofollow">https://registry.npmjs.org/har-schema</a> 60ms (from cache)<br> 2685 silly pacote range manifest for har-schema@^2.0.0 fetched in 60ms<br> 2686 silly pacote range manifest for object-keys@^1.0.12 fetched in 0ms<br> 2687 http fetch GET 304 <a href="https://registry.npmjs.org/psl" rel="nofollow">https://registry.npmjs.org/psl</a> 79ms (from cache)<br> 2688 silly pacote range manifest for psl@^1.1.28 fetched in 80ms<br> 2689 http fetch GET 304 <a href="https://registry.npmjs.org/smart-buffer" rel="nofollow">https://registry.npmjs.org/smart-buffer</a> 54ms (from cache)<br> 2690 silly pacote range manifest for smart-buffer@^4.1.0 fetched in 55ms<br> 2691 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" rel="nofollow">https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz</a> 73ms<br> 2692 http fetch GET 304 <a href="https://registry.npmjs.org/get-intrinsic" rel="nofollow">https://registry.npmjs.org/get-intrinsic</a> 100ms (from cache)<br> 2693 silly pacote range manifest for get-intrinsic@^1.0.2 fetched in 104ms<br> 2694 silly pacote range manifest for jsesc@~0.5.0 fetched in 88ms<br> 2695 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-canonical-property-names-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-canonical-property-names-ecmascript</a> 74ms<br> 2696 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-property-aliases-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-property-aliases-ecmascript</a> 68ms<br> 2697 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz</a> 88ms<br> 2698 silly pacote range manifest for unicode-canonical-property-names-ecmascript@^1.0.4 fetched in 177ms<br> 2699 silly pacote range manifest for browserslist@^4.0.0 fetched in 3ms<br> 2700 silly pacote range manifest for caniuse-lite@^1.0.0 fetched in 5ms<br> 2701 http fetch GET 200 <a href="https://registry.npmjs.org/queue-microtask" rel="nofollow">https://registry.npmjs.org/queue-microtask</a> 117ms<br> 2702 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz</a> 79ms<br> 2703 silly pacote range manifest for unicode-property-aliases-ecmascript@^1.0.4 fetched in 156ms<br> 2704 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.memoize" rel="nofollow">https://registry.npmjs.org/lodash.memoize</a> 76ms<br> 2705 http fetch GET 200 <a href="https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" rel="nofollow">https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz</a> 86ms<br> 2706 silly pacote range manifest for queue-microtask@^1.2.2 fetched in 213ms<br> 2707 silly pacote range manifest for p-limit@^2.2.0 fetched in 3ms<br> 2708 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.uniq" rel="nofollow">https://registry.npmjs.org/lodash.uniq</a> 78ms<br> 2709 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" rel="nofollow">https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz</a> 81ms<br> 2710 http fetch GET 200 <a href="https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz" rel="nofollow">https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz</a> 64ms<br> 2711 silly pacote range manifest for lodash.memoize@^4.1.2 fetched in 177ms<br> 2712 silly pacote range manifest for css-color-names@^0.0.4 fetched in 78ms<br> 2713 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" rel="nofollow">https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz</a> 112ms<br> 2714 silly pacote range manifest for lodash.uniq@^4.5.0 fetched in 195ms<br> 2715 http fetch GET 200 <a href="https://registry.npmjs.org/hsl-regex" rel="nofollow">https://registry.npmjs.org/hsl-regex</a> 61ms<br> 2716 http fetch GET 200 <a href="https://registry.npmjs.org/hex-color-regex" rel="nofollow">https://registry.npmjs.org/hex-color-regex</a> 64ms<br> 2717 http fetch GET 200 <a href="https://registry.npmjs.org/hsla-regex" rel="nofollow">https://registry.npmjs.org/hsla-regex</a> 74ms<br> 2718 http fetch GET 200 <a href="https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz</a> 93ms<br> 2719 http fetch GET 200 <a href="https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz</a> 96ms<br> 2720 silly pacote range manifest for hex-color-regex@^1.1.0 fetched in 172ms<br> 2721 silly pacote range manifest for hsl-regex@^1.0.0 fetched in 173ms<br> 2722 http fetch GET 200 <a href="https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz</a> 62ms<br> 2723 silly pacote range manifest for hsla-regex@^1.0.0 fetched in 145ms<br> 2724 http fetch GET 200 <a href="https://registry.npmjs.org/rgb-regex" rel="nofollow">https://registry.npmjs.org/rgb-regex</a> 65ms<br> 2725 http fetch GET 200 <a href="https://registry.npmjs.org/rgba-regex" rel="nofollow">https://registry.npmjs.org/rgba-regex</a> 79ms<br> 2726 http fetch GET 200 <a href="https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz</a> 59ms<br> 2727 silly pacote range manifest for rgb-regex@^1.0.1 fetched in 132ms<br> 2728 http fetch GET 200 <a href="https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz</a> 57ms<br> 2729 silly pacote range manifest for rgba-regex@^1.0.0 fetched in 142ms<br> 2730 http fetch GET 200 <a href="https://registry.npmjs.org/commander/-/commander-7.2.0.tgz" rel="nofollow">https://registry.npmjs.org/commander/-/commander-7.2.0.tgz</a> 115ms<br> 2731 silly pacote range manifest for commander@^7.1.0 fetched in 127ms<br> 2732 http fetch GET 200 <a href="https://registry.npmjs.org/css-select" rel="nofollow">https://registry.npmjs.org/css-select</a> 126ms<br> 2733 http fetch GET 200 <a href="https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz" rel="nofollow">https://registry.npmjs.org/css-select/-/css-select-3.1.2.tgz</a> 93ms<br> 2734 silly pacote range manifest for css-select@^3.1.2 fetched in 233ms<br> 2735 http fetch GET 200 <a href="https://registry.npmjs.org/css-tree" rel="nofollow">https://registry.npmjs.org/css-tree</a> 130ms<br> 2736 http fetch GET 200 <a href="https://registry.npmjs.org/csso" rel="nofollow">https://registry.npmjs.org/csso</a> 184ms<br> 2737 http fetch GET 200 <a href="https://registry.npmjs.org/@trysound%2fsax" rel="nofollow">https://registry.npmjs.org/@trysound%2fsax</a> 699ms<br> 2738 http fetch GET 200 <a href="https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz</a> 334ms<br> 2739 silly pacote range manifest for css-tree@^1.1.2 fetched in 483ms<br> 2740 http fetch GET 200 <a href="https://registry.npmjs.org/stable" rel="nofollow">https://registry.npmjs.org/stable</a> 78ms<br> 2741 http fetch GET 200 <a href="https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz" rel="nofollow">https://registry.npmjs.org/@trysound/sax/-/sax-0.1.1.tgz</a> 123ms<br> 2742 silly pacote version manifest for @trysound/[email protected] fetched in 833ms<br> 2743 silly pacote version manifest for [email protected] fetched in 2ms<br> 2744 silly pacote range manifest for kind-of@^3.0.2 fetched in 2ms<br> 2745 silly pacote range manifest for is-descriptor@^0.1.0 fetched in 5ms<br> 2746 silly pacote range manifest for is-descriptor@^1.0.0 fetched in 2ms<br> 2747 http fetch GET 200 <a href="https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" rel="nofollow">https://registry.npmjs.org/stable/-/stable-0.1.8.tgz</a> 77ms<br> 2748 silly pacote range manifest for stable@^0.1.8 fetched in 161ms<br> 2749 http fetch GET 304 <a href="https://registry.npmjs.org/cache-base" rel="nofollow">https://registry.npmjs.org/cache-base</a> 71ms (from cache)<br> 2750 silly pacote range manifest for cache-base@^1.0.1 fetched in 72ms<br> 2751 silly pacote range manifest for component-emitter@^1.2.1 fetched in 2ms<br> 2752 http fetch GET 304 <a href="https://registry.npmjs.org/class-utils" rel="nofollow">https://registry.npmjs.org/class-utils</a> 71ms (from cache)<br> 2753 silly pacote range manifest for class-utils@^0.3.5 fetched in 73ms<br> 2754 http fetch GET 200 <a href="https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/csso/-/csso-4.2.0.tgz</a> 450ms<br> 2755 silly pacote range manifest for csso@^4.2.0 fetched in 643ms<br> 2756 silly pacote range manifest for kind-of@^3.2.0 fetched in 1ms<br> 2757 silly pacote range manifest for safe-buffer@~5.1.0 fetched in 1ms<br> 2758 http fetch GET 304 <a href="https://registry.npmjs.org/mixin-deep" rel="nofollow">https://registry.npmjs.org/mixin-deep</a> 83ms (from cache)<br> 2759 silly pacote range manifest for mixin-deep@^1.2.0 fetched in 86ms<br> 2760 http fetch GET 304 <a href="https://registry.npmjs.org/pascalcase" rel="nofollow">https://registry.npmjs.org/pascalcase</a> 62ms (from cache)<br> 2761 silly pacote range manifest for pascalcase@^0.1.1 fetched in 63ms<br> 2762 http fetch GET 304 <a href="https://registry.npmjs.org/is-accessor-descriptor" rel="nofollow">https://registry.npmjs.org/is-accessor-descriptor</a> 61ms (from cache)<br> 2763 silly pacote range manifest for is-accessor-descriptor@^1.0.0 fetched in 64ms<br> 2764 silly pacote range manifest for debug@^2.3.3 fetched in 4ms<br> 2765 http fetch GET 304 <a href="https://registry.npmjs.org/ret" rel="nofollow">https://registry.npmjs.org/ret</a> 81ms (from cache)<br> 2766 silly pacote range manifest for ret@~0.1.10 fetched in 84ms<br> 2767 http fetch GET 304 <a href="https://registry.npmjs.org/is-data-descriptor" rel="nofollow">https://registry.npmjs.org/is-data-descriptor</a> 78ms (from cache)<br> 2768 silly pacote range manifest for is-data-descriptor@^1.0.0 fetched in 80ms<br> 2769 http fetch GET 304 <a href="https://registry.npmjs.org/posix-character-classes" rel="nofollow">https://registry.npmjs.org/posix-character-classes</a> 93ms (from cache)<br> 2770 silly pacote range manifest for posix-character-classes@^0.1.0 fetched in 98ms<br> 2771 http fetch GET 304 <a href="https://registry.npmjs.org/pump" rel="nofollow">https://registry.npmjs.org/pump</a> 99ms (from cache)<br> 2772 http fetch GET 200 <a href="https://registry.npmjs.org/nice-try" rel="nofollow">https://registry.npmjs.org/nice-try</a> 94ms<br> 2773 http fetch GET 200 <a href="https://registry.npmjs.org/path-key" rel="nofollow">https://registry.npmjs.org/path-key</a> 78ms<br> 2774 http fetch GET 200 <a href="https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" rel="nofollow">https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz</a> 80ms<br> 2775 http fetch GET 200 <a href="https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/pump/-/pump-3.0.0.tgz</a> 86ms<br> 2776 silly pacote range manifest for nice-try@^1.0.4 fetched in 187ms<br> 2777 silly pacote range manifest for semver@^5.5.0 fetched in 2ms<br> 2778 silly pacote range manifest for pump@^3.0.0 fetched in 200ms<br> 2779 silly pacote range manifest for which@^1.2.9 fetched in 3ms<br> 2780 http fetch GET 200 <a href="https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz</a> 64ms<br> 2781 silly pacote range manifest for path-key@^2.0.1 fetched in 154ms<br> 2782 silly pacote range manifest for p-limit@^2.0.0 fetched in 1ms<br> 2783 http fetch GET 200 <a href="https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz</a> 65ms<br> 2784 silly pacote range manifest for path-key@^2.0.0 fetched in 74ms<br> 2785 silly pacote range manifest for is-fullwidth-code-point@^1.0.0 fetched in 1ms<br> 2786 silly pacote range manifest for strip-ansi@^3.0.0 fetched in 3ms<br> 2787 silly pacote range manifest for string-width@^1.0.2 || 2 fetched in 1ms<br> 2788 http fetch GET 200 <a href="https://registry.npmjs.org/shebang-command" rel="nofollow">https://registry.npmjs.org/shebang-command</a> 91ms<br> 2789 http fetch GET 304 <a href="https://registry.npmjs.org/code-point-at" rel="nofollow">https://registry.npmjs.org/code-point-at</a> 72ms (from cache)<br> 2790 silly pacote range manifest for code-point-at@^1.0.0 fetched in 75ms<br> 2791 http fetch GET 304 <a href="https://registry.npmjs.org/asn1" rel="nofollow">https://registry.npmjs.org/asn1</a> 82ms (from cache)<br> 2792 silly pacote range manifest for asn1@~0.2.3 fetched in 85ms<br> 2793 http fetch GET 200 <a href="https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz</a> 89ms<br> 2794 silly pacote range manifest for shebang-command@^1.2.0 fetched in 192ms<br> 2795 silly pacote range manifest for safer-buffer@^2.0.2 fetched in 1ms<br> 2796 http fetch GET 304 <a href="https://registry.npmjs.org/dashdash" rel="nofollow">https://registry.npmjs.org/dashdash</a> 88ms (from cache)<br> 2797 silly pacote range manifest for dashdash@^1.12.0 fetched in 90ms<br> 2798 http fetch GET 304 <a href="https://registry.npmjs.org/getpass" rel="nofollow">https://registry.npmjs.org/getpass</a> 92ms (from cache)<br> 2799 silly pacote range manifest for getpass@^0.1.1 fetched in 93ms<br> 2800 http fetch GET 304 <a href="https://registry.npmjs.org/tweetnacl" rel="nofollow">https://registry.npmjs.org/tweetnacl</a> 82ms (from cache)<br> 2801 silly pacote range manifest for tweetnacl@~0.14.0 fetched in 85ms<br> 2802 http fetch GET 304 <a href="https://registry.npmjs.org/jsbn" rel="nofollow">https://registry.npmjs.org/jsbn</a> 99ms (from cache)<br> 2803 silly pacote range manifest for jsbn@~0.1.0 fetched in 105ms<br> 2804 silly pacote version manifest for [email protected] fetched in 2ms<br> 2805 http fetch GET 304 <a href="https://registry.npmjs.org/ecc-jsbn" rel="nofollow">https://registry.npmjs.org/ecc-jsbn</a> 124ms (from cache)<br> 2806 silly pacote range manifest for ecc-jsbn@~0.1.1 fetched in 126ms<br> 2807 http fetch GET 304 <a href="https://registry.npmjs.org/bcrypt-pbkdf" rel="nofollow">https://registry.npmjs.org/bcrypt-pbkdf</a> 98ms (from cache)<br> 2808 silly pacote range manifest for bcrypt-pbkdf@^1.0.0 fetched in 104ms<br> 2809 http fetch GET 304 <a href="https://registry.npmjs.org/extsprintf" rel="nofollow">https://registry.npmjs.org/extsprintf</a> 114ms (from cache)<br> 2810 silly pacote version manifest for [email protected] fetched in 116ms<br> 2811 http fetch GET 304 <a href="https://registry.npmjs.org/json-schema" rel="nofollow">https://registry.npmjs.org/json-schema</a> 82ms (from cache)<br> 2812 silly pacote version manifest for [email protected] fetched in 83ms<br> 2813 http fetch GET 304 <a href="https://registry.npmjs.org/p-try" rel="nofollow">https://registry.npmjs.org/p-try</a> 69ms (from cache)<br> 2814 http fetch GET 304 <a href="https://registry.npmjs.org/verror" rel="nofollow">https://registry.npmjs.org/verror</a> 89ms (from cache)<br> 2815 silly pacote version manifest for [email protected] fetched in 90ms<br> 2816 silly pacote range manifest for p-try@^2.0.0 fetched in 72ms<br> 2817 http fetch GET 200 <a href="https://registry.npmjs.org/boolbase" rel="nofollow">https://registry.npmjs.org/boolbase</a> 63ms<br> 2818 http fetch GET 200 <a href="https://registry.npmjs.org/css-what" rel="nofollow">https://registry.npmjs.org/css-what</a> 86ms<br> 2819 http fetch GET 200 <a href="https://registry.npmjs.org/domhandler" rel="nofollow">https://registry.npmjs.org/domhandler</a> 87ms<br> 2820 http fetch GET 200 <a href="https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz</a> 67ms<br> 2821 silly pacote range manifest for boolbase@^1.0.0 fetched in 133ms<br> 2822 http fetch GET 200 <a href="https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/css-what/-/css-what-4.0.0.tgz</a> 71ms<br> 2823 silly pacote range manifest for css-what@^4.0.0 fetched in 167ms<br> 2824 http fetch GET 200 <a href="https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz</a> 91ms<br> 2825 silly pacote range manifest for domhandler@^4.0.0 fetched in 189ms<br> 2826 http fetch GET 200 <a href="https://registry.npmjs.org/nth-check" rel="nofollow">https://registry.npmjs.org/nth-check</a> 86ms<br> 2827 http fetch GET 200 <a href="https://registry.npmjs.org/domutils" rel="nofollow">https://registry.npmjs.org/domutils</a> 158ms<br> 2828 http fetch GET 200 <a href="https://registry.npmjs.org/mdn-data" rel="nofollow">https://registry.npmjs.org/mdn-data</a> 96ms<br> 2829 http fetch GET 200 <a href="https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/nth-check/-/nth-check-2.0.0.tgz</a> 87ms<br> 2830 silly pacote range manifest for nth-check@^2.0.0 fetched in 182ms<br> 2831 http fetch GET 200 <a href="https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz" rel="nofollow">https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz</a> 103ms<br> 2832 silly pacote range manifest for domutils@^2.4.3 fetched in 268ms<br> 2833 silly pacote range manifest for is-accessor-descriptor@^0.1.6 fetched in 2ms<br> 2834 silly pacote range manifest for is-data-descriptor@^0.1.4 fetched in 1ms<br> 2835 silly pacote range manifest for kind-of@^5.0.0 fetched in 1ms<br> 2836 http fetch GET 304 <a href="https://registry.npmjs.org/is-buffer" rel="nofollow">https://registry.npmjs.org/is-buffer</a> 66ms (from cache)<br> 2837 silly pacote range manifest for is-buffer@^1.1.5 fetched in 67ms<br> 2838 http fetch GET 200 <a href="https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" rel="nofollow">https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz</a> 152ms<br> 2839 silly pacote version manifest for [email protected] fetched in 255ms<br> 2840 http fetch GET 304 <a href="https://registry.npmjs.org/collection-visit" rel="nofollow">https://registry.npmjs.org/collection-visit</a> 70ms (from cache)<br> 2841 silly pacote range manifest for collection-visit@^1.0.0 fetched in 72ms<br> 2842 http fetch GET 304 <a href="https://registry.npmjs.org/get-value" rel="nofollow">https://registry.npmjs.org/get-value</a> 64ms (from cache)<br> 2843 silly pacote range manifest for get-value@^2.0.6 fetched in 68ms<br> 2844 http fetch GET 304 <a href="https://registry.npmjs.org/set-value" rel="nofollow">https://registry.npmjs.org/set-value</a> 92ms (from cache)<br> 2845 silly pacote range manifest for set-value@^2.0.0 fetched in 95ms<br> 2846 http fetch GET 304 <a href="https://registry.npmjs.org/to-object-path" rel="nofollow">https://registry.npmjs.org/to-object-path</a> 81ms (from cache)<br> 2847 silly pacote range manifest for to-object-path@^0.3.0 fetched in 117ms<br> 2848 http fetch GET 304 <a href="https://registry.npmjs.org/has-value" rel="nofollow">https://registry.npmjs.org/has-value</a> 170ms (from cache)<br> 2849 silly pacote range manifest for has-value@^1.0.0 fetched in 172ms<br> 2850 http fetch GET 304 <a href="https://registry.npmjs.org/union-value" rel="nofollow">https://registry.npmjs.org/union-value</a> 90ms (from cache)<br> 2851 silly pacote range manifest for union-value@^1.0.0 fetched in 92ms<br> 2852 http fetch GET 304 <a href="https://registry.npmjs.org/unset-value" rel="nofollow">https://registry.npmjs.org/unset-value</a> 69ms (from cache)<br> 2853 silly pacote range manifest for unset-value@^1.0.0 fetched in 70ms<br> 2854 http fetch GET 304 <a href="https://registry.npmjs.org/arr-union" rel="nofollow">https://registry.npmjs.org/arr-union</a> 75ms (from cache)<br> 2855 silly pacote range manifest for arr-union@^3.1.0 fetched in 77ms<br> 2856 silly pacote range manifest for kind-of@^6.0.0 fetched in 1ms<br> 2857 http fetch GET 304 <a href="https://registry.npmjs.org/static-extend" rel="nofollow">https://registry.npmjs.org/static-extend</a> 64ms (from cache)<br> 2858 silly pacote range manifest for static-extend@^0.1.1 fetched in 66ms<br> 2859 silly pacote range manifest for once@^1.3.1 fetched in 1ms<br> 2860 http fetch GET 304 <a href="https://registry.npmjs.org/for-in" rel="nofollow">https://registry.npmjs.org/for-in</a> 72ms (from cache)<br> 2861 silly pacote range manifest for for-in@^1.0.2 fetched in 73ms<br> 2862 silly pacote range manifest for strip-ansi@^4.0.0 fetched in 1ms<br> 2863 silly pacote range manifest for safer-buffer@~2.1.0 fetched in 1ms<br> 2864 http fetch GET 304 <a href="https://registry.npmjs.org/end-of-stream" rel="nofollow">https://registry.npmjs.org/end-of-stream</a> 57ms (from cache)<br> 2865 silly pacote range manifest for end-of-stream@^1.1.0 fetched in 58ms<br> 2866 silly pacote range manifest for safer-buffer@^2.1.0 fetched in 1ms<br> 2867 silly pacote range manifest for tweetnacl@^0.14.3 fetched in 0ms<br> 2868 silly pacote version manifest for [email protected] fetched in 1ms<br> 2869 silly pacote range manifest for extsprintf@^1.2.0 fetched in 1ms<br> 2870 http fetch GET 304 <a href="https://registry.npmjs.org/number-is-nan" rel="nofollow">https://registry.npmjs.org/number-is-nan</a> 69ms (from cache)<br> 2871 silly pacote range manifest for number-is-nan@^1.0.0 fetched in 70ms<br> 2872 http fetch GET 200 <a href="https://registry.npmjs.org/shebang-regex" rel="nofollow">https://registry.npmjs.org/shebang-regex</a> 50ms<br> 2873 http fetch GET 200 <a href="https://registry.npmjs.org/domelementtype" rel="nofollow">https://registry.npmjs.org/domelementtype</a> 70ms<br> 2874 http fetch GET 200 <a href="https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz</a> 56ms<br> 2875 silly pacote range manifest for shebang-regex@^1.0.0 fetched in 113ms<br> 2876 silly pacote range manifest for domhandler@^4.2.0 fetched in 2ms<br> 2877 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serializer" rel="nofollow">https://registry.npmjs.org/dom-serializer</a> 99ms<br> 2878 http fetch GET 200 <a href="https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz</a> 61ms<br> 2879 silly pacote range manifest for domelementtype@^2.2.0 fetched in 140ms<br> 2880 http fetch GET 304 <a href="https://registry.npmjs.org/map-visit" rel="nofollow">https://registry.npmjs.org/map-visit</a> 73ms (from cache)<br> 2881 silly pacote range manifest for map-visit@^1.0.0 fetched in 75ms<br> 2882 silly pacote range manifest for is-extendable@^0.1.1 fetched in 2ms<br> 2883 silly pacote range manifest for is-plain-object@^2.0.3 fetched in 2ms<br> 2884 silly pacote range manifest for split-string@^3.0.1 fetched in 2ms<br> 2885 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz" rel="nofollow">https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz</a> 70ms<br> 2886 http fetch GET 304 <a href="https://registry.npmjs.org/object-visit" rel="nofollow">https://registry.npmjs.org/object-visit</a> 64ms (from cache)<br> 2887 silly pacote range manifest for object-visit@^1.0.0 fetched in 65ms<br> 2888 silly pacote range manifest for set-value@^2.0.1 fetched in 1ms<br> 2889 silly pacote range manifest for dom-serializer@^1.0.1 fetched in 177ms<br> 2890 silly pacote range manifest for has-value@^0.3.1 fetched in 4ms<br> 2891 silly pacote range manifest for ansi-regex@^3.0.0 fetched in 3ms<br> 2892 silly pacote range manifest for once@^1.4.0 fetched in 1ms<br> 2893 silly pacote range manifest for domelementtype@^2.0.1 fetched in 1ms<br> 2894 http fetch GET 304 <a href="https://registry.npmjs.org/has-values" rel="nofollow">https://registry.npmjs.org/has-values</a> 104ms (from cache)<br> 2895 silly pacote range manifest for has-values@^1.0.0 fetched in 107ms<br> 2896 silly pacote range manifest for get-value@^2.0.3 fetched in 1ms<br> 2897 http fetch GET 304 <a href="https://registry.npmjs.org/object-copy" rel="nofollow">https://registry.npmjs.org/object-copy</a> 89ms (from cache)<br> 2898 silly pacote range manifest for has-values@^0.1.4 fetched in 2ms<br> 2899 silly pacote range manifest for object-copy@^0.1.0 fetched in 92ms<br> 2900 silly pacote range manifest for isobject@^2.0.0 fetched in 3ms<br> 2901 silly pacote range manifest for kind-of@^4.0.0 fetched in 4ms<br> 2902 silly pacote range manifest for kind-of@^3.0.3 fetched in 2ms<br> 2903 silly pacote version manifest for [email protected] fetched in 1ms<br> 2904 http fetch GET 200 <a href="https://registry.npmjs.org/entities" rel="nofollow">https://registry.npmjs.org/entities</a> 102ms<br> 2905 http fetch GET 304 <a href="https://registry.npmjs.org/copy-descriptor" rel="nofollow">https://registry.npmjs.org/copy-descriptor</a> 91ms (from cache)<br> 2906 silly pacote range manifest for copy-descriptor@^0.1.0 fetched in 94ms<br> 2907 http fetch GET 200 <a href="https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/entities/-/entities-2.2.0.tgz</a> 94ms<br> 2908 silly pacote range manifest for entities@^2.0.0 fetched in 205ms<br> 2909 timing npm Completed in 85444ms<br> 2910 error cb() never called!<br> 2911 error This is an error with npm itself. Please report this error at:<br> 2912 error <a href="https://npm.community" rel="nofollow">https://npm.community</a></p>
<h3 dir="auto">Current Behavior:</h3> <p dir="auto"><code class="notranslate">npm</code> fails to update in the v15.0.1 Docker container when trying the command <code class="notranslate">npm</code> prints out for updating.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ docker run -it node:15.0.1 npm install -g [email protected] npm notice npm notice New patch version of npm available! 7.0.3 -&gt; 7.0.5 npm notice Changelog: https://github.com/npm/cli/releases/tag/v7.0.5 npm notice Run npm install -g [email protected] to update! npm notice npm ERR! code EXDEV npm ERR! syscall rename npm ERR! path /usr/local/lib/node_modules/npm npm ERR! dest /usr/local/lib/node_modules/.npm-i9nnxROI npm ERR! errno -18 npm ERR! EXDEV: cross-device link not permitted, rename '/usr/local/lib/node_modules/npm' -&gt; '/usr/local/lib/node_modules/.npm-i9nnxROI' npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/_logs/2020-10-24T01_54_22_453Z-debug.log"><pre class="notranslate"><code class="notranslate">$ docker run -it node:15.0.1 npm install -g [email protected] npm notice npm notice New patch version of npm available! 7.0.3 -&gt; 7.0.5 npm notice Changelog: https://github.com/npm/cli/releases/tag/v7.0.5 npm notice Run npm install -g [email protected] to update! npm notice npm ERR! code EXDEV npm ERR! syscall rename npm ERR! path /usr/local/lib/node_modules/npm npm ERR! dest /usr/local/lib/node_modules/.npm-i9nnxROI npm ERR! errno -18 npm ERR! EXDEV: cross-device link not permitted, rename '/usr/local/lib/node_modules/npm' -&gt; '/usr/local/lib/node_modules/.npm-i9nnxROI' npm ERR! A complete log of this run can be found in: npm ERR! /root/.npm/_logs/2020-10-24T01_54_22_453Z-debug.log </code></pre></div> <h3 dir="auto">Expected Behavior:</h3> <p dir="auto">Update completes successfully.</p> <h3 dir="auto">Steps To Reproduce:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ docker run -it node:15.0.1 npm install -g [email protected]"><pre class="notranslate"><code class="notranslate">$ docker run -it node:15.0.1 npm install -g [email protected] </code></pre></div> <p dir="auto">NB: It succeeds in the v14 docker image:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ docker run -it node:14 npm install -g [email protected]"><pre class="notranslate"><code class="notranslate">$ docker run -it node:14 npm install -g [email protected] </code></pre></div> <h3 dir="auto">Environment:</h3> <p dir="auto">Docker version 19.03.13<br> macOS 10.15.7</p>
0
<p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p> <pre class="notranslate">Logger should have functions related to exit (Exit, Exitf, Exitln) <a href="http://golang.org/pkg/log/#Logger" rel="nofollow">http://golang.org/pkg/log/#Logger</a></pre>
<pre class="notranslate">To reproduce: while go test log/syslog; do echo ok; done Eventually (after a few dozen iterations) you'll see a panic (trace is below). Looks to be caused by TestConcurrentReconnect. The weird part is that the panic is "send on closed channel", but by my reading of the code any sends to the "done" channel must happen before the channel is closed, because the call to close happens right after a waitgroup.Wait(), and all the sends happen before the various calls to waitgroup.Done(). Why only on freebsd-386? Weird. panic: runtime error: send on closed channel goroutine 49 [running]: log/syslog.func·001(0x38c5b280, 0x38cd8630) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:67 +0x151 created by log/syslog.runStreamSyslog /home/gopher/go/src/pkg/log/syslog/syslog_test.go:70 +0x131 goroutine 1 [chan receive]: testing.RunTests(0x8163ac0, 0x8218d10, 0x8, 0x8, 0x1, ...) /home/gopher/go/src/pkg/testing/testing.go:427 +0x69c testing.Main(0x8163ac0, 0x8218d10, 0x8, 0x8, 0x821ba00, ...) /home/gopher/go/src/pkg/testing/testing.go:358 +0x66 main.main() log/syslog/_test/_testmain.go:57 +0x7e goroutine 0 [syscall]: goroutine 34 [syscall]: syscall.Syscall() /home/gopher/go/src/pkg/syscall/asm_freebsd_386.s:0 +0x5 syscall.Unlink(0x38cacdc0, 0x18, 0x0, 0x0) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x7d os.Remove(0x38cacdc0, 0x18, 0x38cacd20, 0x18) /home/gopher/go/src/pkg/os/file_unix.go:235 +0x2e log/syslog.TestConcurrentReconnect(0x38ca7c00) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:334 +0x267 testing.tRunner(0x38ca7c00, 0x8218d64) /home/gopher/go/src/pkg/testing/testing.go:346 +0x84 created by testing.RunTests /home/gopher/go/src/pkg/testing/testing.go:426 +0x681 goroutine 4 [syscall]: syscall.Syscall6() /home/gopher/go/src/pkg/syscall/asm_freebsd_386.s:0 +0x5 syscall.kevent(0x6, 0x0, 0x0, 0x38c71004, 0xa, ...) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x66 syscall.Kevent(0x6, 0x0, 0x0, 0x0, 0x38c71004, ...) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x76 net.(*pollster).WaitFD(0x38c71000, 0x38c5a860, 0x1cc4e26, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/fd_bsd.go:98 +0x193 net.(*pollServer).Run(0x38c5a860) /home/gopher/go/src/pkg/net/fd_unix.go:212 +0x135 created by net.newPollServer /home/gopher/go/src/pkg/net/newpollserver_unix.go:33 +0x266 goroutine 5 [chan receive]: net.(*pollServer).WaitRead(0x38c5a860, 0x38c5c100, 0x38c5a900, 0x23) /home/gopher/go/src/pkg/net/fd_unix.go:244 +0x5a net.(*netFD).accept(0x38c5c100, 0x8163b40, 0x0, 0x38c5a900, 0x23, ...) /home/gopher/go/src/pkg/net/fd_unix.go:631 +0x11e net.(*UnixListener).AcceptUnix(0x38c6c130, 0x80719d1, 0x58c11f88, 0x80719d1) /home/gopher/go/src/pkg/net/unixsock_posix.go:282 +0x3f net.(*UnixListener).Accept(0x38c6c130, 0x0, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/unixsock_posix.go:293 +0x46 log/syslog.runStreamSyslog(0x38c5a940, 0x38c6c130, 0x38c57420, 0x38c5a800) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:53 +0x5e created by log/syslog.startServer /home/gopher/go/src/pkg/log/syslog/syslog_test.go:109 +0x3dc goroutine 9 [chan receive]: net.(*pollServer).WaitRead(0x38c5a860, 0x38c9d480, 0x38c5a900, 0x23) /home/gopher/go/src/pkg/net/fd_unix.go:244 +0x5a net.(*netFD).accept(0x38c9d480, 0x8163b30, 0x0, 0x38c5a900, 0x23, ...) /home/gopher/go/src/pkg/net/fd_unix.go:631 +0x11e net.(*TCPListener).AcceptTCP(0x38c06a60, 0x80719d1, 0x0, 0x0) /home/gopher/go/src/pkg/net/tcpsock_posix.go:232 +0x4f net.(*TCPListener).Accept(0x38c06a60, 0x0, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/tcpsock_posix.go:242 +0x46 log/syslog.runStreamSyslog(0x38c9a7a0, 0x38c06a60, 0x38c577b0, 0x38c9a6a0) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:53 +0x5e created by log/syslog.startServer /home/gopher/go/src/pkg/log/syslog/syslog_test.go:109 +0x3dc goroutine 12 [chan receive]: net.(*pollServer).WaitRead(0x38c5a860, 0x38c9d580, 0x38c5a900, 0x23) /home/gopher/go/src/pkg/net/fd_unix.go:244 +0x5a net.(*netFD).accept(0x38c9d580, 0x8163b40, 0x0, 0x38c5a900, 0x23, ...) /home/gopher/go/src/pkg/net/fd_unix.go:631 +0x11e net.(*UnixListener).AcceptUnix(0x38c6c5c0, 0x80719d1, 0x58d25f88, 0x80719d1) /home/gopher/go/src/pkg/net/unixsock_posix.go:282 +0x3f net.(*UnixListener).Accept(0x38c6c5c0, 0x0, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/unixsock_posix.go:293 +0x46 log/syslog.runStreamSyslog(0x38c5a940, 0x38c6c5c0, 0x38c57840, 0x38c9a920) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:53 +0x5e created by log/syslog.startServer /home/gopher/go/src/pkg/log/syslog/syslog_test.go:109 +0x3dc goroutine 23 [chan receive]: net.(*pollServer).WaitRead(0x38c5a860, 0x38c9df80, 0x38c5a900, 0x23) /home/gopher/go/src/pkg/net/fd_unix.go:244 +0x5a net.(*netFD).ReadFrom(0x38c9df80, 0x38cb1000, 0x1000, 0x1000, 0x0, ...) /home/gopher/go/src/pkg/net/fd_unix.go:471 +0x296 net.(*UDPConn).ReadFromUDP(0x38cae290, 0x38cb1000, 0x1000, 0x1000, 0x80d7b0e, ...) /home/gopher/go/src/pkg/net/udpsock_posix.go:72 +0xc7 net.(*UDPConn).ReadFrom(0x38cae290, 0x38cb1000, 0x1000, 0x1000, 0x821c0a8, ...) /home/gopher/go/src/pkg/net/udpsock_posix.go:87 +0xb4 log/syslog.runPktSyslog(0x38c57750, 0x38cae290, 0x38c57a80) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:31 +0x102 log/syslog.func·002() /home/gopher/go/src/pkg/log/syslog/syslog_test.go:101 +0x5b created by log/syslog.startServer /home/gopher/go/src/pkg/log/syslog/syslog_test.go:102 +0x271 goroutine 14 [chan receive]: net.(*pollServer).WaitRead(0x38c5a860, 0x38ca8080, 0x38c5a900, 0x23) /home/gopher/go/src/pkg/net/fd_unix.go:244 +0x5a net.(*netFD).accept(0x38ca8080, 0x8163b40, 0x0, 0x38c5a900, 0x23, ...) /home/gopher/go/src/pkg/net/fd_unix.go:631 +0x11e net.(*UnixListener).AcceptUnix(0x38c6c630, 0x813275c, 0x1, 0x1) /home/gopher/go/src/pkg/net/unixsock_posix.go:282 +0x3f net.(*UnixListener).Accept(0x38c6c630, 0x0, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/unixsock_posix.go:293 +0x46 log/syslog.runStreamSyslog(0x38c5a940, 0x38c6c630, 0x38c57840, 0x38c9ac60) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:53 +0x5e created by log/syslog.startServer /home/gopher/go/src/pkg/log/syslog/syslog_test.go:109 +0x3dc goroutine 50 [runnable]: syscall.Syscall() /home/gopher/go/src/pkg/syscall/asm_freebsd_386.s:0 +0x48 syscall.Close(0xf, 0x0, 0x0) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x4e os.(*file).close(0x38c5af60, 0x0, 0x0) /home/gopher/go/src/pkg/os/file_unix.go:107 +0x4d goroutine 48 [runnable]: syscall.Syscall() /home/gopher/go/src/pkg/syscall/asm_freebsd_386.s:0 +0x48 syscall.read(0x1b, 0x38ce5000, 0x1000, 0x1000, 0xe, ...) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x58 syscall.Read(0x1b, 0x38ce5000, 0x1000, 0x1000, 0x12c, ...) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x4e net.(*netFD).Read(0x38ca8200, 0x38ce5000, 0x1000, 0x1000, 0x0, ...) /home/gopher/go/src/pkg/net/fd_unix.go:437 +0x1dd net.(*conn).Read(0x38cd8610, 0x38ce5000, 0x1000, 0x1000, 0x8050f2e, ...) /home/gopher/go/src/pkg/net/net.go:123 +0xa6 created by log/syslog.runStreamSyslog /home/gopher/go/src/pkg/log/syslog/syslog_test.go:70 +0x131 goroutine 35 [runnable]: syscall.Syscall() /home/gopher/go/src/pkg/syscall/asm_freebsd_386.s:0 +0x48 syscall.accept(0x10, 0x38ce6000, 0x38cae000, 0x1, 0x0, ...) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x4e syscall.Accept(0x10, 0x38c8e780, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/syscall/bpf_bsd.go:0 +0x7c net.accept(0x10, 0x38c5a800, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/sys_cloexec.go:42 +0x26 net.(*netFD).accept(0x38c8e780, 0x8163b40, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/fd_unix.go:628 +0x91 net.(*UnixListener).AcceptUnix(0x38c6c3c0, 0x80719d1, 0x58d1af88, 0x80719d1) /home/gopher/go/src/pkg/net/unixsock_posix.go:282 +0x3f net.(*UnixListener).Accept(0x38c6c3c0, 0x0, 0x0, 0x0, 0x0, ...) /home/gopher/go/src/pkg/net/unixsock_posix.go:293 +0x46 log/syslog.runStreamSyslog(0x38c5a940, 0x38c6c3c0, 0x38c57cc0, 0x38cacda0) /home/gopher/go/src/pkg/log/syslog/syslog_test.go:53 +0x5e created by log/syslog.startServer /home/gopher/go/src/pkg/log/syslog/syslog_test.go:109 +0x3dc FAIL log/syslog 2.320s</pre>
0
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.1</li> <li>Operating System / Platform =&gt; Windows 64 Bit</li> <li>Compiler =&gt; Visual Studio 2015</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto"><code class="notranslate">waitKey()</code> returns <code class="notranslate">255</code> instead of <code class="notranslate">-1</code>.</p> <h5 dir="auto">Steps to reproduce</h5> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#include &lt;iostream&gt; #include &lt;opencv/cv.hpp&gt; int main(int argc, char** argv) { cv::Mat test(480, 640, CV_8UC1); test.setTo(0); cv::imshow(&quot;test&quot;, test); std::cout &lt;&lt; cv::waitKey(1) &lt;&lt; std::endl; return 0; }"><pre class="notranslate">#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&lt;</span>iostream<span class="pl-pds">&gt;</span></span> #<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds">&lt;</span>opencv/cv.hpp<span class="pl-pds">&gt;</span></span> <span class="pl-k">int</span> <span class="pl-en">main</span>(<span class="pl-k">int</span> argc, <span class="pl-k">char</span>** argv) { cv::Mat <span class="pl-smi">test</span>(<span class="pl-c1">480</span>, <span class="pl-c1">640</span>, CV_8UC1); test.<span class="pl-c1">setTo</span>(<span class="pl-c1">0</span>); <span class="pl-c1">cv::imshow</span>(<span class="pl-s"><span class="pl-pds">"</span>test<span class="pl-pds">"</span></span>, test); std::cout &lt;&lt; <span class="pl-c1">cv::waitKey</span>(<span class="pl-c1">1</span>) &lt;&lt; std::endl; <span class="pl-k">return</span> <span class="pl-c1">0</span>; }</pre></div> <h5 dir="auto">Expected output</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-1"><pre class="notranslate"><code class="notranslate">-1 </code></pre></div> <h5 dir="auto">Actual output</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="255"><pre class="notranslate"><code class="notranslate">255 </code></pre></div>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji></li> <li>Operating System / Platform =&gt; <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji></li> <li>Compiler =&gt; <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji></li> </ul> <h5 dir="auto">Detailed description</h5> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">my cuda is NVIDIA 10.1, cudnn is 9.0, when i compile it:</p> <details> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40679769/69939471-e7c4f880-151a-11ea-8c3d-a1a9b01b9b43.png"><img src="https://user-images.githubusercontent.com/40679769/69939471-e7c4f880-151a-11ea-8c3d-a1a9b01b9b43.png" alt="图片" style="max-width: 100%;"></a></p> </details>
0
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">This issue exists in the latest npm version</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">Running <code class="notranslate">npm -g update serverless@pre-3</code> wipes the content of the global node_modules directory (<code class="notranslate">/usr/local/lib/node_modules</code>).</p> <p dir="auto">Here is a log file of the command: <a href="https://gist.github.com/mnapoli/0170614e3f4ab1915a82783bf871d033">https://gist.github.com/mnapoli/0170614e3f4ab1915a82783bf871d033</a></p> <p dir="auto">Here is what I tried to pinpoint the problem:</p> <ul dir="auto"> <li>no problem with a local install (<code class="notranslate">npm update serverless@pre-3</code>)</li> <li><code class="notranslate">npm -g i pure-prompt</code> works</li> <li><code class="notranslate">npm -g update pure-prompt</code> works</li> <li><code class="notranslate">npm -g i serverless</code> works</li> <li><code class="notranslate">npm -g update serverless</code> works</li> <li><code class="notranslate">npm -g i serverless@pre-3</code> works</li> <li><code class="notranslate">npm -g update serverless@pre-3</code> <g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> wipes everything</li> <li><code class="notranslate">yarn global add serverless</code> works</li> <li><code class="notranslate">yarn global update serverless@pre-3</code> works</li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Nothing should be removed, the package should be installed.</p> <h3 dir="auto">Steps To Reproduce</h3> <p dir="auto">Run:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="npm -g update serverless@pre-3"><pre class="notranslate"><code class="notranslate">npm -g update serverless@pre-3 </code></pre></div> <p dir="auto">Now all global dependencies are gone (e.g. <code class="notranslate">serverless</code>, <code class="notranslate">npm</code>, etc.). The global folder <code class="notranslate">/usr/local/lib/node_modules</code> still exists, but it's empty.</p> <p dir="auto">I have to reinstall NPM and reinstall all global NPM dependencies.</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>npm: 8.3.0</li> <li>Node.js: v17.3.1</li> <li>OS Name: macOS</li> <li>System Model Name: Bug Sur 11.6.2</li> <li>npm config:</li> </ul> <div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; &quot;builtin&quot; config from /usr/local/lib/node_modules/npm/npmrc prefix = &quot;/usr/local&quot; ; &quot;user&quot; config from /Users/matthieu/.npmrc //npm.pkg.github.com/:_authToken = (protected) //registry.npmjs.org/:_authToken = (protected) ; node bin location = /usr/local/Cellar/node/17.3.1/bin/node ; cwd = /Users/matthieu/dev/PHP/bref ; HOME = /Users/matthieu ; Run `npm config ls -l` to show all defaults."><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> "builtin" config from /usr/local/lib/node_modules/npm/npmrc</span> <span class="pl-k">prefix</span> = <span class="pl-s"><span class="pl-pds">"</span>/usr/local<span class="pl-pds">"</span></span> <span class="pl-c"><span class="pl-c">;</span> "user" config from /Users/matthieu/.npmrc</span> //npm.pkg.github.com/:<span class="pl-k">_authToken</span> = (protected) //registry.npmjs.org/:<span class="pl-k">_authToken</span> = (protected) <span class="pl-c"><span class="pl-c">;</span> node bin location = /usr/local/Cellar/node/17.3.1/bin/node</span> <span class="pl-c"><span class="pl-c">;</span> cwd = /Users/matthieu/dev/PHP/bref</span> <span class="pl-c"><span class="pl-c">;</span> HOME = /Users/matthieu</span> <span class="pl-c"><span class="pl-c">;</span> Run `npm config ls -l` to show all defaults.</span></pre></div>
<h3 dir="auto">Current Behavior:</h3> <p dir="auto">Attempting to update a package with a tag using the <code class="notranslate">update</code> command globally causes <strong>ALL</strong> global packages to be removed.</p> <h3 dir="auto">Expected Behavior:</h3> <p dir="auto">Packages should not be removed when updating global packages.</p> <h3 dir="auto">Steps To Reproduce:</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm i -g typescript nodemon @angular/cli # Install some global packages npm ls -g --depth=0 # This shows the 3 installed packages npm update -g @angular/cli@latest # Attempt to update one of the packages with a @latest tag # Oh no! removed 620 packages npm ls -g --depth=0 # Shows `-- (empty)"><pre class="notranslate">npm i -g typescript nodemon @angular/cli <span class="pl-c"><span class="pl-c">#</span> Install some global packages</span> npm ls -g --depth=0 <span class="pl-c"><span class="pl-c">#</span> This shows the 3 installed packages</span> npm update -g @angular/cli@latest <span class="pl-c"><span class="pl-c">#</span> Attempt to update one of the packages with a @latest tag</span> <span class="pl-c"><span class="pl-c">#</span> Oh no! removed 620 packages</span> npm ls -g --depth=0 <span class="pl-c"><span class="pl-c">#</span> Shows `-- (empty)</span></pre></div> <h3 dir="auto">Environment:</h3> <ul dir="auto"> <li>OS: Windows 10 20H2</li> <li>Node: 15.9.0</li> <li>npm: 7.11.2</li> </ul> <h3 dir="auto">Additional Info</h3> <p dir="auto">This only happens on the global scope</p>
1
<p dir="auto">I noticed earlier that the compile time of <code class="notranslate">image</code> increased massively during the beginning of 2015. Unfortunately it was hard to quantify this regression since we also changed a lot during this time.</p> <p dir="auto">Fortunately I just found a good example that shows a 20-fold increase in compile time. It is a <a href="https://gist.github.com/nwin/b0b8bb23040a526b5b59">single file</a> with no other dependencies (if somebody wants to try: the <a href="https://github.com/cmr/TEMP-rust-png">original version</a> is even much older). The two revisions are exactly the same code, the newer just has been updated to compile on a recent rustc. Note that this is <code class="notranslate">rustc</code> only, no time is spend in llvm.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ sudo rustc --version rustc 0.13.0-nightly (7608dbad6 2014-12-31 10:06:21 -0800) $ time sudo rustc --crate-type=lib -Z no-trans inflate.rs real 0m1.176s user 0m1.059s sys 0m0.113s"><pre class="notranslate"><code class="notranslate">$ sudo rustc --version rustc 0.13.0-nightly (7608dbad6 2014-12-31 10:06:21 -0800) $ time sudo rustc --crate-type=lib -Z no-trans inflate.rs real 0m1.176s user 0m1.059s sys 0m0.113s </code></pre></div> <p dir="auto">(note that something is wrong with the old .pkg-file I used to install rustc, I need to use sudo to run it)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ rustc --version rustc 1.1.0-nightly (c4b23aec4 2015-04-29) (built 2015-04-28) $ time rustc --crate-type=lib -Z no-trans inflate.rs real 0m25.208s user 0m23.919s sys 0m1.213s"><pre class="notranslate"><code class="notranslate">$ rustc --version rustc 1.1.0-nightly (c4b23aec4 2015-04-29) (built 2015-04-28) $ time rustc --crate-type=lib -Z no-trans inflate.rs real 0m25.208s user 0m23.919s sys 0m1.213s </code></pre></div> <p dir="auto">The <a href="https://gist.github.com/nwin/016c7e64ae270f519cdb">time profiles</a> show that <code class="notranslate">driver::phase_1_parse_input</code> and <code class="notranslate">driver::phase_2_configure_and_expand</code> almost stayed constant while the time spent in <code class="notranslate">driver::phase_3_run_analysis_passes</code> exploded.</p>
<p dir="auto">This simple program takes ~1minute to compile:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="macro_rules! f0( () =&gt; (1) ); macro_rules! f1( () =&gt; ({(f0!()) + (f0!())}) ); macro_rules! f2( () =&gt; ({(f1!()) + (f1!())}) ); macro_rules! f3( () =&gt; ({(f2!()) + (f2!())}) ); macro_rules! f4( () =&gt; ({(f3!()) + (f3!())}) ); macro_rules! f5( () =&gt; ({(f4!()) + (f4!())}) ); macro_rules! f6( () =&gt; ({(f5!()) + (f5!())}) ); macro_rules! f7( () =&gt; ({(f6!()) + (f6!())}) ); macro_rules! f8( () =&gt; ({(f7!()) + (f7!())}) ); macro_rules! f9( () =&gt; ({(f8!()) + (f8!())}) ); macro_rules! f10( () =&gt; ({(f9!()) + (f9!())}) ); macro_rules! f11( () =&gt; ({(f10!()) + (f10!())}) ); fn main() { f10!(); }"><pre class="notranslate"><span class="pl-k">macro_rules!</span> f0<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f1<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f0!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f0!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f2<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f1!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f1!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f3<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f2!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f2!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f4<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f3!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f3!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f5<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f4!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f4!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f6<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f5!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f5!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f7<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f6!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f6!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f8<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f7!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f7!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f9<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f8!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f8!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f10<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f9!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f9!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">macro_rules!</span> f11<span class="pl-kos">(</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> =&gt; <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">(</span>f10!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span> + <span class="pl-kos">(</span>f10!<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">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-en">f10</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">The output of <code class="notranslate">-Z time-passes</code> looks like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="time: 0.000 parsing time: 0.000 recursion limit time: 0.000 gated macro checking time: 0.000 configuration 1 time: 0.000 crate injection time: 0.012 macro loading time: 0.000 plugin loading time: 0.000 plugin registration time: 0.032 expansion time: 0.000 complete gated feature checking 1 time: 0.002 configuration 2 time: 0.001 maybe building test harness time: 0.001 prelude injection time: 0.000 checking that all macro invocations are gone time: 0.000 complete gated feature checking 2 time: 0.001 assigning node ids and indexing ast time: 0.000 external crate/lib resolution time: 0.000 language item collection time: 0.001 resolution time: 0.000 lifetime resolution time: 0.000 looking for entry point time: 0.000 looking for plugin registrar time: 0.001 region resolution time: 0.000 loop checking time: 0.000 static item recursion checking time: 0.000 type collecting time: 0.000 variance inference time: 0.169 coherence checking time: 55.344 type checking time: 0.009 const checking time: 0.000 privacy checking time: 0.000 stability index time: 0.000 intrinsic checking time: 0.000 effect checking time: 0.000 match checking time: 0.000 liveness checking time: 0.023 borrow checking time: 0.010 rvalue checking time: 0.000 reachability checking time: 0.000 death checking time: 0.000 stability checking time: 0.000 unused lib feature checking time: 0.004 lint checking time: 0.000 resolving dependency formats time: 0.002 translation time: 0.000 llvm function passes time: 0.000 llvm module passes time: 0.002 codegen passes time: 0.000 codegen passes time: 0.007 LLVM passes time: 0.242 running linker time: 0.243 linking"><pre class="notranslate"><code class="notranslate">time: 0.000 parsing time: 0.000 recursion limit time: 0.000 gated macro checking time: 0.000 configuration 1 time: 0.000 crate injection time: 0.012 macro loading time: 0.000 plugin loading time: 0.000 plugin registration time: 0.032 expansion time: 0.000 complete gated feature checking 1 time: 0.002 configuration 2 time: 0.001 maybe building test harness time: 0.001 prelude injection time: 0.000 checking that all macro invocations are gone time: 0.000 complete gated feature checking 2 time: 0.001 assigning node ids and indexing ast time: 0.000 external crate/lib resolution time: 0.000 language item collection time: 0.001 resolution time: 0.000 lifetime resolution time: 0.000 looking for entry point time: 0.000 looking for plugin registrar time: 0.001 region resolution time: 0.000 loop checking time: 0.000 static item recursion checking time: 0.000 type collecting time: 0.000 variance inference time: 0.169 coherence checking time: 55.344 type checking time: 0.009 const checking time: 0.000 privacy checking time: 0.000 stability index time: 0.000 intrinsic checking time: 0.000 effect checking time: 0.000 match checking time: 0.000 liveness checking time: 0.023 borrow checking time: 0.010 rvalue checking time: 0.000 reachability checking time: 0.000 death checking time: 0.000 stability checking time: 0.000 unused lib feature checking time: 0.004 lint checking time: 0.000 resolving dependency formats time: 0.002 translation time: 0.000 llvm function passes time: 0.000 llvm module passes time: 0.002 codegen passes time: 0.000 codegen passes time: 0.007 LLVM passes time: 0.242 running linker time: 0.243 linking </code></pre></div> <p dir="auto">And profiling using OSX looks like:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/5afa31442840be451122263d133608bdf6459b62f30057859b98a9b0eb38ccae/68747470733a2f2f692e696d6775722e636f6d2f704a37396e30322e6a7067"><img src="https://camo.githubusercontent.com/5afa31442840be451122263d133608bdf6459b62f30057859b98a9b0eb38ccae/68747470733a2f2f692e696d6775722e636f6d2f704a37396e30322e6a7067" alt="https://i.imgur.com/pJ79n02.jpg" data-canonical-src="https://i.imgur.com/pJ79n02.jpg" style="max-width: 100%;"></a></p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pnkfelix/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pnkfelix">@pnkfelix</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikomatsakis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikomatsakis">@nikomatsakis</a></p> <p dir="auto">This was discovered in updating cargo with a rustc from 3/26 to 4/2, so it looks like it may be a recent regression?</p>
1
<h4 dir="auto">Challenge Name</h4> <h4 dir="auto">Issue Description</h4> <h4 dir="auto">Browser Information</h4> <ul dir="auto"> <li>Browser Name, Version:</li> <li>Operating System:</li> <li>Mobile, Desktop, or Tablet:</li> </ul> <h4 dir="auto">Your Code</h4> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" "><pre class="notranslate"></pre></div> <h4 dir="auto">Screenshot</h4>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-clone-an-element-using-jquery" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-clone-an-element-using-jquery</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/13779993/9425699/7615b240-48e8-11e5-997f-59e55a174915.png"><img src="https://cloud.githubusercontent.com/assets/13779993/9425699/7615b240-48e8-11e5-997f-59e55a174915.png" alt="jquery-bug001" style="max-width: 100%;"></a></p> <p dir="auto">In this assignment the line of code still has to be placed outside of the function to work, but this time the function of clone and append has caused a duplication process that I cannot truly place into words. It simply has duplicated the element 10 times in the right well and an extra time in the left well.</p>
0
<h3 dir="auto">Describe the issue:</h3> <p dir="auto">Using <code class="notranslate">astype(np.float32)</code> on integer array corrupts the data on ppc64el platform using numpy from conda-forge.</p> <h3 dir="auto">Reproduce the code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="np.array([1, 0, 1, 0, 1, 0], dtype=int).astype(np.float32)"><pre class="notranslate"><span class="pl-s1">np</span>.<span class="pl-en">array</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">1</span>, <span class="pl-c1">0</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">int</span>).<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">float32</span>)</pre></div> <h3 dir="auto">Error message:</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="array([0.0000000e+00, 0.0000000e+00, nan, 2.3509886e-38, 1.0000000e+00, 0.0000000e+00], dtype=float32)"><pre class="notranslate">array([0.0000000e+00, 0.0000000e+00, nan, 2.3509886e-38, 1.0000000e+00, 0.0000000e+00], dtype=float32)</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ### NumPy/Python version information: 1.22.3 3.10.4 | packaged by conda-forge | (main, Mar 24 2022, 17:42:07) [GCC 10.3.0]"><pre class="notranslate"><code class="notranslate"> ### NumPy/Python version information: 1.22.3 3.10.4 | packaged by conda-forge | (main, Mar 24 2022, 17:42:07) [GCC 10.3.0] </code></pre></div>
<h3 dir="auto">Describe the issue:</h3> <p dir="auto"><em>[I want to begin by first acknowledging that this is a fringe case of a bug appearing only in a VM (I haven't yet been able to reproduce it on real hardware), so please feel free to close this issue right away. However, I felt that I still should at least point it out, in case there is some latent real issue that this might uncover. In any case, hints as to how I can dig deeper into this so that I may report it to the proper channel (be it QEMU, GNU libc, or whatever) would be welcome.]</em></p> <p dir="auto">On a QEMU ppc64le VM, When casting an array of floats to <code class="notranslate">np.intc</code>, a weird truncation seems to happen. This only occurs in the VM; it does not happen onthe real ppc64le hardware I had access to (although that system hat an older 4.19 kernel; I cannot change that).</p> <p dir="auto">In the code below, I create arrays of value <code class="notranslate">1.</code> of length 1 through 10, and then cast them to <code class="notranslate">np.int64</code> and <code class="notranslate">np.intc</code> for comparison.</p> <p dir="auto">This works fine for arrays with length &lt;= 3. If fails for longer ones, and apparently there is a pattern in this failure.</p> <h3 dir="auto">Reproduce the code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np for i in range(1, 11): a = np.full(i, 1.) print(i, a, a.astype(np.int64), a.astype(np.intc))"><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">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">1</span>, <span class="pl-c1">11</span>): <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">full</span>(<span class="pl-s1">i</span>, <span class="pl-c1">1.</span>) <span class="pl-en">print</span>(<span class="pl-s1">i</span>, <span class="pl-s1">a</span>, <span class="pl-s1">a</span>.<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">int64</span>), <span class="pl-s1">a</span>.<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-s1">intc</span>))</pre></div> <h3 dir="auto">Error message:</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="1 [1.] [1] [1] 2 [1. 1.] [1 1] [1 1] 3 [1. 1. 1.] [1 1 1] [1 1 1] 4 [1. 1. 1. 1.] [1 1 1 1] [0 0 0 0] 5 [1. 1. 1. 1. 1.] [1 1 1 1 1] [0 0 0 0 1] 6 [1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1] [0 0 0 0 1 1] 7 [1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1] [0 0 0 0 1 1 1] 8 [1. 1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1 1] [0 0 0 0 0 0 0 0] 9 [1. 1. 1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1 1 1] [0 0 0 0 0 0 0 0 1] 10 [1. 1. 1. 1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1 1 1 1] [0 0 0 0 0 0 0 0 1 1]"><pre class="notranslate">1 [1.] [1] [1] 2 [1. 1.] [1 1] [1 1] 3 [1. 1. 1.] [1 1 1] [1 1 1] 4 [1. 1. 1. 1.] [1 1 1 1] [0 0 0 0] 5 [1. 1. 1. 1. 1.] [1 1 1 1 1] [0 0 0 0 1] 6 [1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1] [0 0 0 0 1 1] 7 [1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1] [0 0 0 0 1 1 1] 8 [1. 1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1 1] [0 0 0 0 0 0 0 0] 9 [1. 1. 1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1 1 1] [0 0 0 0 0 0 0 0 1] 10 [1. 1. 1. 1. 1. 1. 1. 1. 1. 1.] [1 1 1 1 1 1 1 1 1 1] [0 0 0 0 0 0 0 0 1 1]</pre></div> <h3 dir="auto">NumPy/Python version information:</h3> <p dir="auto">1.22.1 3.9.10 (main, Jan 16 2022, 17:12:18)<br> [GCC 11.2.0]</p>
1
<p dir="auto">$ python --version<br> Python 3.7.0</p> <p dir="auto">$ pip install numpy<br> ...<br> Command "/usr/bin/python3 -u -c "import setuptools, tokenize;<strong>file</strong>='/tmp/pip-install-0jx06uto/numpy/setup.py';f=getattr(tokenize, 'open', open)(<strong>file</strong>);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, <strong>file</strong>, 'exec'))" install --record /tmp/pip-record-b23lp18j/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-install-0jx06uto/numpy/</p>
<p dir="auto">Am using Python 3.6.2 in MSYS2. The installation is unable to build the wheel:</p> <blockquote> <p dir="auto">Running setup.py bdist_wheel for numpy ... error</p> </blockquote> <p dir="auto">Then many pages are printed with the output of command setup.py bdist_wheel with warnings such as:</p> <blockquote> <p dir="auto">x86_64-pc-msys-gcc: _configtest.c<br> _configtest.c:1:5: warning: conflicting types for built-in function ‘sinf’<br> int sinf (void);<br> ^~~~</p> </blockquote> <p dir="auto">After that it tries to run other commands with setup.py and it also fails:</p> <blockquote> <hr> <p dir="auto">Failed building wheel for numpy<br> Running setup.py clean for numpy<br> Complete output from command /usr/bin/python -u -c "import setuptools, tokenize;<strong>file</strong>='/tmp/pip-build-pcj9wcf2/numpy/setup.py';f=getattr(tokenize, 'open', open)(<strong>file</strong>);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, <strong>file</strong>, 'exec'))" clean --all:<br> Running from numpy source directory.</p> <p dir="auto"><code class="notranslate">setup.py clean</code> is not supported, use one of the following instead:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- `git clean -xdf` (cleans all files) - `git clean -Xdf` (cleans all versioned files, doesn't touch files that aren't checked into the git repo)"><pre class="notranslate"><code class="notranslate">- `git clean -xdf` (cleans all files) - `git clean -Xdf` (cleans all versioned files, doesn't touch files that aren't checked into the git repo) </code></pre></div> <p dir="auto">Add <code class="notranslate">--force</code> to your command to use it anyway if you must (unsupported).</p> <hr> <p dir="auto">Failed cleaning build dir for numpy<br> Failed to build numpy<br> Installing collected packages: numpy<br> Running setup.py install for numpy ... error</p> </blockquote>
1
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): NO</p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.): deployment delete acl error message</p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): v1.3.5</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: AWS</li> <li><strong>OS</strong> (e.g. from /etc/os-release): CoreOS 899.1.0</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): <code class="notranslate">Linux ip-10-20-8-136.ec2.internal 4.3.3-coreos #2 SMP Thu Dec 17 23:57:55 UTC 2015 x86_64 Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz GenuineIntel GNU/Linux</code></li> <li><strong>Install tools</strong>: CloudFormation/Ansible</li> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>What happened</strong>:<br> Using kubectl to delete a deployment that is not allowed by ACL blocks for a long time, and eventually prints an unhelpful <code class="notranslate">timed out waiting for the condition</code>. Running it with <code class="notranslate">--v=8</code> shows a lot of <code class="notranslate">PUT</code> requests being sent repeatedly and getting 403 Forbidden in response.</p> <p dir="auto"><strong>What you expected to happen</strong>:<br> kubectl should print an error message clearly indicating that this action is not allowed on the first 403.</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p> <ol dir="auto"> <li>Create a deployment</li> <li>Create ACL (ABAC or RBAC) to disallow deleting deployments, but allow reads.</li> <li><code class="notranslate">kubectl delete deployment &lt;foo&gt;</code></li> <li>After a few minutes, kubectl prints <code class="notranslate">error: timed out waiting for the condition</code> and exits.</li> </ol> <p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</p> <p dir="auto">This is not a request for help.</p> <p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):</p> <p dir="auto">I have searched for these keywords<br> mac id build<br> Nothing relevant came up.<br> The closest relevant issue is: kubernetes build on master branch failed on osx <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="166481461" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/29247" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/29247/hovercard" href="https://github.com/kubernetes/kubernetes/issues/29247">#29247</a></p> <hr> <p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):</p> <p dir="auto">BUG REPORT</p> <p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p> <p dir="auto">This is a build script bug. I do not know whether the kubectl version would be helpful<br> The git repo point is</p> <p dir="auto">commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/kubernetes/kubernetes/commit/6c5a18717137b3227644bccbdcdd8890b887934b/hovercard" href="https://github.com/kubernetes/kubernetes/commit/6c5a18717137b3227644bccbdcdd8890b887934b"><tt>6c5a187</tt></a><br> Merge: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/kubernetes/kubernetes/commit/364caad0f0ca3df33c02bdba05d537a94c668129/hovercard" href="https://github.com/kubernetes/kubernetes/commit/364caad0f0ca3df33c02bdba05d537a94c668129"><tt>364caad</tt></a> <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/kubernetes/kubernetes/commit/5080a575ad0c7c8f85f5cf5f293db6f5dce91663/hovercard" href="https://github.com/kubernetes/kubernetes/commit/5080a575ad0c7c8f85f5cf5f293db6f5dce91663"><tt>5080a57</tt></a><br> Author: Kubernetes Submit Queue <a href="mailto:[email protected]">[email protected]</a><br> Date: Thu Sep 29 12:32:08 2016 -0700</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>:</li> <li><strong>OS</strong> (e.g. from /etc/os-release):<br> OSx 10.11.6</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):<br> Darwin mbp-005063 15.6.0 Darwin Kernel Version 15.6.0: Mon Aug 29 20:21:34 PDT 2016; root:xnu-3248.60.11~1/RELEASE_X86_64 x86_64</li> <li><strong>Install tools</strong>:</li> </ul> <p dir="auto">$ docker --version<br> Docker version 1.10.3, build 20f81dd<br> $ docker-machine --version<br> docker-machine version 0.6.0, build e27fb87</p> <p dir="auto">(This is not the latest version of docker, however the build script does not complain with a not-supported error. I presume this combination should still work)</p> <ul dir="auto"> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>What happened</strong>:</p> <p dir="auto">The hack/update-all.sh script fails with the following prompt<br> (.make/all_go_dirs.mk: Permission denied)</p> <p dir="auto">$ hack/update-all.sh -v<br> Running in short-circuit mode; run with -a to force all scripts to run.<br> Updating generated-protobuf<br> +++ [0929 15:04:06] Verifying Prerequisites....<br> +++ [0929 15:04:06] No docker host is set. Checking options for setting one...<br> +++ [0929 15:04:06] docker-machine was found.<br> +++ [0929 15:04:07] A Docker host using docker-machine named 'kube-dev' is ready to go!<br> +++ [0929 15:04:07] Building Docker image kube-build:build-fb58d75ded<br> +++ [0929 15:04:07] Running build command....<br> +++ [0929 15:04:07] Creating data container kube-build-data-fb58d75ded<br> make: Entering directory '/go/src/k8s.io/kubernetes'<br> make[1]: Entering directory '/go/src/k8s.io/kubernetes'<br> hack/make-rules/helpers/cache_go_dirs.sh: line 65: .make/all_go_dirs.mk: Permission denied<br> find: `./pkg/kubelet/volumemanager/reconciler/pods': Permission denied<br> rm: cannot remove '.make/all_go_dirs.mk': Permission denied<br> ^CMakefile:287: recipe for target 'generated_files' failed</p> <p dir="auto">I have also discovered other scenarios where the permission error is for .make directory.<br> After a local <code class="notranslate">make</code>execution, the update-all.sh script generates a permission error for .make/all_go_dirs.mk.<br> If one does a <code class="notranslate">make clean &amp;&amp; hack/update-all.sh</code> the permission error would be for .make directory.</p> <p dir="auto"><strong>What you expected to happen</strong>:</p> <p dir="auto">I expect this to complete without any error.</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p> <p dir="auto">Checkout the <a href="https://github.com/kubernetes/kubernetes.git">https://github.com/kubernetes/kubernetes.git</a> at <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/kubernetes/kubernetes/commit/6c5a18717137b3227644bccbdcdd8890b887934b/hovercard" href="https://github.com/kubernetes/kubernetes/commit/6c5a18717137b3227644bccbdcdd8890b887934b"><tt>6c5a187</tt></a> in Mac os with OsX ElCapitan 10.11.6</p> <p dir="auto">Use docker version 1.10.3<br> Go to the root directory of the repo and execute <code class="notranslate">hack/update-all.sh -v</code></p> <p dir="auto"><strong>Anything else do we need to know</strong>:</p> <p dir="auto">In MacOsX with non-native docker, the hack/update-all.sh uses the present docker-machine to launch docker containers.<br> It compiles the docker run command options like the following:</p> <p dir="auto">local -a docker_run_opts=(<br> "--name=${KUBE_BUILD_CONTAINER_NAME}"<br> "--user=$(id -u):$(id -g)"<br> "--hostname=${HOSTNAME}"<br> "${DOCKER_MOUNT_ARGS[@]}"<br> )<br> In kubernetes/build/common.sh file in kube::build::run_build_command() funciton.</p> <p dir="auto">This bash script extract runs in the host MacOs machine. That means the id -u and the id -g will be the user's id on the host mac os.</p> <p dir="auto">The compiled docker command looks like the following:</p> <p dir="auto">docker run --name=kube-build-fb58d75ded --user=980771313:1221986466 --hostname=mbp-005063 --volume</p> <p dir="auto">The 980771313:1221986466 user id and the group id are associated with the MacOs in the host.</p> <p dir="auto">However the <code class="notranslate">docker run ...</code> command will execute in a vm managed by docker-machine. (In my system the vm's version is kube-dev)</p> <p dir="auto">We run this command in the kube-dev vm where the user id looks like the following:<br> docker@kube-dev:<del>$ id -u<br> 1000<br> docker@kube-dev:</del>$ id -g<br> 50</p> <p dir="auto">I strongly believe that the mismatched user id and the group id between the kube-dev vm and the docker container used to execute the hack/update-all.sh script cause this permission error.</p>
0
<p dir="auto">As of beta.1, <code class="notranslate">.put</code> and <code class="notranslate">.post</code> require a string body property (see also <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="127075144" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/6533" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/6533/hovercard" href="https://github.com/angular/angular/issues/6533">#6533</a>).</p> <p dir="auto">It is a PITA to <code class="notranslate">JSON.stringify</code> the body object everywhere in our calling code. Other http clients (such as <a href="http://api.jquery.com/jquery.post/" rel="nofollow">jQuery ajax</a>) accept either string or object; they <code class="notranslate">JSON.stringify</code> the object for us.</p>
<p dir="auto">Such as:</p> <ul dir="auto"> <li>developers using JSON 99.93% of the time and avoiding having to JSON.stringify things manually.</li> <li>adding appropriate content-type headers when sending JSON.</li> <li>possibly adding an operator like <code class="notranslate">.json()</code> as sugar for <code class="notranslate">.map(res =&gt; res.json())</code></li> </ul>
1
<p dir="auto">Ok-Hyuns-MacBook-Pro:client olee$ npm install --save-dev @babel/parser<br> npm ERR! code ETARGET<br> npm ERR! notarget No matching version found for @babel/parser@^7.1.3<br> npm ERR! notarget In most cases you or one of your dependencies are requesting<br> npm ERR! notarget a package version that doesn't exist.<br> npm ERR! notarget<br> npm ERR! notarget It was specified as a dependency of '@babel/traverse'<br> npm ERR! notarget</p> <p dir="auto">npm ERR! A complete log of this run can be found in:<br> npm ERR! /Users/olee/.npm/_logs/2018-10-11T16_32_17_220Z-debug.log</p>
<h2 dir="auto">EDIT 2: seems to have been resolved now</h2> <p dir="auto"><del>## EDIT (by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/hzoo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/hzoo">@hzoo</a>): Suggested workaround by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikolas/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikolas">@nikolas</a> is to pin the version to the last available version (<code class="notranslate">7.1.2</code>) until the issue is resolved on the npm side. Also if you are on a proxy/cache check that it's up-to-date.</del></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;devDependencies&quot;: { &quot;@babel/parser&quot;: &quot;7.1.2&quot; } }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-s">"devDependencies"</span>: <span class="pl-kos">{</span> <span class="pl-s">"@babel/parser"</span>: <span class="pl-s">"7.1.2"</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Hi,<br> I'm getting this error when trying to install <code class="notranslate">@babel/traverse</code>. I'm on 10.12.0, npm 6.4.1 on Debian Linux.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ npm i --save-dev @babel/traverse npm ERR! code ETARGET npm ERR! notarget No matching version found for @babel/parser@^7.1.3 npm ERR! notarget In most cases you or one of your dependencies are requesting npm ERR! notarget a package version that doesn't exist. npm ERR! notarget npm ERR! notarget It was specified as a dependency of '@babel/traverse' npm ERR! notarget npm ERR! A complete log of this run can be found in: npm ERR! /home/nik/.npm/_logs/2018-10-11T16_20_54_846Z-debug.log"><pre class="notranslate"><code class="notranslate">$ npm i --save-dev @babel/traverse npm ERR! code ETARGET npm ERR! notarget No matching version found for @babel/parser@^7.1.3 npm ERR! notarget In most cases you or one of your dependencies are requesting npm ERR! notarget a package version that doesn't exist. npm ERR! notarget npm ERR! notarget It was specified as a dependency of '@babel/traverse' npm ERR! notarget npm ERR! A complete log of this run can be found in: npm ERR! /home/nik/.npm/_logs/2018-10-11T16_20_54_846Z-debug.log </code></pre></div>
1
<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">AirFlow version 2.3.3.</p> <p dir="auto">When we use TaskFlow API for the DAG and have some task with <code class="notranslate">trigger_rule="none_failed"</code> this task fails when its predecessor is skipped. The error occurs during XCom read:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="File &quot;/usr/local/lib/python3.8/site-packages/airflow/models/xcom_arg.py&quot;, line 152, in resolve raise AirflowException( airflow.exceptions.AirflowException: XComArg result from exec at skip_test with key=&quot;return_value&quot; is not found!"><pre class="notranslate"><code class="notranslate">File "/usr/local/lib/python3.8/site-packages/airflow/models/xcom_arg.py", line 152, in resolve raise AirflowException( airflow.exceptions.AirflowException: XComArg result from exec at skip_test with key="return_value" is not found! </code></pre></div> <h3 dir="auto">What you think should happen instead</h3> <p dir="auto">It should execute its code with empty input. This behaviour existed in version 2.2.3. Also it's well aligned with behaviour of general tasks connected by arrows: downstream task executes successfully with empty input.</p> <h3 dir="auto">How to reproduce</h3> <ol dir="auto"> <li>Create a DAG.</li> <li>Add <code class="notranslate">@task</code>-decorated task that raises <code class="notranslate">AirflowSkipException</code></li> <li>Add another <code class="notranslate">@task</code>-decorated task that checks if its input is empty.</li> <li>Pass an output of the first task to the second task.</li> <li>Add DummyOperator task as a downstream of the first task. <code class="notranslate">trigger_rule="none_failed"</code></li> <li>Execute a DAG.</li> <li>The second task fails.</li> </ol> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from airflow.decorators import dag, task from airflow.utils.dates import days_ago from airflow.exceptions import AirflowSkipException from airflow.operators.dummy import DummyOperator @dag(start_date=days_ago(1)) def skip_test(): @task def exec(): raise AirflowSkipException(&quot;skipping&quot;) # This will fail @task(trigger_rule=&quot;none_failed&quot;) def finish(prev_res): print(prev_res is None) # While this will not finish_2 = DummyOperator( task_id = &quot;finish_2&quot;, trigger_rule=&quot;none_failed&quot; ) exec_res = exec() finish(exec_res) exec_res &gt;&gt; finish_2 return G_DUMMY = skip_test() "><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">decorators</span> <span class="pl-k">import</span> <span class="pl-s1">dag</span>, <span class="pl-s1">task</span> <span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">utils</span>.<span class="pl-s1">dates</span> <span class="pl-k">import</span> <span class="pl-s1">days_ago</span> <span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">exceptions</span> <span class="pl-k">import</span> <span class="pl-v">AirflowSkipException</span> <span class="pl-k">from</span> <span class="pl-s1">airflow</span>.<span class="pl-s1">operators</span>.<span class="pl-s1">dummy</span> <span class="pl-k">import</span> <span class="pl-v">DummyOperator</span> <span class="pl-en">@<span class="pl-en">dag</span>(<span class="pl-s1">start_date</span><span class="pl-c1">=</span><span class="pl-en">days_ago</span>(<span class="pl-c1">1</span>))</span> <span class="pl-k">def</span> <span class="pl-en">skip_test</span>(): <span class="pl-en">@<span class="pl-s1">task</span></span> <span class="pl-k">def</span> <span class="pl-en">exec</span>(): <span class="pl-k">raise</span> <span class="pl-v">AirflowSkipException</span>(<span class="pl-s">"skipping"</span>) <span class="pl-c"># This will fail</span> <span class="pl-en">@<span class="pl-en">task</span>(<span class="pl-s1">trigger_rule</span><span class="pl-c1">=</span><span class="pl-s">"none_failed"</span>)</span> <span class="pl-k">def</span> <span class="pl-en">finish</span>(<span class="pl-s1">prev_res</span>): <span class="pl-en">print</span>(<span class="pl-s1">prev_res</span> <span class="pl-c1">is</span> <span class="pl-c1">None</span>) <span class="pl-c"># While this will not</span> <span class="pl-s1">finish_2</span> <span class="pl-c1">=</span> <span class="pl-v">DummyOperator</span>( <span class="pl-s1">task_id</span> <span class="pl-c1">=</span> <span class="pl-s">"finish_2"</span>, <span class="pl-s1">trigger_rule</span><span class="pl-c1">=</span><span class="pl-s">"none_failed"</span> ) <span class="pl-s1">exec_res</span> <span class="pl-c1">=</span> <span class="pl-en">exec</span>() <span class="pl-en">finish</span>(<span class="pl-s1">exec_res</span>) <span class="pl-s1">exec_res</span> <span class="pl-c1">&gt;&gt;</span> <span class="pl-s1">finish_2</span> <span class="pl-k">return</span> <span class="pl-v">G_DUMMY</span> <span class="pl-c1">=</span> <span class="pl-en">skip_test</span>()</pre></div> <h3 dir="auto">Operating System</h3> <p dir="auto">Debian GNU/Linux 10 (buster)</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Deployment</h3> <p dir="auto">Docker-Compose</p> <h3 dir="auto">Deployment details</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Anything else</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
<p dir="auto"><strong>Apache Airflow version</strong>: 2.0.0</p> <p dir="auto"><strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>):</p> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: tencent cloud</li> <li><strong>OS</strong> (e.g. from /etc/os-release): centos7</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): 3.10</li> <li><strong>Install tools</strong>:</li> <li><strong>Others</strong>: Server version: 8.0.22 MySQL Community Server - GPL</li> </ul> <p dir="auto"><strong>What happened</strong>:</p> <p dir="auto">Scheduler died when I try to modify a dag's schedule_interval from "None" to "* */1 * * *"(I edited the dag file in the dag folder and saved it). A few minutes later I tried to start the scheduler again and it began to run.</p> <p dir="auto">And the logs are as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{2021-01-15 09:06:22,636} {{scheduler_job.py:1293}} ERROR - Exception when executing SchedulerJob._run_scheduler_loop Traceback (most recent call last): File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py&quot;, line 1276, in _execute_context self.dialect.do_execute( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/default.py&quot;, line 609, in do_execute cursor.execute(statement, parameters) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py&quot;, line 209, in execute res = self._query(query) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py&quot;, line 315, in _query db.query(q) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/connections.py&quot;, line 239, in query _mysql.connection.query(self, query) MySQLdb._exceptions.IntegrityError: (1062, &quot;Duplicate entry 'huge_demo13499411352-2021-01-15 01:04:00.000000' for key 'dag_run.dag_id'&quot;) The above exception was the direct cause of the following exception: Traceback (most recent call last): File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py&quot;, line 1275, in _execute self._run_scheduler_loop() File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py&quot;, line 1377, in _run_scheduler_loop num_queued_tis = self._do_scheduling(session) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py&quot;, line 1474, in _do_scheduling self._create_dag_runs(query.all(), session) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py&quot;, line 1561, in _create_dag_runs dag.create_dagrun( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/utils/session.py&quot;, line 62, in wrapper return func(*args, **kwargs) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/models/dag.py&quot;, line 1807, in create_dagrun session.flush() File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/session.py&quot;, line 2540, in flush self._flush(objects) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/session.py&quot;, line 2682, in _flush transaction.rollback(_capture_exception=True) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/util/langhelpers.py&quot;, line 68, in __exit__ compat.raise_( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/util/compat.py&quot;, line 182, in raise_ raise exception File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/session.py&quot;, line 2642, in _flush flush_context.execute() File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/unitofwork.py&quot;, line 422, in execute rec.execute(self) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/unitofwork.py&quot;, line 586, in execute persistence.save_obj( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/persistence.py&quot;, line 239, in save_obj _emit_insert_statements( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/persistence.py&quot;, line 1135, in _emit_insert_statements result = cached_connections[connection].execute( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py&quot;, line 1011, in execute return meth(self, multiparams, params) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/sql/elements.py&quot;, line 298, in _execute_on_connection return connection._execute_clauseelement(self, multiparams, params) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py&quot;, line 1124, in _execute_clauseelement ret = self._execute_context( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py&quot;, line 1316, in _execute_context self._handle_dbapi_exception( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py&quot;, line 1510, in _handle_dbapi_exception util.raise_( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/util/compat.py&quot;, line 182, in raise_ raise exception File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py&quot;, line 1276, in _execute_context self.dialect.do_execute( File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/default.py&quot;, line 609, in do_execute cursor.execute(statement, parameters) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py&quot;, line 209, in execute res = self._query(query) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py&quot;, line 315, in _query db.query(q) File &quot;/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/connections.py&quot;, line 239, in query _mysql.connection.query(self, query) sqlalchemy.exc.IntegrityError: (MySQLdb._exceptions.IntegrityError) (1062, &quot;Duplicate entry 'huge_demo13499411352-2021-01-15 01:04:00.000000' for key 'dag_run.dag_id'&quot;) [SQL: INSERT INTO dag_run (dag_id, execution_date, start_date, end_date, state, run_id, creating_job_id, external_trigger, run_type, conf, last_scheduling_decision, dag_hash) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)] [parameters: ('huge_demo13499411352', datetime.datetime(2021, 1, 15, 1, 4), datetime.datetime(2021, 1, 15, 1, 6, 22, 629433), None, 'running', 'scheduled__2021-01-15T01:04:00+00:00', 71466, 0, &lt;DagRunType.SCHEDULED: 'scheduled'&gt;, b'\x80\x05}\x94.', None, '60078c379cdeecb9bc8844eed5aa9745')] (Background on this error at: http://sqlalche.me/e/13/gkpj) {2021-01-15 09:06:23,648} {{process_utils.py:95}} INFO - Sending Signals.SIGTERM to GPID 66351 {2021-01-15 09:06:23,781} {{process_utils.py:61}} INFO - Process psutil.Process(pid=66351, status='terminated') (66351) terminated with exit code 0 {2021-01-15 09:06:23,781} {{scheduler_job.py:1296}} INFO - Exited execute loop"><pre class="notranslate"><code class="notranslate">{2021-01-15 09:06:22,636} {{scheduler_job.py:1293}} ERROR - Exception when executing SchedulerJob._run_scheduler_loop Traceback (most recent call last): File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context self.dialect.do_execute( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 609, in do_execute cursor.execute(statement, parameters) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py", line 209, in execute res = self._query(query) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py", line 315, in _query db.query(q) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/connections.py", line 239, in query _mysql.connection.query(self, query) MySQLdb._exceptions.IntegrityError: (1062, "Duplicate entry 'huge_demo13499411352-2021-01-15 01:04:00.000000' for key 'dag_run.dag_id'") The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py", line 1275, in _execute self._run_scheduler_loop() File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py", line 1377, in _run_scheduler_loop num_queued_tis = self._do_scheduling(session) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py", line 1474, in _do_scheduling self._create_dag_runs(query.all(), session) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/jobs/scheduler_job.py", line 1561, in _create_dag_runs dag.create_dagrun( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/utils/session.py", line 62, in wrapper return func(*args, **kwargs) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/airflow/models/dag.py", line 1807, in create_dagrun session.flush() File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/session.py", line 2540, in flush self._flush(objects) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/session.py", line 2682, in _flush transaction.rollback(_capture_exception=True) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/util/langhelpers.py", line 68, in __exit__ compat.raise_( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/util/compat.py", line 182, in raise_ raise exception File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/session.py", line 2642, in _flush flush_context.execute() File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/unitofwork.py", line 422, in execute rec.execute(self) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/unitofwork.py", line 586, in execute persistence.save_obj( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/persistence.py", line 239, in save_obj _emit_insert_statements( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/orm/persistence.py", line 1135, in _emit_insert_statements result = cached_connections[connection].execute( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1011, in execute return meth(self, multiparams, params) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/sql/elements.py", line 298, in _execute_on_connection return connection._execute_clauseelement(self, multiparams, params) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1124, in _execute_clauseelement ret = self._execute_context( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1316, in _execute_context self._handle_dbapi_exception( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1510, in _handle_dbapi_exception util.raise_( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/util/compat.py", line 182, in raise_ raise exception File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/base.py", line 1276, in _execute_context self.dialect.do_execute( File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/sqlalchemy/engine/default.py", line 609, in do_execute cursor.execute(statement, parameters) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py", line 209, in execute res = self._query(query) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/cursors.py", line 315, in _query db.query(q) File "/home/app/.pyenv/versions/3.8.1/envs/airflow-py381/lib/python3.8/site-packages/MySQLdb/connections.py", line 239, in query _mysql.connection.query(self, query) sqlalchemy.exc.IntegrityError: (MySQLdb._exceptions.IntegrityError) (1062, "Duplicate entry 'huge_demo13499411352-2021-01-15 01:04:00.000000' for key 'dag_run.dag_id'") [SQL: INSERT INTO dag_run (dag_id, execution_date, start_date, end_date, state, run_id, creating_job_id, external_trigger, run_type, conf, last_scheduling_decision, dag_hash) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)] [parameters: ('huge_demo13499411352', datetime.datetime(2021, 1, 15, 1, 4), datetime.datetime(2021, 1, 15, 1, 6, 22, 629433), None, 'running', 'scheduled__2021-01-15T01:04:00+00:00', 71466, 0, &lt;DagRunType.SCHEDULED: 'scheduled'&gt;, b'\x80\x05}\x94.', None, '60078c379cdeecb9bc8844eed5aa9745')] (Background on this error at: http://sqlalche.me/e/13/gkpj) {2021-01-15 09:06:23,648} {{process_utils.py:95}} INFO - Sending Signals.SIGTERM to GPID 66351 {2021-01-15 09:06:23,781} {{process_utils.py:61}} INFO - Process psutil.Process(pid=66351, status='terminated') (66351) terminated with exit code 0 {2021-01-15 09:06:23,781} {{scheduler_job.py:1296}} INFO - Exited execute loop </code></pre></div> <p dir="auto"><strong>What you expected to happen</strong>:</p> <p dir="auto">Schdeduler should not die.</p> <p dir="auto"><strong>How to reproduce it</strong>:</p> <p dir="auto">I don't know how to reproduce it</p> <p dir="auto"><strong>Anything else we need to know</strong>:</p> <p dir="auto">No</p>
0
<ol dir="auto"> <li>Open a workspace on a removable or network-attached medium</li> <li>Close Atom</li> <li>Disconnect the medium</li> <li>Open Atom</li> <li>Experience an error while trying to open the workspace. Of course, it shouldn't open. But it shouldn't throw an error either; just ask me to make/open a new workspace.</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 1.0.0<br> <strong>System</strong>: Mac OS X 10.10.3<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: EIO: i/o error, open '/Users/sean/remote/workspace-crystal/---hidden-package-name---/WebContent/WEB-INF'</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At /Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:466 Error: EIO: i/o error, open '/Users/sean/remote/workspace-crystal/---hidden-package-name---/WebContent/WEB-INF' at Error (native) at Object.fs.openSync (fs.js:544:18) at Object.module.(anonymous function) [as openSync] (ATOM_SHELL_ASAR.js:118:20) at Project.module.exports.Project.open (/Applications/Atom.app/Contents/Resources/app.asar/src/project.js:371:27) at Workspace.module.exports.Workspace.openURIInPane (/Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:449:31) at Workspace.module.exports.Workspace.open (/Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:375:19) at EventEmitter.&lt;anonymous&gt; (/Applications/Atom.app/Contents/Resources/app.asar/src/window-event-handler.js:46:25) at emitTwo (events.js:87:13) at EventEmitter.emit (events.js:169:7)"><pre class="notranslate"><code class="notranslate">At /Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:466 Error: EIO: i/o error, open '/Users/sean/remote/workspace-crystal/---hidden-package-name---/WebContent/WEB-INF' at Error (native) at Object.fs.openSync (fs.js:544:18) at Object.module.(anonymous function) [as openSync] (ATOM_SHELL_ASAR.js:118:20) at Project.module.exports.Project.open (/Applications/Atom.app/Contents/Resources/app.asar/src/project.js:371:27) at Workspace.module.exports.Workspace.openURIInPane (/Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:449:31) at Workspace.module.exports.Workspace.open (/Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:375:19) at EventEmitter.&lt;anonymous&gt; (/Applications/Atom.app/Contents/Resources/app.asar/src/window-event-handler.js:46:25) at emitTwo (events.js:87:13) at EventEmitter.emit (events.js:169:7) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{}"><pre class="notranslate">{}</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User No installed packages # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> <span class="pl-en">No</span> <span class="pl-en">installed</span> packages <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
<p dir="auto">To Reproduce:</p> <ol dir="auto"> <li>Open a file from a network share, e.g. \MyServer\Logfiles\error.log then close Atom.</li> <li>Open Atom again when the network share is no longer present, e.g. on a different network at home.</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 0.208.0<br> <strong>System</strong>: Microsoft Windows 10 Pro Insider Preview<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: UNKNOWN: unknown error, open '\cpc-23949-001\LogFiles'</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\workspace.js:458 Error: UNKNOWN: unknown error, open '\\cpc-23949-001\LogFiles\' at Error (native) at Object.fs.openSync (fs.js:544:18) at Object.module.(anonymous function) [as openSync] (ATOM_SHELL_ASAR.js:118:20) at Project.module.exports.Project.open (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\project.js:371:27) at Workspace.module.exports.Workspace.openURIInPane (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\workspace.js:440:31) at Workspace.module.exports.Workspace.open (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\workspace.js:366:19) at EventEmitter.&lt;anonymous&gt; (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\window-event-handler.js:46:25) at emitTwo (events.js:87:13) at EventEmitter.emit (events.js:169:7)"><pre class="notranslate"><code class="notranslate">At C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\workspace.js:458 Error: UNKNOWN: unknown error, open '\\cpc-23949-001\LogFiles\' at Error (native) at Object.fs.openSync (fs.js:544:18) at Object.module.(anonymous function) [as openSync] (ATOM_SHELL_ASAR.js:118:20) at Project.module.exports.Project.open (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\project.js:371:27) at Workspace.module.exports.Workspace.openURIInPane (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\workspace.js:440:31) at Workspace.module.exports.Workspace.open (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\workspace.js:366:19) at EventEmitter.&lt;anonymous&gt; (C:\Users\dw\AppData\Local\atom\app-0.208.0\resources\app.asar\src\window-event-handler.js:46:25) at emitTwo (events.js:87:13) at EventEmitter.emit (events.js:169:7) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;disabledPackages&quot;: [ &quot;language-objective-c&quot;, &quot;language-clojure&quot;, &quot;language-go&quot;, &quot;language-java&quot;, &quot;language-perl&quot;, &quot;language-php&quot;, &quot;language-python&quot;, &quot;language-toml&quot; ], &quot;projectHome&quot;: &quot;C:\\Projects\\&quot; }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;showIndentGuide&quot;: true, &quot;showInvisibles&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>language-objective-c<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-clojure<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-go<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-java<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-perl<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-php<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-python<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-toml<span class="pl-pds">"</span></span> ], <span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>C:<span class="pl-cce">\\</span>Projects<span class="pl-cce">\\</span><span class="pl-pds">"</span></span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"showInvisibles"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User language-cshtml, v0.1.1 language-fsharp, v0.8.4 language-powershell, v2.0.1 minimap, v4.9.4 vim-mode, v0.51.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> language<span class="pl-k">-</span>cshtml, v0.<span class="pl-ii">1</span>.<span class="pl-ii">1</span> language<span class="pl-k">-</span>fsharp, v0.<span class="pl-ii">8</span>.<span class="pl-ii">4</span> language<span class="pl-k">-</span>powershell, v2.<span class="pl-ii">0</span>.<span class="pl-ii">1</span> minimap, v4.<span class="pl-ii">9</span>.<span class="pl-ii">4</span> vim<span class="pl-k">-</span>mode, v0.<span class="pl-ii">51</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
1
<p dir="auto">by <strong>RickySeltzer</strong>:</p> <pre class="notranslate">The syntax for initializing arrays of byte arrays is excessively restrictive and very inelegant and inconvenient. Both of these ought to compile and do the obvious thing. See Also <a href="https://golang.org/issue/6386" rel="nofollow">issue #6386</a>: <a href="http://code.google.com/p/go/issues/detail" rel="nofollow">http://code.google.com/p/go/issues/detail</a>\?id\=6386 There are TWO problems. I) Arrays of constants can not be declared const. II) The syntax requires peppering the source with REDUNDANT redeclarations of '[]byte' before each word. const epigram [][]byte = [][]byte { []byte("He"), []byte("who"), []byte("laughs"), []byte("last"), []byte("laughs"), []byte("best."), } var epigram2 [][]byte = [][]byte { "He", "who", "laughs", "last", "laughs", "best.", } 1. What is a short input program that triggers the error? <a href="http://play.golang.org/p/g7A-bNLV7L" rel="nofollow">http://play.golang.org/p/g7A-bNLV7L</a> 2. What is the full compiler output? prog.go:13: cannot use "He" (type string) as type []byte in array element prog.go:13: cannot use "who" (type string) as type []byte in array element prog.go:13: cannot use "laughs" (type string) as type []byte in array element prog.go:14: cannot use "last" (type string) as type []byte in array element prog.go:14: cannot use "laughs" (type string) as type []byte in array element prog.go:14: cannot use "best." (type string) as type []byte in array element prog.go:15: const initializer &lt;T&gt; literal is not a constant 3. What version of the compiler are you using? (Run it with the -V flag.) any</pre>
<pre class="notranslate">What steps will reproduce the problem? We had two instances of a process stuck in an infinite loop. Probably in the same place. Killing one with SIGQUIT gave stack traces for all goroutines and I could see the problem. Here's an abridged version of the stack dump. Not sure how to reproduce this reliably yet. SIGQUIT: quit PC=0x418209 goroutine 1 [running]: !!! This was empty !!! goroutine 2 [syscall]: ib._Cfunc_ibv_get_async_event(0x410ddc0, 0xf8481b2800) goroutine 4 [runnable]: syscall.Syscall6() syscall.EpollWait(0xf80000000d, 0xf84004a170, 0xa0000000a, 0x2710, 0xc, ...) goroutine 5 [chan receive]: net.(*pollServer).WaitRead(0xf8481b5380, 0xf840003140, 0xf84000e060, 0xb) goroutine 6 [chan receive]: net.(*pollServer).WaitRead(0xf8481b5380, 0xf8400031e0, 0xf84000e060, 0xb) goroutine 7 [chan receive]: net.(*pollServer).WaitRead(0xf8481b5380, 0xf840003280, 0xf84000e060, 0xb) goroutine 8 [chan receive]: net.(*pollServer).WaitRead(0xf8481b5380, 0xf840003320, 0xf84000e060, 0xb) goroutine 9 [select]: actor.(*actor).run(0xf84852c930, 0x7fd115b8ef98) goroutine 10 [chan receive]: net.(*pollServer).WaitRead(0xf8481b5380, 0xf8400035a0, 0xf84000e060, 0xb) goroutine 11 [chan receive]: net.(*pollServer).WaitRead(0xf8481b5380, 0xf840003aa0, 0xf84000e060, 0xb) goroutine 12 [sleep]: time.Sleep(0x2540be400, 0x40049300) goroutine 13 [runnable]: created by addtimer go/src/pkg/runtime/ztime_amd64.c:68 goroutine 14 [runnable]: syscall.Syscall() foo/syscall.Poll(0xf848547fa0, 0x100000001, 0x12a0, 0x0, 0x0, ...) rax 0xfffffffffffffffc rbx 0xac7e68 rcx 0xffffffffffffffff rdx 0x0 rdi 0xac8708 rsi 0x0 rbp 0x7fd115b90f30 rsp 0x7fff5dee1c00 r8 0x0 r9 0x0 r10 0x0 r11 0x246 r12 0x7b9ce0 r13 0xa r14 0x0 r15 0x0 rip 0x418209 rflags 0x246 cs 0x33 fs 0x0 gs 0x0 What is the expected output? stacktraces for all goroutines What do you see instead? no stacktrace for the running goroutine #1 Which compiler are you using (5g, 6g, 8g, gccgo)? 6g Which operating system are you using? linux Which revision are you using? (hg identify) tip</pre>
0
<blockquote> <p dir="auto">Issue originally made by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/decafdennis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/decafdennis">@decafdennis</a></p> </blockquote> <h3 dir="auto">Bug information</h3> <ul dir="auto"> <li><strong>Babel version:</strong> 6.7.2</li> <li><strong>Node version:</strong> 5.0.0</li> <li><strong>npm version:</strong> 3.3.9</li> </ul> <h3 dir="auto">Options</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;plugins&quot;: [ &quot;external-helpers&quot;, &quot;transform-es2015-parameters&quot;, &quot;transform-async-to-generator&quot; ] }"><pre class="notranslate"><code class="notranslate">{ "plugins": [ "external-helpers", "transform-es2015-parameters", "transform-async-to-generator" ] } </code></pre></div> <h3 dir="auto">Input code</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function f() { g(async function() { c(() =&gt; this); }); }"><pre class="notranslate"><code class="notranslate">function f() { g(async function() { c(() =&gt; this); }); } </code></pre></div> <h3 dir="auto">Description</h3> <p dir="auto">Expected output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function f() { g(babelHelpers.asyncToGenerator(function* () { var _this = this; c(function () { return _this; }); })); }"><pre class="notranslate"><code class="notranslate">function f() { g(babelHelpers.asyncToGenerator(function* () { var _this = this; c(function () { return _this; }); })); } </code></pre></div> <p dir="auto">Actual output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function f() { var _this = this; g(babelHelpers.asyncToGenerator(function* () { c(function () { return _this; }); })); }"><pre class="notranslate"><code class="notranslate">function f() { var _this = this; g(babelHelpers.asyncToGenerator(function* () { c(function () { return _this; }); })); } </code></pre></div> <p dir="auto">I [[ https://github.com/babel/babel/compare/master...getstreamline:fix-arrow-this-in-anonymous-function | started work on a fix ]] but I haven't been able to figure out what causes <code class="notranslate">_this</code> to scope differently. Interestingly, if in <code class="notranslate">babel-helper-remap-async-to-generator/src/index.js</code> I remove the <code class="notranslate">replaceWith(built)</code> call, then the lexical scope for <code class="notranslate">this</code> is fixed, but of course I'm missing the call to the helper.</p>
<p dir="auto">Version 6.23.0 of babel-transform causes babel-plugin-transform-es2015-destructuring to crash while compiling our app.</p> <p dir="auto">Pinning to [email protected] removes the crash.</p> <p dir="auto">If I console.log(this.hub) in babel-transform I see that this.hub is an empty object. This should be trivial to reproduce in any app that uses destructuring..</p> <p dir="auto">TypeError: /Users/nick/git/app/src/server/server.js: this.hub.addHelper is not a function<br> at Scope.toArray (/Users/nick/git/app/frontend/node_modules/babel-traverse/lib/scope/index.js:463:38)<br> at DestructuringTransformer.toArray (/Users/nick/git/app/frontend/node_modules/babel-plugin-transform-es2015-destructuring/lib/index.js:122:27)<br> at DestructuringTransformer.pushArrayPattern (/Users/nick/git/app/frontend/node_modules/babel-plugin-transform-es2015-destructuring/lib/index.js:277:26)<br> at DestructuringTransformer.push (/Users/nick/git/app/frontend/node_modules/babel-plugin-transform-es2015-destructuring/lib/index.js:110:14)<br> at DestructuringTransformer.init (/Users/nick/git/app/frontend/node_modules/babel-plugin-transform-es2015-destructuring/lib/index.js:317:12)<br> at PluginPass.VariableDeclaration (/Users/nick/git/app/frontend/node_modules/babel-plugin-transform-es2015-destructuring/lib/index.js:468:27)<br> at newFn (/Users/nick/git/app/frontend/node_modules/babel-traverse/lib/visitors.js:276:21)<br> at NodePath._call (/Users/nick/git/app/frontend/node_modules/babel-traverse/lib/path/context.js:76:18)<br> at NodePath.call (/Users/nick/git/app/frontend/node_modules/babel-traverse/lib/path/context.js:48:17)<br> at NodePath.visit (/Users/nick/git/app/frontend/node_modules/babel-traverse/lib/path/context.js:105:12)</p>
0
<h3 dir="auto">First Check</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li> </ul> <h3 dir="auto">Commit to Help</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I commit to help with one of those options 👆</li> </ul> <h3 dir="auto">Example Code</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@app.post( '/test-fail') def test( param1: str = Form(...), # It fails if the File goes first file: bytes = File(...) ): return Response(content=file, media_type=&quot;application/octet-stream&quot;) @app.post( '/test-success') def test( file: bytes = File(...), # It succeeds if the File goes first param1: str = Form(...) ): return Response(content=file, media_type=&quot;application/octet-stream&quot;)"><pre class="notranslate"><span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">post</span>( <span class="pl-s">'/test-fail'</span>)</span> <span class="pl-k">def</span> <span class="pl-en">test</span>( <span class="pl-s1">param1</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-v">Form</span>(...), <span class="pl-c"># It fails if the File goes first</span> <span class="pl-s1">file</span>: <span class="pl-s1">bytes</span> <span class="pl-c1">=</span> <span class="pl-v">File</span>(...) ): <span class="pl-k">return</span> <span class="pl-v">Response</span>(<span class="pl-s1">content</span><span class="pl-c1">=</span><span class="pl-s1">file</span>, <span class="pl-s1">media_type</span><span class="pl-c1">=</span><span class="pl-s">"application/octet-stream"</span>) <span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">post</span>( <span class="pl-s">'/test-success'</span>)</span> <span class="pl-k">def</span> <span class="pl-en">test</span>( <span class="pl-s1">file</span>: <span class="pl-s1">bytes</span> <span class="pl-c1">=</span> <span class="pl-v">File</span>(...), <span class="pl-c"># It succeeds if the File goes first </span> <span class="pl-s1">param1</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-v">Form</span>(...) ): <span class="pl-k">return</span> <span class="pl-v">Response</span>(<span class="pl-s1">content</span><span class="pl-c1">=</span><span class="pl-s1">file</span>, <span class="pl-s1">media_type</span><span class="pl-c1">=</span><span class="pl-s">"application/octet-stream"</span>)</pre></div> <h3 dir="auto">Description</h3> <p dir="auto"><strong>BUG</strong><br> The <code class="notranslate">File</code> parameter on the POST method must go first, before other <code class="notranslate">Form</code> parameters. Otherwise the end-point returns HTTP code 422.</p> <p dir="auto"><strong>Details</strong><br> A command line like below for the end-points from the example</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="curl --location --request POST 'http://127.0.0.1:5001/test' --form 'param1=&quot;fff&quot;' --form 'file=@&quot;file.png&quot;'"><pre class="notranslate"><code class="notranslate">curl --location --request POST 'http://127.0.0.1:5001/test' --form 'param1="fff"' --form 'file=@"file.png"' </code></pre></div> <p dir="auto">would return <em>HTTP code 200</em> with an expected result for <code class="notranslate">/test-success</code> and <em>HTTP code 422</em> for <code class="notranslate">/test-fail</code> with the following JSON:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{&quot;detail&quot;:[{&quot;loc&quot;:[&quot;body&quot;,&quot;file&quot;],&quot;msg&quot;:&quot;byte type expected&quot;,&quot;type&quot;:&quot;type_error.bytes&quot;}]}"><pre class="notranslate"><code class="notranslate">{"detail":[{"loc":["body","file"],"msg":"byte type expected","type":"type_error.bytes"}]} </code></pre></div> <p dir="auto"><strong>Expected behaviour</strong><br> Validation of parameters doesn't depend on the order of the parameters</p> <h3 dir="auto">Operating System</h3> <p dir="auto">macOS</p> <h3 dir="auto">Operating System Details</h3> <p dir="auto">v12.0.1</p> <h3 dir="auto">FastAPI Version</h3> <p dir="auto">0.70.1</p> <h3 dir="auto">Python Version</h3> <p dir="auto">3.7.10</p> <h3 dir="auto">Additional Context</h3> <p dir="auto"><em>No response</em></p>
<p dir="auto">Here's a <a href="https://github.com/thomasleveil/fastapi/tree/file_and_form_together">branch</a> with my use case:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from starlette.testclient import TestClient from fastapi import FastAPI, File, Form app = FastAPI() @app.post(&quot;/file_before_form&quot;) def file_before_form( file: bytes = File(...), city: str = Form(...), ): return {&quot;file_content&quot;: file, &quot;city&quot;: city} @app.post(&quot;/file_after_form&quot;) def file_after_form( city: str = Form(...), file: bytes = File(...), ): return {&quot;file_content&quot;: file, &quot;city&quot;: city} client = TestClient(app) def test_file_before_form(): response = client.post( &quot;/file_before_form&quot;, data={&quot;city&quot;: &quot;Thimphou&quot;}, files={&quot;file&quot;: &quot;&lt;file content&gt;&quot;} ) assert response.status_code == 200, response.text assert response.json() == {&quot;file_content&quot;: &quot;&lt;file content&gt;&quot;, &quot;city&quot;: &quot;Thimphou&quot;} def test_file_after_form(): response = client.post( &quot;/file_after_form&quot;, data={&quot;city&quot;: &quot;Thimphou&quot;}, files={&quot;file&quot;: &quot;&lt;file content&gt;&quot;} ) assert response.status_code == 200, response.text # &lt;-------------- this fails since ab2b86f assert response.json() == {&quot;file_content&quot;: &quot;&lt;file content&gt;&quot;, &quot;city&quot;: &quot;Thimphou&quot;} "><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">starlette</span>.<span class="pl-s1">testclient</span> <span class="pl-k">import</span> <span class="pl-v">TestClient</span> <span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">FastAPI</span>, <span class="pl-v">File</span>, <span class="pl-v">Form</span> <span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>() <span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">post</span>(<span class="pl-s">"/file_before_form"</span>)</span> <span class="pl-k">def</span> <span class="pl-en">file_before_form</span>( <span class="pl-s1">file</span>: <span class="pl-s1">bytes</span> <span class="pl-c1">=</span> <span class="pl-v">File</span>(...), <span class="pl-s1">city</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-v">Form</span>(...), ): <span class="pl-k">return</span> {<span class="pl-s">"file_content"</span>: <span class="pl-s1">file</span>, <span class="pl-s">"city"</span>: <span class="pl-s1">city</span>} <span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">post</span>(<span class="pl-s">"/file_after_form"</span>)</span> <span class="pl-k">def</span> <span class="pl-en">file_after_form</span>( <span class="pl-s1">city</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-v">Form</span>(...), <span class="pl-s1">file</span>: <span class="pl-s1">bytes</span> <span class="pl-c1">=</span> <span class="pl-v">File</span>(...), ): <span class="pl-k">return</span> {<span class="pl-s">"file_content"</span>: <span class="pl-s1">file</span>, <span class="pl-s">"city"</span>: <span class="pl-s1">city</span>} <span class="pl-s1">client</span> <span class="pl-c1">=</span> <span class="pl-v">TestClient</span>(<span class="pl-s1">app</span>) <span class="pl-k">def</span> <span class="pl-en">test_file_before_form</span>(): <span class="pl-s1">response</span> <span class="pl-c1">=</span> <span class="pl-s1">client</span>.<span class="pl-en">post</span>( <span class="pl-s">"/file_before_form"</span>, <span class="pl-s1">data</span><span class="pl-c1">=</span>{<span class="pl-s">"city"</span>: <span class="pl-s">"Thimphou"</span>}, <span class="pl-s1">files</span><span class="pl-c1">=</span>{<span class="pl-s">"file"</span>: <span class="pl-s">"&lt;file content&gt;"</span>} ) <span class="pl-k">assert</span> <span class="pl-s1">response</span>.<span class="pl-s1">status_code</span> <span class="pl-c1">==</span> <span class="pl-c1">200</span>, <span class="pl-s1">response</span>.<span class="pl-s1">text</span> <span class="pl-k">assert</span> <span class="pl-s1">response</span>.<span class="pl-en">json</span>() <span class="pl-c1">==</span> {<span class="pl-s">"file_content"</span>: <span class="pl-s">"&lt;file content&gt;"</span>, <span class="pl-s">"city"</span>: <span class="pl-s">"Thimphou"</span>} <span class="pl-k">def</span> <span class="pl-en">test_file_after_form</span>(): <span class="pl-s1">response</span> <span class="pl-c1">=</span> <span class="pl-s1">client</span>.<span class="pl-en">post</span>( <span class="pl-s">"/file_after_form"</span>, <span class="pl-s1">data</span><span class="pl-c1">=</span>{<span class="pl-s">"city"</span>: <span class="pl-s">"Thimphou"</span>}, <span class="pl-s1">files</span><span class="pl-c1">=</span>{<span class="pl-s">"file"</span>: <span class="pl-s">"&lt;file content&gt;"</span>} ) <span class="pl-k">assert</span> <span class="pl-s1">response</span>.<span class="pl-s1">status_code</span> <span class="pl-c1">==</span> <span class="pl-c1">200</span>, <span class="pl-s1">response</span>.<span class="pl-s1">text</span> <span class="pl-c"># &lt;-------------- this fails since ab2b86f</span> <span class="pl-k">assert</span> <span class="pl-s1">response</span>.<span class="pl-en">json</span>() <span class="pl-c1">==</span> {<span class="pl-s">"file_content"</span>: <span class="pl-s">"&lt;file content&gt;"</span>, <span class="pl-s">"city"</span>: <span class="pl-s">"Thimphou"</span>}</pre></div> <h3 dir="auto">Description</h3> <p dir="auto">Upgrading FastApi from 0.42.0 to 0.61.0 on one of my project, I stumbled upon a regression in which FastApi will respond with HTTP Error 422 when ever posting a form-data request to an endpoint where a <code class="notranslate">File</code> is declared <strong>after</strong> a <code class="notranslate">Form</code>.</p> <p dir="auto">Searching the Internet, I found another user suffering from this issue : <a href="https://stackoverflow.com/questions/61376754/fastapi-files-must-be-loaded-before-form-in-function-parameters" rel="nofollow">https://stackoverflow.com/questions/61376754/fastapi-files-must-be-loaded-before-form-in-function-parameters</a></p> <p dir="auto">I've created a branch with tests to showcase the issue : <a href="https://github.com/thomasleveil/fastapi/tree/file_and_form_together">https://github.com/thomasleveil/fastapi/tree/file_and_form_together</a></p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>OS: Linux</li> <li>FastAPI Version 0.44.1 and later</li> <li>Python version: 3.8.5</li> </ul> <h3 dir="auto">Additional context</h3> <p dir="auto">I've bisected the repo and figured out the regression was introduced in commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/tiangolo/fastapi/commit/ab2b86fe2ce8fe15e91aaec179438e24ff7b7ed0/hovercard" href="https://github.com/tiangolo/fastapi/commit/ab2b86fe2ce8fe15e91aaec179438e24ff7b7ed0"><tt>ab2b86f</tt></a></p>
1
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-wrap-an-anchor-element-within-a-paragraph" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-wrap-an-anchor-element-within-a-paragraph</a> has an issue. Please describe how to reproduce it, and include links to screen shots if possible.</p> <p dir="auto">here is my code:</p>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-wrap-an-anchor-element-within-a-paragraph" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-wrap-an-anchor-element-within-a-paragraph</a> has an issue. Please describe how to reproduce it, and include links to screen shots if possible.</p> <p dir="auto">Here is my code:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'&gt; &lt;style&gt; .red-text { color: red; } h2 { font-family: Lobster, Monospace; } p { font-size: 16px; font-family: Monospace; } .thick-green-border { border-color: green; border-width: 10px; border-style: solid; border-radius: 50%; } .smaller-image { width: 100px; } &lt;/style&gt; &lt;h2 class='red-text'&gt;CatPhotoApp&lt;/h2&gt; &lt;a href='http://www.catphotoapp.com'&gt;cat photos&lt;/a&gt; &lt;img class='smaller-image thick-green-border' src='https://bit.ly/fcc-kittens'/&gt; &lt;p class='red-text'&gt; &lt;a href='http://www.catphotoapp.com'&gt;click here for&lt;/a&gt;Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.&lt;/p&gt; &lt;------------- (and here is my closing &lt;/p&gt; tag) &lt;p class='red-text'&gt;Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.&lt;/p&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">link</span> <span class="pl-c1">href</span>='<span class="pl-s">http://fonts.googleapis.com/css?family=Lobster</span>' <span class="pl-c1">rel</span>='<span class="pl-s">stylesheet</span>' <span class="pl-c1">type</span>='<span class="pl-s">text/css</span>'<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> .<span class="pl-c1">red-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> red; } <span class="pl-ent">h2</span> { <span class="pl-c1">font-family</span><span class="pl-kos">:</span> Lobster<span class="pl-kos">,</span> Monospace; } <span class="pl-ent">p</span> { <span class="pl-c1">font-size</span><span class="pl-kos">:</span> <span class="pl-c1">16<span class="pl-smi">px</span></span>; <span class="pl-c1">font-family</span><span class="pl-kos">:</span> Monospace; } .<span class="pl-c1">thick-green-border</span> { <span class="pl-c1">border-color</span><span class="pl-kos">:</span> green; <span class="pl-c1">border-width</span><span class="pl-kos">:</span> <span class="pl-c1">10<span class="pl-smi">px</span></span>; <span class="pl-c1">border-style</span><span class="pl-kos">:</span> solid; <span class="pl-c1">border-radius</span><span class="pl-kos">:</span> <span class="pl-c1">50<span class="pl-smi">%</span></span>; } .<span class="pl-c1">smaller-image</span> { <span class="pl-c1">width</span><span class="pl-kos">:</span> <span class="pl-c1">100<span class="pl-smi">px</span></span>; } <span class="pl-kos">&lt;/</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h2</span> <span class="pl-c1">class</span>='<span class="pl-s">red-text</span>'<span class="pl-kos">&gt;</span>CatPhotoApp<span class="pl-kos">&lt;/</span><span class="pl-ent">h2</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">a</span> <span class="pl-c1">href</span>='<span class="pl-s">http://www.catphotoapp.com</span>'<span class="pl-kos">&gt;</span>cat photos<span class="pl-kos">&lt;/</span><span class="pl-ent">a</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">img</span> <span class="pl-c1">class</span>='<span class="pl-s">smaller-image thick-green-border</span>' <span class="pl-c1">src</span>='<span class="pl-s">https://bit.ly/fcc-kittens</span>'/&gt; <span class="pl-kos">&lt;</span><span class="pl-ent">p</span> <span class="pl-c1">class</span>='<span class="pl-s">red-text</span>'<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">a</span> <span class="pl-c1">href</span>='<span class="pl-s">http://www.catphotoapp.com</span>'<span class="pl-kos">&gt;</span>click here for<span class="pl-kos">&lt;/</span><span class="pl-ent">a</span><span class="pl-kos">&gt;</span>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.<span class="pl-kos">&lt;/</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">-------------</span> <span class="pl-c1">(and</span> <span class="pl-c1">here</span> <span class="pl-c1">is</span> <span class="pl-c1">my</span> <span class="pl-c1">closing</span><span class="pl-kos"></span> <span class="pl-kos">&lt;/</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span> tag) <span class="pl-kos">&lt;</span><span class="pl-ent">p</span> <span class="pl-c1">class</span>='<span class="pl-s">red-text</span>'<span class="pl-kos">&gt;</span>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.<span class="pl-kos">&lt;/</span><span class="pl-ent">p</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">Edit(<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/BerkeleyTrue/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/BerkeleyTrue">@BerkeleyTrue</a>): Added back ticks</p>
1
<p dir="auto">Reproduction:</p> <ul dir="auto"> <li>Create and open a file that contains any warnings or errors from deno, let's it be <code class="notranslate">a.ts</code>, for example.</li> <li>Add the file to the exclude list in <code class="notranslate">deno.json</code>:</li> </ul> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&quot;lint&quot;: { &quot;files&quot;: { &quot;exclude&quot;: [&quot;a.ts&quot;] } }"><pre class="notranslate"><span class="pl-ent">"lint"</span>: { <span class="pl-ent">"files"</span>: { <span class="pl-ent">"exclude"</span>: [<span class="pl-s"><span class="pl-pds">"</span>a.ts<span class="pl-pds">"</span></span>] } }</pre></div> <p dir="auto">Config re-applies but diagnostics from <code class="notranslate">a.ts</code> do not disappear.<br> If we edit <code class="notranslate">deno.json</code> before opening the file - it works as should.</p>
<h3 dir="auto">Description</h3> <p dir="auto">The issue below happens in these scenarios:</p> <ol dir="auto"> <li>Running the server.ts with --watch and modifying the server.ts file triggering a restart.</li> <li>Running the same file twice in separate terminal windows</li> </ol> <p dir="auto">Both of these cases result in the exact same message.</p> <p dir="auto"><strong>I added reproduce steps below the stack trace</strong></p> <h3 dir="auto">Error Log W/ RUST_BACKTRACE</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="============================================================ Deno has panicked. This is a bug in Deno. Please report this at https://github.com/denoland/deno/issues/new. If you can reliably reproduce this panic, include the reproduction steps and re-run with the RUST_BACKTRACE=1 env var set and include the backtrace in your report. Platform: macos x86_64 Version: 1.25.0 Args: [&quot;deno&quot;, &quot;run&quot;, &quot;-A&quot;, &quot;--unstable&quot;, &quot;--watch&quot;, &quot;test-server.ts&quot;] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', ext/flash/lib.rs:1316:42 stack backtrace: 0: _rust_begin_unwind 1: core::panicking::panic_fmt 2: core::panicking::panic 3: &lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 4: &lt;extern &quot;C&quot; fn(A0) .&gt; R as v8::support::CFnFrom&lt;F&gt;&gt;::mapping::c_fn 5: __ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb0EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEENS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EEPmi 6: __ZN2v88internal21Builtin_HandleApiCallEiPmPNS0_7IsolateE note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace."><pre class="notranslate"><code class="notranslate">============================================================ Deno has panicked. This is a bug in Deno. Please report this at https://github.com/denoland/deno/issues/new. If you can reliably reproduce this panic, include the reproduction steps and re-run with the RUST_BACKTRACE=1 env var set and include the backtrace in your report. Platform: macos x86_64 Version: 1.25.0 Args: ["deno", "run", "-A", "--unstable", "--watch", "test-server.ts"] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', ext/flash/lib.rs:1316:42 stack backtrace: 0: _rust_begin_unwind 1: core::panicking::panic_fmt 2: core::panicking::panic 3: &lt;core::future::from_generator::GenFuture&lt;T&gt; as core::future::future::Future&gt;::poll 4: &lt;extern "C" fn(A0) .&gt; R as v8::support::CFnFrom&lt;F&gt;&gt;::mapping::c_fn 5: __ZN2v88internal12_GLOBAL__N_119HandleApiCallHelperILb0EEENS0_11MaybeHandleINS0_6ObjectEEEPNS0_7IsolateENS0_6HandleINS0_10HeapObjectEEENS8_INS0_20FunctionTemplateInfoEEENS8_IS4_EEPmi 6: __ZN2v88internal21Builtin_HandleApiCallEiPmPNS0_7IsolateE note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. </code></pre></div> <h3 dir="auto">Error Log original</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="============================================================ Deno has panicked. This is a bug in Deno. Please report this at https://github.com/denoland/deno/issues/new. If you can reliably reproduce this panic, include the reproduction steps and re-run with the RUST_BACKTRACE=1 env var set and include the backtrace in your report. Platform: macos x86_64 Version: 1.25.0 Args: [&quot;deno&quot;, &quot;run&quot;, &quot;-A&quot;, &quot;--unstable&quot;, &quot;--watch&quot;, &quot;test-server.ts&quot;] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', ext/flash/lib.rs:1316:42 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace"><pre class="notranslate"><code class="notranslate">============================================================ Deno has panicked. This is a bug in Deno. Please report this at https://github.com/denoland/deno/issues/new. If you can reliably reproduce this panic, include the reproduction steps and re-run with the RUST_BACKTRACE=1 env var set and include the backtrace in your report. Platform: macos x86_64 Version: 1.25.0 Args: ["deno", "run", "-A", "--unstable", "--watch", "test-server.ts"] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', ext/flash/lib.rs:1316:42 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace </code></pre></div> <h3 dir="auto">Exact Repro Steps</h3> <p dir="auto"><strong>Scenario 1: --watch</strong></p> <ol dir="auto"> <li>Create new project folder <code class="notranslate">mkdir project-test-watch</code></li> <li>Navigate to project folder <code class="notranslate">cd project-test-watch</code></li> <li>Create server.ts file</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="echo &quot; Deno.serve( (request) =&gt; { console.log('url', request.url); const url = new URL(request.url); console.log('url', url); return new Response('hehe'); }, { port: 4500 }, ); &quot; &gt; server.ts"><pre class="notranslate"><code class="notranslate">echo " Deno.serve( (request) =&gt; { console.log('url', request.url); const url = new URL(request.url); console.log('url', url); return new Response('hehe'); }, { port: 4500 }, ); " &gt; server.ts </code></pre></div> <ol start="4" dir="auto"> <li>Start server in watch mode <code class="notranslate">RUST_BACKTRACE=1 deno run -A --unstable --watch server.ts</code></li> <li>Modify the server.ts file <code class="notranslate">echo "\n // update file :)" &gt;&gt; server.ts</code><br> EXPECTED:<br> Server Restarts fine<br> ACTUAL:<br> The error above shows</li> </ol> <p dir="auto"><strong>Scenario 2: Running file twice</strong></p> <ol dir="auto"> <li>Follow Scenario 1's steps 1-3;</li> <li>Start server <code class="notranslate">RUST_BACKTRACE=1 deno run -A --unstable server.ts</code> <strong>--watch is not needed</strong></li> <li>Open up a another terminal window</li> <li>Run the same deno script to start the server (Make sure the other one is still running) <code class="notranslate">RUST_BACKTRACE=1 deno run -A --unstable server.ts</code><br> EXPECTED:<br> Some error akin to <code class="notranslate">port already in use</code><br> ACTUAL<br> The Second tab from step 4 outputs the error above.</li> </ol>
0
<p dir="auto">Description<br> We are using requests package for our application development and the framework picks up latest version of requests whenever it builds.Today we noticed that our app broken due to new version of Requests 2.16.0.The "Packages" module is completely missing and it leads to our delivery blocking,Could you please check and let us know if we can expect any quick fix for this issue?</p> <p dir="auto">Working version:<br> 2.14.2 and 2.15.1</p>
<p dir="auto">Hey so the 2.16.0 release broke all of the vendored things I am assuming. I have <a href="https://github.com/tomchristie/apistar/pull/189" data-hovercard-type="pull_request" data-hovercard-url="/encode/apistar/pull/189/hovercard">issued</a> two <a href="https://github.com/encode/django-rest-framework/pull/5185" data-hovercard-type="pull_request" data-hovercard-url="/encode/django-rest-framework/pull/5185/hovercard">PRs</a> to two frameworks I use that rely on the vendored packages in requests.</p> <p dir="auto">The <code class="notranslate">changelog</code> was a bit obscure about this</p> <blockquote> <p dir="auto">2.16.0<br> Unvendor ALL the things!</p> </blockquote> <p dir="auto">Something like <code class="notranslate">BREAKING CHANGE: Vendor packages have been removed, if you relied on these you will need to modify your code</code> would be nice in a 2.16.1 changelog update maybe?</p> <p dir="auto">I realize that it can be said these vendored packages are internal and should not be relied on but at least these packages had a use case for using requests and some of the underlying libs and used the vendor packages to ensure everything worked as expected with requests.</p> <p dir="auto">Anyone who was relying on these will have their code break upon upgrade, so perhaps a bigger version bump would have been welcome, but at least this can be a warning to people coming here wondering why stuff broke. My solution was a <code class="notranslate">compat.py</code> that conditionally imported <code class="notranslate">urllib3</code> (works the same for other vendored packages), see my PRs for that fix.</p>
1
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br> <a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br> on reporting bugs.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical bug reports.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed fixes.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the bug was already fixed in the master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br> in this issue (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Mandatory Debugging Information</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br> (if you are not able to do this, then at least specify the Celery<br> version affected).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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 &amp; rate limits disabled.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br> and/or upgrading Celery and its dependencies.</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Expected Behavior</h1> <p dir="auto">The <code class="notranslate">celery_worker</code> pytest fixture should either wait until all enqueued tasks are processed before stopping the worker or, alternatively, it should raise an exception if the worker fails to terminate within the defined timeout (currently hardcoded to 10s).</p> <h1 dir="auto">Actual Behavior</h1> <p dir="auto">If, when the cleanup code of the <code class="notranslate">celery_worker</code> pytest fixture is called, the worker is still executing tasks, and those tasks take longer than 10s to terminate, the worker thread is left in running state and the worker will never be stopped, causing the pytest process to never exit.</p> <h1 dir="auto">Additional information</h1> <p dir="auto">The code around </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/celery/celery/blob/7288147d65a32b726869ed887d99e4bfd8c070e2/celery/contrib/testing/worker.py#L133">celery/celery/contrib/testing/worker.py</a> </p> <p class="mb-0 color-fg-muted"> Line 133 in <a data-pjax="true" class="commit-tease-sha" href="/celery/celery/commit/7288147d65a32b726869ed887d99e4bfd8c070e2">7288147</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="L133" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="133"></td> <td id="LC133" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">t</span>.<span class="pl-en">join</span>(<span class="pl-c1">10</span>) </td> </tr> </tbody></table> </div> </div> waits for the thread to exit with a timeout of 10 seconds, but the status of the thread once the threading API <code class="notranslate">.join</code> method returns is not checked, potentially leaving the thread running.<p></p> <p dir="auto">Because of the thread status not being checked (and the <code class="notranslate">.join()</code> method not raising exceptions on timeout), the execution proceeds cleanly, by resetting the <code class="notranslate">should_terminate</code> state variable back to <code class="notranslate">None</code>, causing the worker thread to stay alive even after it completed all the enqueued tasks.</p> <p dir="auto">At a minimum, the fixture should raise an exception if the worker is still alive once the timeout is expired, letting the developer know about the issue and letting him make sure that all tasks have been processed before exiting the test and letting pytest invoke the teardown code. An additional improvement would be to let the timeout be overridable e.g. via another fixture as done for <a href="https://github.com/celery/celery/blob/7288147d65a32b726869ed887d99e4bfd8c070e2/celery/contrib/pytest.py#L149">celery_worker_parameters</a> or to let the developer indicate that the worker should wait until the current/all pending tasks have been completed before exiting via a more robust method.</p>
<p dir="auto">I'm using celery to run tasks which are listening to some web connections and recording the messages. The environment information is as following:</p> <blockquote> <p dir="auto"><strong>software -&gt; celery:4.1.0 (latentcall) kombu:4.1.0 py:3.6.3<br> billiard:3.5.0.3 py-amqp:2.2.2<br> platform -&gt; system:Linux arch:64bit imp:CPython<br> loader -&gt; celery.loaders.app.AppLoader<br> settings -&gt; transport:amqp results:disabled</strong></p> </blockquote> <p dir="auto">These tasks should always be running as I used while true loop in async function to keep recording messages sent by web server. However, after several hours, all celery tasks stopped. And I found the main process and the child processes of my celery worker were still running but the start time of child processes' was much newer than the main process.</p> <blockquote> <p dir="auto"><strong>PID STARTED ELAPSED COMMAND<br> 15785 Mon Apr 23 03:20:01 2018 2-04:53:38 /home/ubuntu/anaconda3/bin/python /home/ubuntu/anaconda3/bin/celery worker -A data_fetcher --loglevel=info --logfile=log.txt --concurrency=10<br> 18587 Tue Apr 24 08:04:20 2018 1-00:09:19 /home/ubuntu/anaconda3/bin/python /home/ubuntu/anaconda3/bin/celery worker -A data_fetcher --loglevel=info --logfile=log.txt --concurrency=10<br> 18588 Tue Apr 24 08:04:20 2018 1-00:09:19 /home/ubuntu/anaconda3/bin/python /home/ubuntu/anaconda3/bin/celery worker -A data_fetcher --loglevel=info --logfile=log.txt --concurrency=10</strong></p> </blockquote> <p dir="auto">More related information in celery log file(all child processes):</p> <blockquote> <p dir="auto">[2018-04-24 08:04:14,623: ERROR/MainProcess] Process 'ForkPoolWorker-6' pid:15794 exited with 'exitcode 70'<br> [2018-04-24 08:04:14,633: ERROR/MainProcess] Task handler raised error: WorkerLostError('Worker exited prematurely: exitcode 70.',)<br> Traceback (most recent call last):<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/worker/worker.py", line 203, in start<br> self.blueprint.start(self)<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/bootsteps.py", line 119, in start<br> step.start(parent)<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/bootsteps.py", line 370, in start<br> return self.obj.start()<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/worker/consumer/consumer.py", line 320, in start<br> blueprint.start(self)<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/bootsteps.py", line 119, in start<br> step.start(parent)<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/worker/consumer/consumer.py", line 596, in start<br> c.loop(*c.loop_args())<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/celery/worker/loops.py", line 77, in asynloop<br> raise WorkerShutdown(should_stop)<br> celery.exceptions.WorkerShutdown: 0</p> <p dir="auto">During handling of the above exception, another exception occurred:</p> <p dir="auto">Traceback (most recent call last):<br> File "/home/ubuntu/anaconda3/lib/python3.6/site-packages/billiard/pool.py", line 1223, in mark_as_worker_lost<br> human_status(exitcode)),<br> billiard.exceptions.WorkerLostError: Worker exited prematurely: exitcode 70.</p> </blockquote> <p dir="auto">Why were the child processes shut down and restarted? (and the celery tasks were never queued again.)<br> What's the best practice to keep such long-running tasks running forever?<br> Any help would be appreciated!</p>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=skaffman" rel="nofollow">Kenny MacLeod</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-4677?redirect=false" rel="nofollow">SPR-4677</a></strong> and commented</p> <p dir="auto">In some cases, I would like to be able to more tightly bind a controller's exception handling to the controller itself. I am imagining an <code class="notranslate">@ExceptionHandler</code> annotation which can be added to a controller's methods, which would be invoked by the framework if the <code class="notranslate">@RequestMapping-annotated</code> handler methods throw an exception. These annotated methods would be used in preference to the context-wide ExceptionResolvers.</p> <p dir="auto">This would be particularly useful in controllers with multiple <code class="notranslate">@RequestMapping</code> methods, all of which have related exception handling requirements, but which are specific to the controller. Handling this sort of complex exception handling logic in a context-wide ExceptionResolver is decoupling things too much from the source of the exceptions.</p> <p dir="auto">Thoughts?</p> <hr> <p dir="auto"><strong>Affects:</strong> 2.5.3</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="398093725" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10236" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10236/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10236">#10236</a> Annotation for exception handling inside annotation based Controllers (<em><strong>"is duplicated by"</strong></em>)</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398094165" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10304" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10304/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10304">#10304</a> Portlet-version of <code class="notranslate">@ExceptionHandler</code></li> </ul> <p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/f09f4e8dd2f167030204caecfa4a1ae720d8ecfe/hovercard" href="https://github.com/spring-projects/spring-framework/commit/f09f4e8dd2f167030204caecfa4a1ae720d8ecfe"><tt>f09f4e8</tt></a></p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=katentim" rel="nofollow">Tim Nolan</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-403?redirect=false" rel="nofollow">SPR-403</a></strong> and commented</p> <p dir="auto">Spring constructor-arg comments state:</p> <p dir="auto">"NOTE: it is highly recommended to use the index attribute, in Spring up<br> to and including 1.1. The constructor matcher is extremely greedy in<br> matching args without an index, to the point of duplicating supplied args<br> to fill in unspecified constructor args, if they are compatible (i.e. one<br> single String arg will match a constructor with two String args, etc.).<br> The matcher should be less agressive in a future version."</p> <p dir="auto">This doesn't appear to be the case. This only occurs with autowiring. Here's a test case demonstating that a supplied argument isn't duplicated:</p> <p dir="auto">&lt;bean id="exampleBean" class="dateformat.Test"&gt;<br> &lt;constructor-arg type="java.lang.Boolean"&gt;&lt;value&gt;true&lt;/value&gt;&lt;/constructor-arg&gt;<br> &lt;/bean&gt;<br> public class Test {<br> public Test(Boolean b, Boolean b2) {<br> System.out.println("b='" + b + "'");<br> System.out.println("b2='" + b2 + "'");<br> }<br> }</p> <hr> <p dir="auto">No further details from <a href="https://jira.spring.io/browse/SPR-403?redirect=false" rel="nofollow">SPR-403</a></p>
0
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.3.1</p> <h3 dir="auto">What happened</h3> <p dir="auto">When attempting to delete a DAG using Airflow 2.3.1 I get the following error, and the DAG along with its metadata are effectively not deleted:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Something bad has happened. Airflow is used by many users, and it is very likely that others had similar problems and you can easily find a solution to your problem. Consider following these steps: * gather the relevant information (detailed logs with errors, reproduction steps, details of your deployment) * find similar issues using: * [GitHub Discussions](https://github.com/apache/airflow/discussions) * [GitHub Issues](https://github.com/apache/airflow/issues) * [Stack Overflow](https://stackoverflow.com/questions/tagged/airflow) * the usual search engine you use on a daily basis * if you run Airflow on a Managed Service, consider opening an issue using the service support channels * if you tried and have difficulty with diagnosing and fixing the problem yourself, consider creating a [bug report](https://github.com/apache/airflow/issues/new/choose). Make sure however, to include all relevant details and results of your investigation so far. Python version: 3.7.13 Airflow version: 2.3.1 Node: airflow-webserver-766ff4b954-p7m8m ------------------------------------------------------------------------------- Traceback (most recent call last): File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py&quot;, line 1706, in _execute_context cursor, statement, parameters, context File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/default.py&quot;, line 716, in do_execute cursor.execute(statement, parameters) psycopg2.errors.ForeignKeyViolation: update or delete on table &quot;dag&quot; violates foreign key constraint &quot;dag_tag_dag_id_fkey&quot; on table &quot;dag_tag&quot; DETAIL: Key (dag_id)=(etl_daily_stg) is still referenced from table &quot;dag_tag&quot;. The above exception was the direct cause of the following exception: Traceback (most recent call last): File &quot;/home/airflow/.local/lib/python3.7/site-packages/flask/app.py&quot;, line 2447, in wsgi_app response = self.full_dispatch_request() File &quot;/home/airflow/.local/lib/python3.7/site-packages/flask/app.py&quot;, line 1952, in full_dispatch_request rv = self.handle_user_exception(e) File &quot;/home/airflow/.local/lib/python3.7/site-packages/flask/app.py&quot;, line 1821, in handle_user_exception reraise(exc_type, exc_value, tb) File &quot;/home/airflow/.local/lib/python3.7/site-packages/flask/_compat.py&quot;, line 39, in reraise raise value File &quot;/home/airflow/.local/lib/python3.7/site-packages/flask/app.py&quot;, line 1950, in full_dispatch_request rv = self.dispatch_request() File &quot;/home/airflow/.local/lib/python3.7/site-packages/flask/app.py&quot;, line 1936, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File &quot;/home/airflow/.local/lib/python3.7/site-packages/airflow/www/auth.py&quot;, line 43, in decorated return func(*args, **kwargs) File &quot;/home/airflow/.local/lib/python3.7/site-packages/airflow/www/decorators.py&quot;, line 80, in wrapper return f(*args, **kwargs) File &quot;/home/airflow/.local/lib/python3.7/site-packages/airflow/www/views.py&quot;, line 1844, in delete delete_dag.delete_dag(dag_id) File &quot;/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py&quot;, line 71, in wrapper return func(*args, session=session, **kwargs) File &quot;/home/airflow/.local/lib/python3.7/site-packages/airflow/api/common/delete_dag.py&quot;, line 80, in delete_dag .delete(synchronize_session='fetch') File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/orm/query.py&quot;, line 3111, in delete execution_options={&quot;synchronize_session&quot;: synchronize_session}, File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/orm/session.py&quot;, line 1670, in execute result = conn._execute_20(statement, params or {}, execution_options) File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py&quot;, line 1520, in _execute_20 return meth(self, args_10style, kwargs_10style, execution_options) File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/sql/elements.py&quot;, line 314, in _execute_on_connection self, multiparams, params, execution_options File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py&quot;, line 1399, in _execute_clauseelement cache_hit=cache_hit, File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py&quot;, line 1749, in _execute_context e, statement, parameters, cursor, context File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py&quot;, line 1930, in _handle_dbapi_exception sqlalchemy_exception, with_traceback=exc_info[2], from_=e File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/util/compat.py&quot;, line 211, in raise_ raise exception File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py&quot;, line 1706, in _execute_context cursor, statement, parameters, context File &quot;/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/default.py&quot;, line 716, in do_execute cursor.execute(statement, parameters) sqlalchemy.exc.IntegrityError: (psycopg2.errors.ForeignKeyViolation) update or delete on table &quot;dag&quot; violates foreign key constraint &quot;dag_tag_dag_id_fkey&quot; on table &quot;dag_tag&quot; DETAIL: Key (dag_id)=(etl_daily_stg) is still referenced from table &quot;dag_tag&quot;. [SQL: DELETE FROM dag WHERE dag.dag_id IN (%(dag_id_1_1)s) RETURNING dag.dag_id] [parameters: {'dag_id_1_1': 'etl_daily_stg'}] (Background on this error at: http://sqlalche.me/e/14/gkpj)"><pre class="notranslate"><code class="notranslate">Something bad has happened. Airflow is used by many users, and it is very likely that others had similar problems and you can easily find a solution to your problem. Consider following these steps: * gather the relevant information (detailed logs with errors, reproduction steps, details of your deployment) * find similar issues using: * [GitHub Discussions](https://github.com/apache/airflow/discussions) * [GitHub Issues](https://github.com/apache/airflow/issues) * [Stack Overflow](https://stackoverflow.com/questions/tagged/airflow) * the usual search engine you use on a daily basis * if you run Airflow on a Managed Service, consider opening an issue using the service support channels * if you tried and have difficulty with diagnosing and fixing the problem yourself, consider creating a [bug report](https://github.com/apache/airflow/issues/new/choose). Make sure however, to include all relevant details and results of your investigation so far. Python version: 3.7.13 Airflow version: 2.3.1 Node: airflow-webserver-766ff4b954-p7m8m ------------------------------------------------------------------------------- Traceback (most recent call last): File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1706, in _execute_context cursor, statement, parameters, context File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 716, in do_execute cursor.execute(statement, parameters) psycopg2.errors.ForeignKeyViolation: update or delete on table "dag" violates foreign key constraint "dag_tag_dag_id_fkey" on table "dag_tag" DETAIL: Key (dag_id)=(etl_daily_stg) is still referenced from table "dag_tag". The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/home/airflow/.local/lib/python3.7/site-packages/flask/app.py", line 2447, in wsgi_app response = self.full_dispatch_request() File "/home/airflow/.local/lib/python3.7/site-packages/flask/app.py", line 1952, in full_dispatch_request rv = self.handle_user_exception(e) File "/home/airflow/.local/lib/python3.7/site-packages/flask/app.py", line 1821, in handle_user_exception reraise(exc_type, exc_value, tb) File "/home/airflow/.local/lib/python3.7/site-packages/flask/_compat.py", line 39, in reraise raise value File "/home/airflow/.local/lib/python3.7/site-packages/flask/app.py", line 1950, in full_dispatch_request rv = self.dispatch_request() File "/home/airflow/.local/lib/python3.7/site-packages/flask/app.py", line 1936, in dispatch_request return self.view_functions[rule.endpoint](**req.view_args) File "/home/airflow/.local/lib/python3.7/site-packages/airflow/www/auth.py", line 43, in decorated return func(*args, **kwargs) File "/home/airflow/.local/lib/python3.7/site-packages/airflow/www/decorators.py", line 80, in wrapper return f(*args, **kwargs) File "/home/airflow/.local/lib/python3.7/site-packages/airflow/www/views.py", line 1844, in delete delete_dag.delete_dag(dag_id) File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 71, in wrapper return func(*args, session=session, **kwargs) File "/home/airflow/.local/lib/python3.7/site-packages/airflow/api/common/delete_dag.py", line 80, in delete_dag .delete(synchronize_session='fetch') File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/orm/query.py", line 3111, in delete execution_options={"synchronize_session": synchronize_session}, File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/orm/session.py", line 1670, in execute result = conn._execute_20(statement, params or {}, execution_options) File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1520, in _execute_20 return meth(self, args_10style, kwargs_10style, execution_options) File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/sql/elements.py", line 314, in _execute_on_connection self, multiparams, params, execution_options File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1399, in _execute_clauseelement cache_hit=cache_hit, File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1749, in _execute_context e, statement, parameters, cursor, context File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1930, in _handle_dbapi_exception sqlalchemy_exception, with_traceback=exc_info[2], from_=e File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 211, in raise_ raise exception File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1706, in _execute_context cursor, statement, parameters, context File "/home/airflow/.local/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 716, in do_execute cursor.execute(statement, parameters) sqlalchemy.exc.IntegrityError: (psycopg2.errors.ForeignKeyViolation) update or delete on table "dag" violates foreign key constraint "dag_tag_dag_id_fkey" on table "dag_tag" DETAIL: Key (dag_id)=(etl_daily_stg) is still referenced from table "dag_tag". [SQL: DELETE FROM dag WHERE dag.dag_id IN (%(dag_id_1_1)s) RETURNING dag.dag_id] [parameters: {'dag_id_1_1': 'etl_daily_stg'}] (Background on this error at: http://sqlalche.me/e/14/gkpj) </code></pre></div> <h3 dir="auto">What you think should happen instead</h3> <p dir="auto">DAG should be deleted along with the associated metadata</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Operating System</h3> <p dir="auto">UNIX</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Deployment</h3> <p dir="auto">Official Apache Airflow Helm Chart</p> <h3 dir="auto">Deployment details</h3> <p dir="auto"><em>No response</em></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" checked=""> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
<p dir="auto">Hi, I have a very strange and specific behaviour of Airflow on AWS EKS cluster after deploying Calico to enforce network policies. I have also created AWS support case, but I also need support from Airflow team. I will be very appreciated for any help.<br> <strong>What happened</strong>:<br> I have Airflow set-up running as 2 k8s pods (Airflow webserver and scheduler). Both Airflow pods use git-sync sidecar container to get DAGs from git and store it at k8s <code class="notranslate">emptyDir</code> volume. All works well on fresh EKS cluster without errors. But at the moment of deploing Calico <a href="https://docs.aws.amazon.com/eks/latest/userguide/calico.html" rel="nofollow">https://docs.aws.amazon.com/eks/latest/userguide/calico.html</a> to EKS cluster all DAGs with local imports become broken. Airflow has default k8s Network policy which allow all ingress/egress traffic without restrictions, and Airflow UI is accessible. But in the Airflow there is a message <code class="notranslate">DAG "helloWorld" seems to be missing.</code> and Airflow webserver became to generate an error in the logs:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2020-07-08 14:43:38,784] {__init__.py:51} INFO - Using executor SequentialExecutor │ │ [2020-07-08 14:43:38,784] {dagbag.py:396} INFO - Filling up the DagBag from /usr/local/airflow/dags/repo │ │ [2020-07-08 14:43:38,785] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dag_test.py │ │ [2020-07-08 14:43:39,016] {dagbag.py:239} ERROR - Failed to import: /usr/local/airflow/dags/repo/airflow_dags/dag_test.py │ │ Traceback (most recent call last): │ │ File &quot;/usr/local/lib/python3.7/site-packages/airflow/models/dagbag.py&quot;, line 236, in process_file │ │ m = imp.load_source(mod_name, filepath) │ │ File &quot;/usr/local/lib/python3.7/imp.py&quot;, line 171, in load_source │ │ module = _load(spec) │ │ File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 696, in _load │ │ File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 677, in _load_unlocked │ │ File &quot;&lt;frozen importlib._bootstrap_external&gt;&quot;, line 728, in exec_module │ │ File &quot;&lt;frozen importlib._bootstrap&gt;&quot;, line 219, in _call_with_frames_removed │ │ File &quot;/usr/local/airflow/dags/repo/airflow_dags/dag_test.py&quot;, line 5, in &lt;module&gt; │ │ from airflow_dags.common import DEFAULT_ARGS │ │ ModuleNotFoundError: No module named 'airflow_dags'"><pre class="notranslate"><code class="notranslate">[2020-07-08 14:43:38,784] {__init__.py:51} INFO - Using executor SequentialExecutor │ │ [2020-07-08 14:43:38,784] {dagbag.py:396} INFO - Filling up the DagBag from /usr/local/airflow/dags/repo │ │ [2020-07-08 14:43:38,785] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dag_test.py │ │ [2020-07-08 14:43:39,016] {dagbag.py:239} ERROR - Failed to import: /usr/local/airflow/dags/repo/airflow_dags/dag_test.py │ │ Traceback (most recent call last): │ │ File "/usr/local/lib/python3.7/site-packages/airflow/models/dagbag.py", line 236, in process_file │ │ m = imp.load_source(mod_name, filepath) │ │ File "/usr/local/lib/python3.7/imp.py", line 171, in load_source │ │ module = _load(spec) │ │ File "&lt;frozen importlib._bootstrap&gt;", line 696, in _load │ │ File "&lt;frozen importlib._bootstrap&gt;", line 677, in _load_unlocked │ │ File "&lt;frozen importlib._bootstrap_external&gt;", line 728, in exec_module │ │ File "&lt;frozen importlib._bootstrap&gt;", line 219, in _call_with_frames_removed │ │ File "/usr/local/airflow/dags/repo/airflow_dags/dag_test.py", line 5, in &lt;module&gt; │ │ from airflow_dags.common import DEFAULT_ARGS │ │ ModuleNotFoundError: No module named 'airflow_dags' </code></pre></div> <p dir="auto">The DAG itself consists of 2 files: <code class="notranslate">dag_test.py</code> and <code class="notranslate">common.py</code>. Content of the files are:<br> <code class="notranslate">common.py</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from datetime import datetime, timedelta DEFAULT_ARGS = { 'owner': 'airflow', 'depends_on_past': False, 'start_date': datetime(2020, 3, 26), 'retry_delay': timedelta(minutes=1), }"><pre class="notranslate"><code class="notranslate">from datetime import datetime, timedelta DEFAULT_ARGS = { 'owner': 'airflow', 'depends_on_past': False, 'start_date': datetime(2020, 3, 26), 'retry_delay': timedelta(minutes=1), } </code></pre></div> <p dir="auto"><code class="notranslate">dag_test.py</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from airflow import DAG from airflow.operators.bash_operator import BashOperator from airflow_dags.common import DEFAULT_ARGS dag = DAG('helloWorld', schedule_interval='*/5 * * * *', default_args=DEFAULT_ARGS) t1 = BashOperator( task_id='task_1', bash_command='echo &quot;Hello World from Task 1&quot;; sleep 30', dag=dag )"><pre class="notranslate"><code class="notranslate">from airflow import DAG from airflow.operators.bash_operator import BashOperator from airflow_dags.common import DEFAULT_ARGS dag = DAG('helloWorld', schedule_interval='*/5 * * * *', default_args=DEFAULT_ARGS) t1 = BashOperator( task_id='task_1', bash_command='echo "Hello World from Task 1"; sleep 30', dag=dag ) </code></pre></div> <p dir="auto"><em>What I have already tried at the webserver and scheduler pods</em>:</p> <ul dir="auto"> <li>ssh to Airflow pod and enter Python shell. All imports work fine, for example:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="airflow@airflow-webserver-78bc695cc7-l7z9s:~$ pwd /usr/local/airflow airflow@airflow-webserver-78bc695cc7-l7z9s:~$ python Python 3.7.4 (default, Oct 17 2019, 06:10:02) [GCC 8.3.0] on linux Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information. &gt;&gt;&gt; from airflow_dags.common import DEFAULT_ARGS &gt;&gt;&gt; print(DEFAULT_ARGS) {'owner': 'airflow', 'depends_on_past': False, 'start_date': datetime.datetime(2020, 3, 26, 0, 0), 'retry_delay': datetime.timedelta(seconds=60)} &gt;&gt;&gt;"><pre class="notranslate"><code class="notranslate">airflow@airflow-webserver-78bc695cc7-l7z9s:~$ pwd /usr/local/airflow airflow@airflow-webserver-78bc695cc7-l7z9s:~$ python Python 3.7.4 (default, Oct 17 2019, 06:10:02) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; from airflow_dags.common import DEFAULT_ARGS &gt;&gt;&gt; print(DEFAULT_ARGS) {'owner': 'airflow', 'depends_on_past': False, 'start_date': datetime.datetime(2020, 3, 26, 0, 0), 'retry_delay': datetime.timedelta(seconds=60)} &gt;&gt;&gt; </code></pre></div> <ul dir="auto"> <li>from pod bash shell, I can execute airflow command and <code class="notranslate">list_tasks</code>, and DAG is not broken:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="airflow@airflow-webserver-78bc695cc7-l7z9s:~$ airflow list_tasks helloWorld [2020-07-08 15:37:24,309] {settings.py:212} DEBUG - Setting up DB connection pool (PID 275) [2020-07-08 15:37:24,310] {settings.py:253} DEBUG - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=1800, pid=275 [2020-07-08 15:37:24,366] {cli_action_loggers.py:42} DEBUG - Adding &lt;function default_action_log at 0x7fb9b5a4f710&gt; to pre execution callback [2020-07-08 15:37:24,817] {cli_action_loggers.py:68} DEBUG - Calling callbacks: [&lt;function default_action_log at 0x7fb9b5a4f710&gt;] [2020-07-08 15:37:24,847] {__init__.py:51} INFO - Using executor SequentialExecutor [2020-07-08 15:37:24,848] {dagbag.py:396} INFO - Filling up the DagBag from /usr/local/airflow/dags/repo [2020-07-08 15:37:24,849] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dag_test.py [2020-07-08 15:37:25,081] {dagbag.py:363} DEBUG - Loaded DAG &lt;DAG: helloWorld&gt; [2020-07-08 15:37:25,082] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dagbg_add.py task_1 [2020-07-08 15:37:25,083] {cli_action_loggers.py:86} DEBUG - Calling callbacks: [] [2020-07-08 15:37:25,083] {settings.py:278} DEBUG - Disposing DB connection pool (PID 275) airflow@airflow-webserver-78bc695cc7-l7z9s:~$ airflow trigger_dag helloWorld [2020-07-08 15:50:25,446] {settings.py:212} DEBUG - Setting up DB connection pool (PID 717) [2020-07-08 15:50:25,446] {settings.py:253} DEBUG - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=1800, pid=717 [2020-07-08 15:50:25,502] {cli_action_loggers.py:42} DEBUG - Adding &lt;function default_action_log at 0x7fe05c254710&gt; to pre execution callback [2020-07-08 15:50:25,986] {cli_action_loggers.py:68} DEBUG - Calling callbacks: [&lt;function default_action_log at 0x7fe05c254710&gt;] [2020-07-08 15:50:26,024] {__init__.py:51} INFO - Using executor SequentialExecutor [2020-07-08 15:50:26,024] {dagbag.py:396} INFO - Filling up the DagBag from /usr/local/airflow/dags/repo/airflow_dags/dag_test.py [2020-07-08 15:50:26,024] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dag_test.py [2020-07-08 15:50:26,253] {dagbag.py:363} DEBUG - Loaded DAG &lt;DAG: helloWorld&gt; Created &lt;DagRun helloWorld @ 2020-07-08 15:50:26+00:00: manual__2020-07-08T15:50:26+00:00, externally triggered: True&gt; [2020-07-08 15:50:26,289] {cli_action_loggers.py:86} DEBUG - Calling callbacks: [] [2020-07-08 15:50:26,289] {settings.py:278} DEBUG - Disposing DB connection pool (PID 717)"><pre class="notranslate"><code class="notranslate">airflow@airflow-webserver-78bc695cc7-l7z9s:~$ airflow list_tasks helloWorld [2020-07-08 15:37:24,309] {settings.py:212} DEBUG - Setting up DB connection pool (PID 275) [2020-07-08 15:37:24,310] {settings.py:253} DEBUG - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=1800, pid=275 [2020-07-08 15:37:24,366] {cli_action_loggers.py:42} DEBUG - Adding &lt;function default_action_log at 0x7fb9b5a4f710&gt; to pre execution callback [2020-07-08 15:37:24,817] {cli_action_loggers.py:68} DEBUG - Calling callbacks: [&lt;function default_action_log at 0x7fb9b5a4f710&gt;] [2020-07-08 15:37:24,847] {__init__.py:51} INFO - Using executor SequentialExecutor [2020-07-08 15:37:24,848] {dagbag.py:396} INFO - Filling up the DagBag from /usr/local/airflow/dags/repo [2020-07-08 15:37:24,849] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dag_test.py [2020-07-08 15:37:25,081] {dagbag.py:363} DEBUG - Loaded DAG &lt;DAG: helloWorld&gt; [2020-07-08 15:37:25,082] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dagbg_add.py task_1 [2020-07-08 15:37:25,083] {cli_action_loggers.py:86} DEBUG - Calling callbacks: [] [2020-07-08 15:37:25,083] {settings.py:278} DEBUG - Disposing DB connection pool (PID 275) airflow@airflow-webserver-78bc695cc7-l7z9s:~$ airflow trigger_dag helloWorld [2020-07-08 15:50:25,446] {settings.py:212} DEBUG - Setting up DB connection pool (PID 717) [2020-07-08 15:50:25,446] {settings.py:253} DEBUG - settings.configure_orm(): Using pool settings. pool_size=5, max_overflow=10, pool_recycle=1800, pid=717 [2020-07-08 15:50:25,502] {cli_action_loggers.py:42} DEBUG - Adding &lt;function default_action_log at 0x7fe05c254710&gt; to pre execution callback [2020-07-08 15:50:25,986] {cli_action_loggers.py:68} DEBUG - Calling callbacks: [&lt;function default_action_log at 0x7fe05c254710&gt;] [2020-07-08 15:50:26,024] {__init__.py:51} INFO - Using executor SequentialExecutor [2020-07-08 15:50:26,024] {dagbag.py:396} INFO - Filling up the DagBag from /usr/local/airflow/dags/repo/airflow_dags/dag_test.py [2020-07-08 15:50:26,024] {dagbag.py:225} DEBUG - Importing /usr/local/airflow/dags/repo/airflow_dags/dag_test.py [2020-07-08 15:50:26,253] {dagbag.py:363} DEBUG - Loaded DAG &lt;DAG: helloWorld&gt; Created &lt;DagRun helloWorld @ 2020-07-08 15:50:26+00:00: manual__2020-07-08T15:50:26+00:00, externally triggered: True&gt; [2020-07-08 15:50:26,289] {cli_action_loggers.py:86} DEBUG - Calling callbacks: [] [2020-07-08 15:50:26,289] {settings.py:278} DEBUG - Disposing DB connection pool (PID 717) </code></pre></div> <p dir="auto"><em>To summarise</em>: Airflow DAGs which has local imports become broken in UI and in webserver logs, but is executable from a manual trigger when using EKS cluster with Calico network policies.</p> <p dir="auto">Please help me to understand why Airflow DAGs imports become broken in UI.</p> <p dir="auto"><strong>Apache Airflow version</strong>: 1.10.10<br> <strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Server Version: version.Info{Major:&quot;1&quot;, Minor:&quot;15+&quot;, GitVersion:&quot;v1.15.11-eks-af3caf&quot;, GitCommit:&quot;af3caf6136cd355f467083651cc1010a499f59b1&quot;, GitTreeState:&quot;clean&quot;, BuildDate:&quot;2020-03-27T21:51:36Z&quot;, GoVersion:&quot;go1.12.17&quot;, Compiler:&quot;gc&quot;, Platform:&quot;linux/amd64&quot;}"><pre class="notranslate"><code class="notranslate">Server Version: version.Info{Major:"1", Minor:"15+", GitVersion:"v1.15.11-eks-af3caf", GitCommit:"af3caf6136cd355f467083651cc1010a499f59b1", GitTreeState:"clean", BuildDate:"2020-03-27T21:51:36Z", GoVersion:"go1.12.17", Compiler:"gc", Platform:"linux/amd64"} </code></pre></div> <p dir="auto"><strong>Environment</strong>:</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: AWS, EKS</li> <li><strong>OS</strong> (e.g. from /etc/os-release):<br> EKS workers nodes, EC2 instances:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="NAME=&quot;Amazon Linux&quot; VERSION=&quot;2&quot; ID=&quot;amzn&quot; ID_LIKE=&quot;centos rhel fedora&quot; VERSION_ID=&quot;2&quot; PRETTY_NAME=&quot;Amazon Linux 2&quot; ANSI_COLOR=&quot;0;33&quot; CPE_NAME=&quot;cpe:2.3:o:amazon:amazon_linux:2&quot; HOME_URL=&quot;https://amazonlinux.com/&quot;"><pre class="notranslate"><code class="notranslate">NAME="Amazon Linux" VERSION="2" ID="amzn" ID_LIKE="centos rhel fedora" VERSION_ID="2" PRETTY_NAME="Amazon Linux 2" ANSI_COLOR="0;33" CPE_NAME="cpe:2.3:o:amazon:amazon_linux:2" HOME_URL="https://amazonlinux.com/" </code></pre></div> <p dir="auto">Docker image with installed Airflow:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PRETTY_NAME=&quot;Debian GNU/Linux 10 (buster)&quot; NAME=&quot;Debian GNU/Linux&quot; VERSION_ID=&quot;10&quot; VERSION=&quot;10 (buster)&quot; VERSION_CODENAME=buster ID=debian HOME_URL=&quot;https://www.debian.org/&quot; SUPPORT_URL=&quot;https://www.debian.org/support&quot; BUG_REPORT_URL=&quot;https://bugs.debian.org/&quot;"><pre class="notranslate"><code class="notranslate">PRETTY_NAME="Debian GNU/Linux 10 (buster)" NAME="Debian GNU/Linux" VERSION_ID="10" VERSION="10 (buster)" VERSION_CODENAME=buster ID=debian HOME_URL="https://www.debian.org/" SUPPORT_URL="https://www.debian.org/support" BUG_REPORT_URL="https://bugs.debian.org/" </code></pre></div> <ul dir="auto"> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Linux airflow-webserver-78bc695cc7-dmzh2 4.14.181-140.257.amzn2.x86_64 #1 SMP Wed May 27 02:17:36 UTC 2020 x86_64 GNU/Linux"><pre class="notranslate"><code class="notranslate">Linux airflow-webserver-78bc695cc7-dmzh2 4.14.181-140.257.amzn2.x86_64 #1 SMP Wed May 27 02:17:36 UTC 2020 x86_64 GNU/Linux </code></pre></div> <ul dir="auto"> <li><strong>Install tools</strong>: we use <code class="notranslate">pipenv</code> to install Airflow to system <code class="notranslate">pipenv install --system --deploy --clear</code></li> <li><strong>Others</strong>:</li> </ul> <p dir="auto"><strong>How to reproduce it</strong>:<br> Create EKS cluster and deploy Calico. Use DAG with local imports.</p> <p dir="auto"><strong>Anything else we need to know</strong>:<br> I have all required env, such as <code class="notranslate">AIRFLOW_HOME=/usr/local/airflow, AIRFLOW_DAGS_FOLDER=/usr/local/airflow/dags/repo, PYTHONPATH=/usr/local/airflow/dags/repo</code> and on EKS cluster without network policies all works fine.</p>
0
<h3 dir="auto">What problem does this feature solve?</h3> <p dir="auto">通过过滤掉xss攻击代码来解决v-html容易导致的xss攻击</p> <h3 dir="auto">What does the proposed API look like?</h3> <p dir="auto">v-html.xss</p>
<h3 dir="auto">What problem does this feature solve?</h3> <p dir="auto">I'm currently working on making a <a href="https://github.com/krestaino/nuepress">blog</a> using the WordPress REST API as the back end. The API returns the article with HTML markup in it. I'm taking that <a href="https://wp.kmr.io/wp-json/wp/v2/posts/1178" rel="nofollow">JSON response</a> and using <code class="notranslate">v-html</code> to render it into my Vue app. I understand there are cross-site scripting security risks here.</p> <h3 dir="auto">What does the proposed API look like?</h3> <p dir="auto">It would be great if <code class="notranslate">v-html</code> automatically sanitized the string to remove any <code class="notranslate">&lt;script&gt;</code> tags. For those needing script tags, for whatever reason, maybe <code class="notranslate">v-html-unsafe</code> can accomplish that.</p> <p dir="auto">I was recently made aware Angular 4 is doing this and think Vue.js would greatly benefit from this feature.</p> <p dir="auto"><a href="https://angular.io/guide/security#!#xss" rel="nofollow">https://angular.io/guide/security#!#xss</a></p>
1
<p dir="auto"><strong>Symfony version(s) affected</strong>: 4.2.5</p> <p dir="auto"><strong>Description</strong><br> If some listeners are removed from <code class="notranslate">ContainerAwareEventManager</code> before being initialized they can not be added back if any event was dispatched in the meantime. This happens because <a href="https://github.com/symfony/symfony/blob/2243bf5bc11e3908f975f92551bd869a61211999/src/Symfony/Bridge/Doctrine/ContainerAwareEventManager.php#L63"><code class="notranslate">dispatchEvent</code> marks specific groups of events as initialized</a> BUT <code class="notranslate">addEventListener</code> checks <a href="https://github.com/symfony/symfony/blob/2243bf5bc11e3908f975f92551bd869a61211999/src/Symfony/Bridge/Doctrine/ContainerAwareEventManager.php#L102">whether anything was intialized</a></p> <p dir="auto"><strong>Possible Solution</strong><br> Maybe if a listeners is a string the container should be always checked whether it has a service defined under that name? That should allow adding lazy loaded listeners after construction. Other option might be to initialize listeners in <code class="notranslate">getListeners</code> but I don't know how it is used internally by Symfony.</p> <p dir="auto"><strong>Additional context</strong><br> In our app we're disabling and re-enabling Doctrine events mostly to disable FosElastica events for batch operations. This is no longer possible.</p>
<p dir="auto">in src/Symfony/Bundle/FrameworkBundle/Console/Application.php</p> <p dir="auto">use Symfony\Component\HttpKernel\Bundle\Bundle; instead of Symfony\Component\HttpKernel\Bundle;</p>
0
<p dir="auto">There should be a larger tutorial that not only shows how to use Flask but also some extensions (maybe Flask-Script, Flask-SQLAlchemy and Flask-WTF) and modules (or what we will call them then)</p> <p dir="auto">Related feedback issues:</p> <ul dir="auto"> <li><a href="http://feedback.flask.pocoo.org/message/115" rel="nofollow">http://feedback.flask.pocoo.org/message/115</a></li> </ul>
<p dir="auto">It would be nice to see an example application for 0.5 that is based on Flask plus a few Flask extensions that represents a semi-realworld example of how to do applications.</p> <p dir="auto">Example proposals:</p> <h2 dir="auto">A Wiki</h2> <ul dir="auto"> <li>showcase how config management works</li> <li>how to unittest more complex apps</li> <li>maybe even use modules</li> <li>Flask-Fungiform for the form handling</li> <li>Flask-SQLAlchemy for database</li> <li>flask-mail for sending mail notifications</li> <li>Flask-OpenID for user authentication</li> <li>Flask-Babel for i18n</li> <li>jQuery for client side JavaScript</li> <li>a creoleparser for the wiki Syntax</li> </ul> <p dir="auto">Thanks to all the extensions that application could still be reasonable small (~1000 lines of code I guess without the templates)</p>
1
<p dir="auto">Hi,</p> <p dir="auto">When pressing the flag + ~, it does not launch the fancy zone in edit mode. It doesn't do anything.</p> <p dir="auto">Thanks.</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.295 PowerToys version: 0.11.0 PowerToy module for which you are reporting the bug (if applicable): FancyZones"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.295 PowerToys version: 0.11.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">My main language is Dutch with US (International) keyboard layout and as second language English (United States) with US keyboard. With none of the language setting Win + ~ is working.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">When using US (International) keyboard ~ is a dead key so I think that would not work. But with US keyboard it should work.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4982940/64375040-5500e480-d025-11e9-94bd-b85e5174c0f3.png"><img src="https://user-images.githubusercontent.com/4982940/64375040-5500e480-d025-11e9-94bd-b85e5174c0f3.png" alt="Language selector" style="max-width: 100%;"></a></p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">FancyZone editor is not launched.</p>
1
<ul dir="auto"> <li>VSCode Version: 1.1.0</li> <li>OS Version: Windows 8.1 Pro</li> </ul> <p dir="auto">Steps to Reproduce:</p> <ol dir="auto"> <li>Download React.js v15.0.2 (<a href="https://fb.me/react-15.0.2.js" rel="nofollow">https://fb.me/react-15.0.2.js</a>).</li> <li>Open the file in Visual Studio Code.</li> <li>Problem with JavaScript syntax highlighting. It is fine in Sublime Text 3 or VS Studio 2015.</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1941826/15249377/e23e0c82-1927-11e6-9f5b-2c7b61cbf5bf.png"><img src="https://cloud.githubusercontent.com/assets/1941826/15249377/e23e0c82-1927-11e6-9f5b-2c7b61cbf5bf.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Ported from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="94376232" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/285/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285">microsoft/TypeScript-Sublime-Plugin#285</a></p> <p dir="auto">Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="91870539" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/265/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265">microsoft/TypeScript-Sublime-Plugin#265</a>.</p> <p dir="auto">Issue:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Correct:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">I have install numpy and then had to uninstall and install again and still doesn't work.<br> I installed python3.7 by using some console commands ages ago<br> I use Raspbian(Raspberry pi)<br> I have multiple versions of python<br> <code class="notranslate">pi@raspberrypi:~ $ sudo python3.7 -m pip uninstall numpy Uninstalling numpy-1.17.2: Would remove: /usr/local/bin/f2py /usr/local/bin/f2py3 /usr/local/bin/f2py3.7 /usr/local/lib/python3.7/site-packages/numpy-1.17.2.dist-info/* /usr/local/lib/python3.7/site-packages/numpy/* Proceed (y/n)? y Successfully uninstalled numpy-1.17.2 pi@raspberrypi:~ $ sudo python3.7 -m pip install numpy Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Collecting numpy Using cached https://www.piwheels.org/simple/numpy/numpy-1.17.2-cp37-cp37m-linux_armv7l.whl Installing collected packages: numpy Successfully installed numpy-1.17.2 pi@raspberrypi:~ $ </code></p> <p dir="auto">Python error<br> <code class="notranslate">Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory</code></p>
<p dir="auto">When i try to run a python script that uses numpy, i receive the following error:<br> ImportError: Unable to import required dependencies.<br> ...<br> Original error was: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.27' not found (required by /usr/local/lib/python3.7/site-packages/numpy/core/_multiarray_umath.cpython-37m-arm-linux-gnueabihf.so)"</p> <h3 dir="auto">Reproducing code example:</h3> <p dir="auto">Can be reproduced simply with this:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span></pre></div> <h3 dir="auto">Error message:</h3> <p dir="auto">_Traceback (most recent call last):<br> File "&lt;pyshell#0&gt;", line 1, in <br> import numpy<br> File "/usr/local/lib/python3.7/site-packages/numpy/<strong>init</strong>.py", line 142, in <br> from . import core<br> File "/usr/local/lib/python3.7/site-packages/numpy/core/<strong>init</strong>.py", line 47, in <br> raise ImportError(msg)<br> ImportError:</p> <p dir="auto">IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!</p> <p dir="auto">Importing the numpy c-extensions failed.</p> <ul dir="auto"> <li> <p dir="auto">Try uninstalling and reinstalling numpy.</p> </li> <li> <p dir="auto">If you have already done that, then:</p> <ol dir="auto"> <li>Check that you expected to use Python3.7 from "/usr/local/bin/python3.7",<br> and that you have no directories in your PATH or PYTHONPATH that can<br> interfere with the Python and numpy version "1.17.2" you're trying to use.</li> <li>If (1) looks fine, you can open a new issue at<br> <a href="https://github.com/numpy/numpy/issues">https://github.com/numpy/numpy/issues</a>. Please include details on: <ul dir="auto"> <li>how you installed Python</li> <li>how you installed numpy</li> <li>your operating system</li> <li>whether or not you have multiple versions of Python installed</li> <li>if you built from source, your compiler versions and ideally a build log</li> </ul> </li> </ol> </li> <li> <p dir="auto">If you're working with a numpy git repository, try <code class="notranslate">git clean -xdf</code><br> (removes all files not under version control) and rebuild numpy.</p> </li> </ul> <p dir="auto">Note: this error has many possible causes, so please don't comment on<br> an existing issue about this - open a new one instead.</p> <p dir="auto">Original error was: /lib/arm-linux-gnueabihf/libm.so.6: version `GLIBC_2.27' not found (required by /usr/local/lib/python3.7/site-packages/numpy/core/<em>multiarray_umath.cpython-37m-arm-linux-gnueabihf.so)</em></p> <h3 dir="auto">Numpy/Python version information:</h3> <p dir="auto">Unable to run the recommended command, but here is what I know about the version info:<br> Python is 3.7 (if I import numpy on 3.5 or 2.7 it works)<br> numpy is 1.17.2</p> <h3 dir="auto">Additional Info</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" - how you installed Python: I'm sorry I don't remember how or know how to find out. - how you installed numpy: tried several ways, the most recent being `sudo pip3.7 install numpy` - your operating system: Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l GNU/Linux - whether or not you have multiple versions of Python installed: 2.7, 3.5, 3.7 Possibly others, I'm not sure how to tell. - if you built from source, your compiler versions and ideally a build log: Not sure where to grab this."><pre class="notranslate"><code class="notranslate"> - how you installed Python: I'm sorry I don't remember how or know how to find out. - how you installed numpy: tried several ways, the most recent being `sudo pip3.7 install numpy` - your operating system: Linux raspberrypi 4.19.66-v7+ #1253 SMP Thu Aug 15 11:49:46 BST 2019 armv7l GNU/Linux - whether or not you have multiple versions of Python installed: 2.7, 3.5, 3.7 Possibly others, I'm not sure how to tell. - if you built from source, your compiler versions and ideally a build log: Not sure where to grab this. </code></pre></div> <p dir="auto">I should note that I first received this error and got "libf77blas.so.3...no such file" for the "Original error" section. I made it past that by installing some dependencies from here: <a href="https://stackoverflow.com/questions/53347759/importerror-libcblas-so-3-cannot-open-shared-object-file-no-such-file-or-dire" rel="nofollow">https://stackoverflow.com/questions/53347759/importerror-libcblas-so-3-cannot-open-shared-object-file-no-such-file-or-dire</a></p> <p dir="auto">I apologize for the lack of details. I'm new to Linux and relatively new to Python, but I'll happily gather anything else that's needed if you can point me in the right direction.</p>
1
<p dir="auto">newbie to ES.<br> This does not return any docs:</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &quot;query&quot;: { &quot;filtered&quot;: { &quot;query&quot;: { &quot;match_all&quot;: {} }, &quot;filter&quot;: { &quot;range&quot;: { &quot;screened&quot;: { &quot;from&quot;: &quot;now-3d&quot;, &quot;to&quot;: &quot;now+3d&quot; } } } } }"><pre class="notranslate"> <span class="pl-ent">"query"</span>: { <span class="pl-ent">"filtered"</span>: { <span class="pl-ent">"query"</span>: { <span class="pl-ent">"match_all"</span>: {} }, <span class="pl-ent">"filter"</span>: { <span class="pl-ent">"range"</span>: { <span class="pl-ent">"screened"</span>: { <span class="pl-ent">"from"</span>: <span class="pl-s"><span class="pl-pds">"</span>now-3d<span class="pl-pds">"</span></span>, <span class="pl-ent">"to"</span>: <span class="pl-s"><span class="pl-pds">"</span>now+3d<span class="pl-pds">"</span></span> } } } } }</pre></div> <p dir="auto">This does:</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &quot;query&quot;: { &quot;match_all&quot;: {} }, &quot;filter&quot;: { &quot;range&quot;: { &quot;screened&quot;: { &quot;from&quot;: &quot;now-3d&quot;, &quot;to&quot;: &quot;now+3d&quot; } } }"><pre class="notranslate"> <span class="pl-ent">"query"</span>: { <span class="pl-ent">"match_all"</span>: {} }, <span class="pl-ent">"filter"</span>: { <span class="pl-ent">"range"</span>: { <span class="pl-ent">"screened"</span>: { <span class="pl-ent">"from"</span>: <span class="pl-s"><span class="pl-pds">"</span>now-3d<span class="pl-pds">"</span></span>, <span class="pl-ent">"to"</span>: <span class="pl-s"><span class="pl-pds">"</span>now+3d<span class="pl-pds">"</span></span> } } }</pre></div>
<p dir="auto">When using <code class="notranslate">"now"</code> in date math in the query string, the value for <code class="notranslate">now</code> is cached:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="curl -XPUT 'http://127.0.0.1:9200/test/?pretty=1' -d ' { &quot;mappings&quot; : { &quot;test&quot; : { &quot;properties&quot; : { &quot;date&quot; : { &quot;type&quot; : &quot;date&quot; } } } } } ' curl -XPOST 'http://127.0.0.1:9200/test/test?pretty=1' -d ' { &quot;date&quot; : &quot;2020-01-01&quot; } '"><pre class="notranslate"><code class="notranslate">curl -XPUT 'http://127.0.0.1:9200/test/?pretty=1' -d ' { "mappings" : { "test" : { "properties" : { "date" : { "type" : "date" } } } } } ' curl -XPOST 'http://127.0.0.1:9200/test/test?pretty=1' -d ' { "date" : "2020-01-01" } ' </code></pre></div> <p dir="auto">Run this query multiple times:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="curl -XGET 'http://127.0.0.1:9200/test/test/_search?pretty=1' -d ' { &quot;query&quot; : { &quot;query_string&quot; : { &quot;query&quot; : &quot;date:[now TO *]&quot; } }, &quot;explain&quot; : 1 } '"><pre class="notranslate"><code class="notranslate">curl -XGET 'http://127.0.0.1:9200/test/test/_search?pretty=1' -d ' { "query" : { "query_string" : { "query" : "date:[now TO *]" } }, "explain" : 1 } ' </code></pre></div> <p dir="auto">You will see that the description line <code class="notranslate">"ConstantScore(date:[1363953493782 TO *])"</code> reuses the same start date</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# { # &quot;hits&quot; : { # &quot;hits&quot; : [ # { # &quot;_source&quot; : { # &quot;date&quot; : &quot;2020-01-01&quot; # }, # &quot;_score&quot; : 1, # &quot;_index&quot; : &quot;test&quot;, # &quot;_shard&quot; : 4, # &quot;_id&quot; : &quot;iOPrtwzdQFGixdfwaAAlcQ&quot;, # &quot;_node&quot; : &quot;gx3hk4y7S0Khhx8IQ4uYQQ&quot;, # &quot;_type&quot; : &quot;test&quot;, # &quot;_explanation&quot; : { # &quot;value&quot; : 1, # &quot;details&quot; : [ # { # &quot;value&quot; : 1, # &quot;description&quot; : &quot;boost&quot; # }, # { # &quot;value&quot; : 1, # &quot;description&quot; : &quot;queryNorm&quot; # } # ], # &quot;description&quot; : &quot;ConstantScore(date:[1363953493782 TO *]), product of:&quot; # } # } # ], # &quot;max_score&quot; : 1, # &quot;total&quot; : 1 # }, # &quot;timed_out&quot; : false, # &quot;_shards&quot; : { # &quot;failed&quot; : 0, # &quot;successful&quot; : 5, # &quot;total&quot; : 5 # }, # &quot;took&quot; : 5 # }"><pre class="notranslate"><code class="notranslate"># { # "hits" : { # "hits" : [ # { # "_source" : { # "date" : "2020-01-01" # }, # "_score" : 1, # "_index" : "test", # "_shard" : 4, # "_id" : "iOPrtwzdQFGixdfwaAAlcQ", # "_node" : "gx3hk4y7S0Khhx8IQ4uYQQ", # "_type" : "test", # "_explanation" : { # "value" : 1, # "details" : [ # { # "value" : 1, # "description" : "boost" # }, # { # "value" : 1, # "description" : "queryNorm" # } # ], # "description" : "ConstantScore(date:[1363953493782 TO *]), product of:" # } # } # ], # "max_score" : 1, # "total" : 1 # }, # "timed_out" : false, # "_shards" : { # "failed" : 0, # "successful" : 5, # "total" : 5 # }, # "took" : 5 # } </code></pre></div> <p dir="auto">A <code class="notranslate">range</code> query on the other hand, updates the start date on each run:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="curl -XGET 'http://127.0.0.1:9200/test/test/_search?pretty=1' -d ' { &quot;query&quot; : { &quot;range&quot; : { &quot;date&quot; : { &quot;gt&quot; : &quot;now&quot; } } }, &quot;explain&quot; : 1 } '"><pre class="notranslate"><code class="notranslate">curl -XGET 'http://127.0.0.1:9200/test/test/_search?pretty=1' -d ' { "query" : { "range" : { "date" : { "gt" : "now" } } }, "explain" : 1 } ' </code></pre></div>
1
<p dir="auto">.desktop file created after compiling from source has wrong binary location ( .../share/atom/atom) instead of the .../bin/atom file.<br> Besides there is no icon file in the installation share folder, so the .desktop file points at the wrong icon destination (because none is valid).</p>
<p dir="auto">When installing from source by following <a href="https://github.com/atom/atom/blob/master/docs/build-instructions/linux.md">this guide</a> the following <code class="notranslate">.desktop</code> entry is created in <code class="notranslate">/usr/local/share/applications/atom.desktop</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[Desktop Entry] Name=Atom Comment=A hackable text editor for the 21st Century. GenericName=Text Editor Exec=/usr/local/share/atom/atom %U Icon=/usr/local/share/atom/resources/app/resources/atom.png Type=Application StartupNotify=true Categories=GNOME;GTK;Utility;TextEditor;Development; MimeType=text/plain;"><pre class="notranslate"><code class="notranslate">[Desktop Entry] Name=Atom Comment=A hackable text editor for the 21st Century. GenericName=Text Editor Exec=/usr/local/share/atom/atom %U Icon=/usr/local/share/atom/resources/app/resources/atom.png Type=Application StartupNotify=true Categories=GNOME;GTK;Utility;TextEditor;Development; MimeType=text/plain; </code></pre></div> <p dir="auto">However, <code class="notranslate">/usr/local/share/atom/resources/app/resources/atom.png</code> does not exist.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ls /usr/local/share/atom/resources/app/ apm atom.sh"><pre class="notranslate"><code class="notranslate">$ ls /usr/local/share/atom/resources/app/ apm atom.sh </code></pre></div> <p dir="auto">I solved it by simply copying the atom icon in <code class="notranslate">atom/resources/atom.png</code> over to the expected path.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cd atom sudo cp --parents resources/atom.png /usr/local/share/atom/resources/app/"><pre class="notranslate"><code class="notranslate">cd atom sudo cp --parents resources/atom.png /usr/local/share/atom/resources/app/ </code></pre></div> <p dir="auto">I didn't find this bug last week when installing release 0.192.0. Maybe this was introduced on 0.193.0 because of the <code class="notranslate">asar</code> archive file.</p>
1
<h3 dir="auto">Documentation linking to existing examples?</h3> <p dir="auto">I'm slowly working on some of the documentation and I'm trying to figure out how to add some examples here and there in the docs. I'd like to not duplicate work that's already been done. I believe I will link to examples using relative links where they are pertinent in the API. I don't believe I've seen that done yet. It might be nice to also link to handy external examples.</p> <h3 dir="auto">Embedded live examples</h3> <p dir="auto">I'm not sure I'm going to go this next route, but I was wondering if inline examples would be completely out of the question. Specifically some tweakable examples with the various mesh materials I believe would be quite helpful.</p> <h3 dir="auto">/src code vs /examples code</h3> <p dir="auto">My next question is regarding the examples code base vs. the src code base. What's the reasoning behind the split between some of the code? A lot of the code in examples is quite handy and I feel like it should be documented. There's no structure in place for that as of yet.</p>
<p dir="auto">There are a few things which geometry.clone() doesn't copy a reference to, which it should.</p> <p dir="auto">.bones<br> .skinWeights<br> .skinIndices<br> .animations<br> .animation</p> <p dir="auto">are all left without references to the original, which leads to skinning being broken unless the references to those are manually copied. I think references should be passed as it's less confusing, but I don't think they should be deep copies, or this would lead to mostly wasted memory.</p>
0
<ul dir="auto"> <li>What version of Go are you using (go version)?<br> <code class="notranslate">go version go1.4.2 darwin/amd64</code><br> MacOSX-10.6.8</li> <li>What did you do?</li> </ul> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ cd $GOPATH/src/github.com/sbinet $ git clone git://github.com/sbinet/test-cgo $ cd test-cgo $ make /bin/rm -f pkg/my/*.so (cd pkg/my &amp;&amp; cc -shared -o libmy.so lib.c) # github.com/sbinet/test-cgo/pcgo github.com/sbinet/test-cgo/pkg._Cvar_Global: unsupported relocation for dynamic symbol Global (type=1 stype=32) github.com/sbinet/test-cgo/pkg._Cvar_Global: unhandled relocation for Global (type 32 rtype 1) make: *** [install] Error 2"><pre class="notranslate">$ <span class="pl-c1">cd</span> <span class="pl-smi">$GOPATH</span>/src/github.com/sbinet $ git clone git://github.com/sbinet/test-cgo $ <span class="pl-c1">cd</span> test-cgo $ make /bin/rm -f pkg/my/<span class="pl-k">*</span>.so (cd pkg/my <span class="pl-k">&amp;&amp;</span> cc -shared -o libmy.so lib.c) <span class="pl-c"><span class="pl-c">#</span> github.com/sbinet/test-cgo/pcgo</span> github.com/sbinet/test-cgo/pkg._Cvar_Global: unsupported relocation <span class="pl-k">for</span> dynamic symbol Global (type=1 stype=32) github.com/sbinet/test-cgo/pkg._Cvar_Global: unhandled relocation <span class="pl-k">for</span> Global (type 32 rtype 1) make: <span class="pl-k">***</span> [install] Error 2</pre></div> <p dir="auto">note that if, in <code class="notranslate">test-cgo/pkg/my/lib.h</code> I change:</p> <div class="highlight highlight-source-c notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#define API_DATA(RTYPE) extern RTYPE //#define API_DATA(RTYPE) RTYPE"><pre class="notranslate"><span class="pl-k">#define</span> <span class="pl-en">API_DATA</span>(<span class="pl-c1">RTYPE</span>) extern RTYPE <span class="pl-c">//#define API_DATA(RTYPE) RTYPE</span></pre></div> <p dir="auto">to:</p> <div class="highlight highlight-source-c notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//#define API_DATA(RTYPE) extern RTYPE #define API_DATA(RTYPE) RTYPE"><pre class="notranslate"><span class="pl-c">//#define API_DATA(RTYPE) extern RTYPE</span> <span class="pl-k">#define</span> <span class="pl-en">API_DATA</span>(<span class="pl-c1">RTYPE</span>) RTYPE</pre></div> <p dir="auto">everything compiles and runs:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ make &amp;&amp; (cd ./pkg/my &amp;&amp; pcgo) /bin/rm -f pkg/my/*.so (cd pkg/my &amp;&amp; cc -shared -o libmy.so lib.c) &gt;&gt;&gt; Global: 42 Global: 42 &lt;&lt;&lt;"><pre class="notranslate">$ make <span class="pl-k">&amp;&amp;</span> (cd ./pkg/my <span class="pl-k">&amp;&amp;</span> pcgo) /bin/rm -f pkg/my/<span class="pl-k">*</span>.so (cd pkg/my <span class="pl-k">&amp;&amp;</span> cc -shared -o libmy.so lib.c) &gt;&gt;&gt; Global: 42 Global: 42 &lt;&lt;&lt;</pre></div> <p dir="auto">Note that on <code class="notranslate">master</code>, I get instead:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ go version devel +48469a2 Mon Feb 23 07:54:13 2015 +0000 darwin/amd64 $ make &amp;&amp; (cd ./pkg/my &amp;&amp; pcgo) &gt;&gt;&gt; Global: 42 fatal error: unexpected signal during runtime execution [signal 0xb code=0x1 addr=0xb01dfacedebac1e pc=0x1dbf23] runtime stack: runtime.throw(0x126e70, 0x2a) /Users/binet/dev/go/root/go/src/runtime/panic.go:511 +0xa0 runtime.sigpanic() /Users/binet/dev/go/root/go/src/runtime/sigpanic_unix.go:12 +0x62 goroutine 1 [syscall, locked to thread]: runtime.cgocall_errno(0xac120, 0xc208037ed0, 0xc200000000) /Users/binet/dev/go/root/go/src/runtime/cgocall.go:130 +0x10c fp=0xc208037eb0 sp=0xc208037e88 github.com/sbinet/test-cgo/pkg._Cfunc_Get(0x25ff0000077a25ff, 0x0) /Users/binet/dev/go/root/path/src/github.com/sbinet/test-cgo/pkg/:24 +0x3c fp=0xc208037ed0 sp=0xc208037eb0 github.com/sbinet/test-cgo/pkg.Print() /Users/binet/dev/go/root/path/src/github.com/sbinet/test-cgo/pkg/pkg.go:14 +0x10c fp=0xc208037f58 sp=0xc208037ed0 main.main() /Users/binet/dev/go/root/path/src/github.com/sbinet/test-cgo/pcgo/main.go:11 +0x4e fp=0xc208037fa0 sp=0xc208037f58 runtime.main() /Users/binet/dev/go/root/go/src/runtime/proc.go:88 +0x1d2 fp=0xc208037fe0 sp=0xc208037fa0 runtime.goexit() /Users/binet/dev/go/root/go/src/runtime/asm_amd64.s:2466 +0x1 fp=0xc208037fe8 sp=0xc208037fe0 goroutine 17 [syscall, locked to thread]: runtime.goexit() /Users/binet/dev/go/root/go/src/runtime/asm_amd64.s:2466 +0x1 zsh: exit 2 (; cd pkg/my &amp;&amp; pcgo; )"><pre class="notranslate">$ go version devel +48469a2 Mon Feb 23 07:54:13 2015 +0000 darwin/amd64 $ make <span class="pl-k">&amp;&amp;</span> (cd ./pkg/my <span class="pl-k">&amp;&amp;</span> pcgo) &gt;&gt;&gt; Global: 42 fatal error: unexpected signal during runtime execution [signal 0xb code<span class="pl-k">=</span>0x1 addr<span class="pl-k">=</span>0xb01dfacedebac1e pc<span class="pl-k">=</span>0x1dbf23] runtime stack: runtime.throw(0x126e70, 0x2a) /Users/binet/dev/go/root/go/src/runtime/panic.go:511 +0xa0 <span class="pl-en">runtime.sigpanic</span>() /Users/binet/dev/go/root/go/src/runtime/sigpanic_unix.go:12 +0x62 goroutine 1 [syscall, locked to thread]: runtime.cgocall_errno(0xac120, 0xc208037ed0, 0xc200000000) /Users/binet/dev/go/root/go/src/runtime/cgocall.go:130 +0x10c fp=0xc208037eb0 sp=0xc208037e88 github.com/sbinet/test-cgo/pkg._Cfunc_Get(0x25ff0000077a25ff, 0x0) /Users/binet/dev/go/root/path/src/github.com/sbinet/test-cgo/pkg/:24 +0x3c fp=0xc208037ed0 sp=0xc208037eb0 <span class="pl-en">github.com/sbinet/test-cgo/pkg.Print</span>() /Users/binet/dev/go/root/path/src/github.com/sbinet/test-cgo/pkg/pkg.go:14 +0x10c fp=0xc208037f58 sp=0xc208037ed0 <span class="pl-en">main.main</span>() /Users/binet/dev/go/root/path/src/github.com/sbinet/test-cgo/pcgo/main.go:11 +0x4e fp=0xc208037fa0 sp=0xc208037f58 <span class="pl-en">runtime.main</span>() /Users/binet/dev/go/root/go/src/runtime/proc.go:88 +0x1d2 fp=0xc208037fe0 sp=0xc208037fa0 <span class="pl-en">runtime.goexit</span>() /Users/binet/dev/go/root/go/src/runtime/asm_amd64.s:2466 +0x1 fp=0xc208037fe8 sp=0xc208037fe0 goroutine 17 [syscall, locked to thread]: <span class="pl-en">runtime.goexit</span>() /Users/binet/dev/go/root/go/src/runtime/asm_amd64.s:2466 +0x1 zsh: <span class="pl-c1">exit</span> 2 (<span class="pl-k">;</span> <span class="pl-c1">cd</span> pkg/my <span class="pl-k">&amp;&amp;</span> pcgo<span class="pl-k">;</span> )</pre></div> <p dir="auto">Such <code class="notranslate">extern</code> global symbols are heavily used in <em>e.g.</em> the <code class="notranslate">CPython</code> API.</p> <p dir="auto">To recap: the <code class="notranslate">pkg</code> builds fine, it's when somebody uses that cgo-based package that all hell breaks loose.</p>
<pre class="notranslate">(This is somewhat related to <a href="https://golang.org/issue/5699" rel="nofollow">issue #5699</a> but I was told to file a new one; things got more interesting since.) $ cat a.go package main; import "fmt" // #cgo LDFLAGS: -framework Foundation -framework AppKit // extern void *cgoptr; import "C" func main() { fmt.Printf("pointer from cgo: %p\n", C.cgoptr) } $ cat a.m #include &lt;AppKit/NSKeyValueBinding.h&gt; void *cgoptr = &amp;NSObservedObjectKey; All of the following: $ CC=gcc CGO_ENABLED=1 GOARCH=amd64 go build -x $ CC=gcc CGO_ENABLED=1 GOARCH=386 go build -x $ CC=clang CGO_ENABLED=1 GOARCH=amd64 go build -x $ CC=clang CGO_ENABLED=1 GOARCH=386 go build -x will yield the following during the final link: main(__DATA/__data): unexpected reloc for dynamic symbol NSObservedObjectKey main(__DATA/__data): unhandled relocation for NSObservedObjectKey (type 32 rtype 1) This happens for any Objective-C anything. For larger projects, the link failures become more spectacular. Attached are the results of building <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/andlabs/ui/commit/93914ecb8cc7bf4bf6eb8199f96fc3a685fc44cf/hovercard" href="https://github.com/andlabs/ui/commit/93914ecb8cc7bf4bf6eb8199f96fc3a685fc44cf">andlabs/ui@<tt>93914ec</tt></a> (this specific commit) with a modified cmd/ld that does not terminate after 20 error messages (this should probably be an option like it is for the compilers but I'll leave that for another issue). I don't know why the 386 one has a different error from the rest; it should probably be a third issue... go version: go version devel +b10044024a6d Thu May 15 15:55:31 2014 +1000 darwin/amd64 gcc version: i686-apple-darwin10-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00) Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. clang version: Apple clang version 3.0 (tags/Apple/clang-211.10.1) (based on LLVM 3.0svn) Target: x86_64-apple-darwin10.8.0 Thread model: posix This is with Xcode 4.2 for Snow Leopard. Thanks.</pre> <p dir="auto">Attachments:</p> <ol dir="auto"> <li><a href="https://storage.googleapis.com/go-attachment/8009/0/newerr.386" rel="nofollow">newerr.386</a> (10200 bytes)</li> <li><a href="https://storage.googleapis.com/go-attachment/8009/0/newerr.amd64" rel="nofollow">newerr.amd64</a> (17599 bytes)</li> </ol>
1
<p dir="auto"><strong>Atom Version</strong>: 0.170.0<br> <strong>System</strong>: linux 3.16.0-4-amd64<br> <strong>Thrown From</strong>: Atom Core**</p> <p dir="auto">The bug seems pretty spontaneous, I did not use atom when the error occurred.<br> The message box <code class="notranslate">Create issue on atom/atom</code> appeared a lot of times.</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: connect ETIMEDOUT</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At stream.js:94 Error: connect ETIMEDOUT at exports._errnoException (util.js:746:11) at Object.afterConnect [as oncomplete] (net.js:990:19) "><pre class="notranslate"><code class="notranslate">At stream.js:94 Error: connect ETIMEDOUT at exports._errnoException (util.js:746:11) at Object.afterConnect [as oncomplete] (net.js:990:19) </code></pre></div> <p dir="auto">If I scroll a little bit on the list of message boxes, I see a second bug which also occurs many times:</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: socket hang up</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At events.js:85 Error: socket hang up at createHangUpError (_http_client.js:214:15) at TLSSocket.socketCloseListener (_http_client.js:246:23) at TLSSocket.emit (events.js:129:20) at TCP.close (net.js:469:12) "><pre class="notranslate"><code class="notranslate">At events.js:85 Error: socket hang up at createHangUpError (_http_client.js:214:15) at TLSSocket.socketCloseListener (_http_client.js:246:23) at TLSSocket.emit (events.js:129:20) at TCP.close (net.js:469:12) </code></pre></div> <p dir="auto">The commands preceding the two issues are the same:</p> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 3x -4:03.3 beautify:beautify-editor (atom-text-editor.editor) 2x -2:24.0 core:save (atom-text-editor.editor) -2:07.7 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:05.4 core:save (atom-text-editor.editor) -0:29.4 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) 2x -0:25.3 core:save (atom-text-editor.editor) -0:18.1 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -0:10.1 core:save (atom-text-editor.editor) 2x -0:00.0 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)"><pre class="notranslate"><code class="notranslate"> 3x -4:03.3 beautify:beautify-editor (atom-text-editor.editor) 2x -2:24.0 core:save (atom-text-editor.editor) -2:07.7 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:05.4 core:save (atom-text-editor.editor) -0:29.4 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) 2x -0:25.3 core:save (atom-text-editor.editor) -0:18.1 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -0:10.1 core:save (atom-text-editor.editor) 2x -0:00.0 beautify:beautify-editor (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;disabledPackages&quot;: [ &quot;autoclose-html&quot;, &quot;language-coffee-script&quot;, &quot;language-python-django-templates&quot;, &quot;autocomplete-plus&quot; ] }, &quot;editor&quot;: { &quot;fontSize&quot;: 13, &quot;showInvisibles&quot;: true, &quot;tabLength&quot;: 4, &quot;softWrap&quot;: true, &quot;invisibles&quot;: {} } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>autoclose-html<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-coffee-script<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>language-python-django-templates<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>autocomplete-plus<span class="pl-pds">"</span></span> ] }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"fontSize"</span>: <span class="pl-c1">13</span>, <span class="pl-ent">"showInvisibles"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"tabLength"</span>: <span class="pl-c1">4</span>, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"invisibles"</span>: {} } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User atom-beautify, v0.21.2 color-picker, v1.2.6 file-icons, v1.4.5 html-entities, v0.2.0 linter, v0.10.0 linter-bootlint, v0.0.3 linter-clang, v2.10.0 linter-clojure, v0.0.4 linter-codscriptizer, v0.2.0 linter-coffeelint, v0.1.7 linter-csslint, v0.0.11 linter-dartanalyzer, v0.3.1 linter-elixirc, v0.2.1 linter-erlc, v0.2.0 linter-flexpmd, v0.1.9 linter-harbour, v1.6.0 linter-hlint, v0.3.1 linter-htmlhint, v0.0.8 linter-javac, v0.1.3 linter-js-yaml, v0.1.3 linter-jshint, v0.1.0 linter-jsxhint, v0.1.0 linter-less, v0.3.1 linter-lsc, v1.1.0 linter-lua, v0.1.3 linter-php, v0.0.11 linter-puppet-lint, v0.2.3 linter-pyflakes, v0.0.4 linter-pylint, v0.2.0 linter-rubocop, v0.2.1 linter-rust, v0.0.3 linter-scalac, v0.3.3 linter-scss-lint, v0.0.11 linter-shellcheck, v0.0.6 linter-squirrel, v0.3.0 linter-xmllint, v0.0.5 minimap, v3.5.5 project-manager, v1.14.1 restore-windows, v0.3.2 tabs-to-spaces, v0.8.0 travis-ci-status, v0.11.1 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> atom<span class="pl-k">-</span>beautify, v0.<span class="pl-ii">21</span>.<span class="pl-ii">2</span> color<span class="pl-k">-</span>picker, v1.<span class="pl-ii">2</span>.<span class="pl-ii">6</span> file<span class="pl-k">-</span>icons, v1.<span class="pl-ii">4</span>.<span class="pl-ii">5</span> html<span class="pl-k">-</span>entities, v0.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> linter, v0.<span class="pl-ii">10</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>bootlint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>clang, v2.<span class="pl-ii">10</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>clojure, v0.<span class="pl-ii">0</span>.<span class="pl-ii">4</span> linter<span class="pl-k">-</span>codscriptizer, v0.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>coffeelint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">7</span> linter<span class="pl-k">-</span>csslint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">11</span> linter<span class="pl-k">-</span>dartanalyzer, v0.<span class="pl-ii">3</span>.<span class="pl-ii">1</span> linter<span class="pl-k">-</span>elixirc, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span> linter<span class="pl-k">-</span>erlc, v0.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>flexpmd, v0.<span class="pl-ii">1</span>.<span class="pl-ii">9</span> linter<span class="pl-k">-</span>harbour, v1.<span class="pl-ii">6</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>hlint, v0.<span class="pl-ii">3</span>.<span class="pl-ii">1</span> linter<span class="pl-k">-</span>htmlhint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">8</span> linter<span class="pl-k">-</span>javac, v0.<span class="pl-ii">1</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>js<span class="pl-k">-</span>yaml, v0.<span class="pl-ii">1</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>jshint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>jsxhint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>less, v0.<span class="pl-ii">3</span>.<span class="pl-ii">1</span> linter<span class="pl-k">-</span>lsc, v1.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>lua, v0.<span class="pl-ii">1</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>php, v0.<span class="pl-ii">0</span>.<span class="pl-ii">11</span> linter<span class="pl-k">-</span>puppet<span class="pl-k">-</span>lint, v0.<span class="pl-ii">2</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>pyflakes, v0.<span class="pl-ii">0</span>.<span class="pl-ii">4</span> linter<span class="pl-k">-</span>pylint, v0.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>rubocop, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span> linter<span class="pl-k">-</span>rust, v0.<span class="pl-ii">0</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>scalac, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span> linter<span class="pl-k">-</span>scss<span class="pl-k">-</span>lint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">11</span> linter<span class="pl-k">-</span>shellcheck, v0.<span class="pl-ii">0</span>.<span class="pl-ii">6</span> linter<span class="pl-k">-</span>squirrel, v0.<span class="pl-ii">3</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>xmllint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">5</span> minimap, v3.<span class="pl-ii">5</span>.<span class="pl-ii">5</span> project<span class="pl-k">-</span>manager, v1.<span class="pl-ii">14</span>.<span class="pl-ii">1</span> restore<span class="pl-k">-</span>windows, v0.<span class="pl-ii">3</span>.<span class="pl-ii">2</span> tabs<span class="pl-k">-</span>to<span class="pl-k">-</span>spaces, v0.<span class="pl-ii">8</span>.<span class="pl-ii">0</span> travis<span class="pl-k">-</span>ci<span class="pl-k">-</span>status, v0.<span class="pl-ii">11</span>.<span class="pl-ii">1</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
<p dir="auto">Steps to reproduce (on Ubuntu 14.04, 64-bit, I deleted all configuration files and did a full reinstall of Atom to confirm the issue):</p> <ol dir="auto"> <li>Open Atom v0.199.</li> <li>File -&gt; Open folder... -&gt; open e.g. your Linux user's home folder. The folder gets added to the tree view pane.</li> <li>Close Atom.</li> <li>Open Atom again. The previously opened folder shows up again in the tree view pane.</li> <li>Watch the CPU and RAM usage.</li> </ol> <p dir="auto">On my computer, the whole RAM gets used up after only a minute. Also, the whole first core of my CPU is used while Atom runs. This only happens when there is a folder present in the tree view pane and only after it is restored from memory/history after I restart Atom.</p> <p dir="auto">When I remove the folder from the tree view pane, the RAM usage drops and normalizes. Also, the CPU usage drops to 0.</p> <p dir="auto">UPDATE: The problem only happens if I open ~/.config folder</p>
0
<h3 dir="auto">What problem does this feature solve?</h3> <p dir="auto">A vue component of mine, when applied a certain model generates certain HTML/CSS. Is there any CLI for extracting the output HTML/CSS into seperate entities? Currently I duplicate the Vue file with my own node templating generation.</p> <h3 dir="auto">What does the proposed API look like?</h3> <p dir="auto">Some CLI that lets you pass in a model and a Vue component, which outputs the html/css file appropriate to the input model.</p>
<h3 dir="auto">Vue.js version</h3> <p dir="auto">2.0.0-rc.1</p> <h3 dir="auto">Reproduction Link</h3> <h3 dir="auto">Steps to reproduce</h3> <h3 dir="auto">What is Expected?</h3> <h3 dir="auto">What is actually happening?</h3>
0
<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="# Your code here import sqlite3 import pandas as pd cnx = sqlite3.connect('database.sqlite') df = pd.read_sql_query(&quot;SELECT * FROM Player_Attributes&quot;, cnx)"><pre class="notranslate"><span class="pl-c"># Your code here</span> <span class="pl-k">import</span> <span class="pl-s1">sqlite3</span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-s1">cnx</span> <span class="pl-c1">=</span> <span class="pl-s1">sqlite3</span>.<span class="pl-en">connect</span>(<span class="pl-s">'database.sqlite'</span>) <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_sql_query</span>(<span class="pl-s">"SELECT * FROM Player_Attributes"</span>, <span class="pl-s1">cnx</span>)</pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">pandas.io.sql.DatabaseError: Execution failed on sql 'SELECT * FROM Player_Attributes': no such table: Player_Attributes<br> [this should explain <strong>why</strong> the current behaviour is a problem and why the expected output is a better solution.]</p> <p dir="auto"><strong>Note</strong>: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!</p> <p dir="auto"><strong>Note</strong>: Many problems can be resolved by simply upgrading <code class="notranslate">pandas</code> to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if <code class="notranslate">master</code> addresses this issue, but that is not necessary.</p> <p dir="auto">For documentation-related issues, you can check the latest versions of the docs on <code class="notranslate">master</code> here:</p> <p dir="auto"><a href="https://pandas-docs.github.io/pandas-docs-travis/" rel="nofollow">https://pandas-docs.github.io/pandas-docs-travis/</a></p> <p dir="auto">If the issue has not been resolved there, go ahead and file it in the issue tracker.</p> <h4 dir="auto">Expected Output</h4> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> <p dir="auto">[paste the output of <code class="notranslate">pd.show_versions()</code> here below this line]</p> </details>
<h4 dir="auto">Code Sample</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd import numpy as np dates = pd.date_range('1/1/2000', periods=8) data1 = {'A': np.arange(8), 'B': np.random.randn(8) } df1 = pd.DataFrame(data1, index=dates) data2 = {'A': np.arange(8), 'C': np.random.randn(8) } df2 = pd.DataFrame(data2, index=dates) df = pd.concat([df1, df2], axis=1, ignore_index=False)"><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-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">dates</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'1/1/2000'</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">8</span>) <span class="pl-s1">data1</span> <span class="pl-c1">=</span> {<span class="pl-s">'A'</span>: <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">8</span>), <span class="pl-s">'B'</span>: <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randn</span>(<span class="pl-c1">8</span>) } <span class="pl-s1">df1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">data1</span>, <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates</span>) <span class="pl-s1">data2</span> <span class="pl-c1">=</span> {<span class="pl-s">'A'</span>: <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">8</span>), <span class="pl-s">'C'</span>: <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randn</span>(<span class="pl-c1">8</span>) } <span class="pl-s1">df2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">data2</span>, <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates</span>) <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">concat</span>([<span class="pl-s1">df1</span>, <span class="pl-s1">df2</span>], <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">ignore_index</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="print(df1) A B 2000-01-01 0 0.756225 2000-01-02 1 0.537196 2000-01-03 2 0.813128 2000-01-04 3 0.819868 2000-01-05 4 -0.653656 2000-01-06 5 1.246314 2000-01-07 6 -0.703276 2000-01-08 7 -0.743086"><pre class="notranslate"><code class="notranslate">print(df1) A B 2000-01-01 0 0.756225 2000-01-02 1 0.537196 2000-01-03 2 0.813128 2000-01-04 3 0.819868 2000-01-05 4 -0.653656 2000-01-06 5 1.246314 2000-01-07 6 -0.703276 2000-01-08 7 -0.743086 </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="print(df2) A C 2000-01-01 0 -1.584052 2000-01-02 1 -0.804060 2000-01-03 2 -1.350531 2000-01-04 3 -0.762914 2000-01-05 4 -0.589009 2000-01-06 5 0.395458 2000-01-07 6 -0.124446 2000-01-08 7 0.100183"><pre class="notranslate"><code class="notranslate">print(df2) A C 2000-01-01 0 -1.584052 2000-01-02 1 -0.804060 2000-01-03 2 -1.350531 2000-01-04 3 -0.762914 2000-01-05 4 -0.589009 2000-01-06 5 0.395458 2000-01-07 6 -0.124446 2000-01-08 7 0.100183 </code></pre></div> <p dir="auto">df1 and df2 both contain column A (which is not an index column), so the unique column names are:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="print(df.columns.unique()) ['A' 'B' 'C']"><pre class="notranslate"><code class="notranslate">print(df.columns.unique()) ['A' 'B' 'C'] </code></pre></div> <p dir="auto">When applying the below selection (assuming that columns with the same name contain the same values - which I know is true in this use case however may not always be true), the duplicate columns are kept.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="print(df[df.columns.unique()]) A A B C 2000-01-01 0 0 0.086386 -2.558181 2000-01-02 1 1 0.217020 -0.964484 2000-01-03 2 2 -0.426538 -0.579129 2000-01-04 3 3 0.620989 -1.908091 2000-01-05 4 4 -1.463473 -0.345109 2000-01-06 5 5 -0.460185 0.670077 2000-01-07 6 6 -1.353535 0.226513 2000-01-08 7 7 0.329263 2.274627"><pre class="notranslate"><code class="notranslate">print(df[df.columns.unique()]) A A B C 2000-01-01 0 0 0.086386 -2.558181 2000-01-02 1 1 0.217020 -0.964484 2000-01-03 2 2 -0.426538 -0.579129 2000-01-04 3 3 0.620989 -1.908091 2000-01-05 4 4 -1.463473 -0.345109 2000-01-06 5 5 -0.460185 0.670077 2000-01-07 6 6 -1.353535 0.226513 2000-01-08 7 7 0.329263 2.274627 </code></pre></div> <h4 dir="auto">Expected Output</h4> <p dir="auto">A drop_duplicates for columns where for example the first duplicate column name is kept.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="print(df.T.drop_duplicates().T) A B C 2000-01-01 0.0 0.086386 -2.558181 2000-01-02 1.0 0.217020 -0.964484 2000-01-03 2.0 -0.426538 -0.579129 2000-01-04 3.0 0.620989 -1.908091 2000-01-05 4.0 -1.463473 -0.345109 2000-01-06 5.0 -0.460185 0.670077 2000-01-07 6.0 -1.353535 0.226513 2000-01-08 7.0 0.329263 2.274627"><pre class="notranslate"><code class="notranslate">print(df.T.drop_duplicates().T) A B C 2000-01-01 0.0 0.086386 -2.558181 2000-01-02 1.0 0.217020 -0.964484 2000-01-03 2.0 -0.426538 -0.579129 2000-01-04 3.0 0.620989 -1.908091 2000-01-05 4.0 -1.463473 -0.345109 2000-01-06 5.0 -0.460185 0.670077 2000-01-07 6.0 -1.353535 0.226513 2000-01-08 7.0 0.329263 2.274627 </code></pre></div> <h4 dir="auto">output of <code class="notranslate">pd.show_versions()</code></h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="INSTALLED VERSIONS ------------------ commit: None python: 3.5.2.final.0 python-bits: 64 OS: Linux OS-release: 3.19.0-59-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_AU.UTF-8 pandas: 0.18.1 nose: None pip: 8.1.2 setuptools: 23.0.0 Cython: 0.24 numpy: 1.11.1 scipy: 0.17.1 statsmodels: None xarray: None IPython: 5.0.0 sphinx: None patsy: None dateutil: 2.5.3 pytz: 2016.6.1 blosc: None bottleneck: None tables: None numexpr: None matplotlib: None openpyxl: None xlrd: None xlwt: None xlsxwriter: None lxml: None bs4: None html5lib: None httplib2: None apiclient: None sqlalchemy: 1.0.12 pymysql: 0.7.3.None psycopg2: 2.6.1 (dt dec pq3 ext) jinja2: 2.8 boto: None pandas_datareader: None"><pre class="notranslate"><code class="notranslate">INSTALLED VERSIONS ------------------ commit: None python: 3.5.2.final.0 python-bits: 64 OS: Linux OS-release: 3.19.0-59-generic machine: x86_64 processor: x86_64 byteorder: little LC_ALL: None LANG: en_AU.UTF-8 pandas: 0.18.1 nose: None pip: 8.1.2 setuptools: 23.0.0 Cython: 0.24 numpy: 1.11.1 scipy: 0.17.1 statsmodels: None xarray: None IPython: 5.0.0 sphinx: None patsy: None dateutil: 2.5.3 pytz: 2016.6.1 blosc: None bottleneck: None tables: None numexpr: None matplotlib: None openpyxl: None xlrd: None xlwt: None xlsxwriter: None lxml: None bs4: None html5lib: None httplib2: None apiclient: None sqlalchemy: 1.0.12 pymysql: 0.7.3.None psycopg2: 2.6.1 (dt dec pq3 ext) jinja2: 2.8 boto: None pandas_datareader: None </code></pre></div>
0
<p dir="auto">Hi guys,</p> <p dir="auto">I've been looking for a way to learn web development and have really been enjoying the material you guys have put together, so thank you.</p> <p dir="auto">I have a login issue I can't figure out and didn't see a duplicate looking through the issues.</p> <h4 dir="auto">Issue Description</h4> <ul dir="auto"> <li>When I login with github from my mac mini on any browser, it does not work. I get a red error saying <code class="notranslate">Oops! Something went wrong. Please try again later</code>. I get redirected back to <a href="http://www.freecodecamp.com/map" rel="nofollow">http://www.freecodecamp.com/map</a>, and I'm not logged in.</li> </ul> <p dir="auto">Things I have tried on the mac mini:</p> <ul dir="auto"> <li>Github login after hard refresh / clearing all of the browser cache</li> <li>Github login on Firefox, Safari, Chrome</li> <li>Github login in private browsing mode (all browsers)</li> </ul> <p dir="auto">But the weird thing is, I can successfully use github to login with 3 other computers:</p> <ul dir="auto"> <li>Acer Chromebook (ChromeOS 48.0.2564.116 (64-bit))</li> <li>Macbook Pro (OSX El Capitan)</li> <li>Thinkpad (Ubuntu 14.04)</li> </ul> <h4 dir="auto">Browser Information (mac mini)</h4> <ul dir="auto"> <li>Firefox 43.0.4</li> <li>Chrome 49.0.2623.87 (64-bit)</li> <li>Safari 9.0.3 (11601.4.4)</li> <li>OS: OSX El Capitan 10.11.3 (15D21)</li> </ul> <h4 dir="auto">Screenshot</h4> <ul dir="auto"> <li><strong>Login Error (mac mini)</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9358742/13768004/1e66eb06-ea3f-11e5-8788-04e22b6ae95e.png"><img src="https://cloud.githubusercontent.com/assets/9358742/13768004/1e66eb06-ea3f-11e5-8788-04e22b6ae95e.png" alt="login_error" style="max-width: 100%;"></a></li> <li><strong>Login Success (thinkpad ubuntu)</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9358742/13768200/2fce0512-ea41-11e5-80ce-c123351b5528.png"><img src="https://cloud.githubusercontent.com/assets/9358742/13768200/2fce0512-ea41-11e5-80ce-c123351b5528.png" alt="login_success" style="max-width: 100%;"></a></li> </ul> <h4 dir="auto">Other Information</h4> <p dir="auto">I have HAR files of logging in using the mac mini (error) and chromebook (success) for the GET requests of:</p> <ul dir="auto"> <li>GET github</li> <li>GET authorize?response_type=code&amp;redirect_uri...</li> <li>GET callback?code=...</li> <li>(mac mini, error) GET map</li> <li>(others, success) GET trigger-click-events-with-jquery</li> </ul> <p dir="auto">I can share a link to these files to you privately, but I would rather not post them here in case the files have my cookie information, and they're a bit big (12 MB total).</p>
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/en/challenges/jquery/target-the-parent-of-an-element-using-jquery" rel="nofollow">target-the-parent-of-an-element-using-jquery</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">Can't complete this challenge, and I had someone double check me in chat to make sure my code was correct. I'm not sure if it's due to the site update that is currently being rolled out.</p> <p dir="auto">It seems the code also causes the "#target1" button to become red instead of just the parent declarative.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/15256880/18403730/2d3436e4-76ac-11e6-9b55-4fb4f6f2024a.png"><img src="https://cloud.githubusercontent.com/assets/15256880/18403730/2d3436e4-76ac-11e6-9b55-4fb4f6f2024a.png" alt="ztjbpiy" style="max-width: 100%;"></a></p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;script&gt; $(document).ready(function() { $(&quot;#target1&quot;).css(&quot;color&quot;, &quot;red&quot;); $(&quot;#target1&quot;).prop(&quot;disabled&quot;, true); $(&quot;#target4&quot;).remove(); $(&quot;#target2&quot;).appendTo(&quot;#right-well&quot;); $(&quot;#target5&quot;).clone().appendTo(&quot;#left-well&quot;); $(&quot;#target1&quot;).parent().css(&quot;background-color&quot;,&quot;red&quot;); }); &lt;/script&gt; &lt;!-- Only change code above this line. --&gt; &lt;body&gt; &lt;div class=&quot;container-fluid&quot;&gt; &lt;h3 class=&quot;text-primary text-center&quot;&gt;jQuery Playground&lt;/h3&gt; &lt;div class=&quot;row&quot;&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#left-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;left-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target1&quot;&gt;#target1&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target2&quot;&gt;#target2&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target3&quot;&gt;#target3&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#right-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;right-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target4&quot;&gt;#target4&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target5&quot;&gt;#target5&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target6&quot;&gt;#target6&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; ```"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"color"</span><span class="pl-kos">,</span> <span class="pl-s">"red"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">prop</span><span class="pl-kos">(</span><span class="pl-s">"disabled"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target4"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">remove</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target2"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#right-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target5"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">clone</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#left-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">parent</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"background-color"</span><span class="pl-kos">,</span><span class="pl-s">"red"</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">&lt;/</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-c">&lt;!-- Only change code above this line. --&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">body</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">container-fluid</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h3</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">&gt;</span>jQuery Playground<span class="pl-kos">&lt;/</span><span class="pl-ent">h3</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">row</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span>#left-well<span class="pl-kos">&lt;/</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">left-well</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target1</span>"<span class="pl-kos">&gt;</span>#target1<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target2</span>"<span class="pl-kos">&gt;</span>#target2<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target3</span>"<span class="pl-kos">&gt;</span>#target3<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span>#right-well<span class="pl-kos">&lt;/</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">right-well</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target4</span>"<span class="pl-kos">&gt;</span>#target4<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target5</span>"<span class="pl-kos">&gt;</span>#target5<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target6</span>"<span class="pl-kos">&gt;</span>#target6<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">body</span><span class="pl-kos">&gt;</span> ```</pre></div>
0
<h4 dir="auto">Description</h4> <p dir="auto">Passing any estimator to the <code class="notranslate">init</code> parameter in <code class="notranslate">GradientBoostingClassifier</code> (or <code class="notranslate">GradientBoostingRegressor</code>) causes errors when fitting. I'm including one example below as a MWE but I've fiddled with this issue for a while and get a number of different errors even if I can get past one. My guess is that this part of the code (the <code class="notranslate">init</code> estimator part) hasn't been shown any love in quite a while (since I've found similar issues that date back to 2014: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="24795572" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/2691" data-hovercard-type="issue" data-hovercard-url="/scikit-learn/scikit-learn/issues/2691/hovercard" href="https://github.com/scikit-learn/scikit-learn/issues/2691">#2691</a>). A more complete exploration can be found here: <a href="https://github.com/stoddardg/sklearn_bug_example/blob/master/Gradient%2BBoosting%2Binit%2BMWE.ipynb">https://github.com/stoddardg/sklearn_bug_example/blob/master/Gradient%2BBoosting%2Binit%2BMWE.ipynb</a></p> <h4 dir="auto">Steps/Code to Reproduce</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" from sklearn.datasets import make_classification from sklearn.linear_model import LogisticRegressionCV from sklearn.ensemble import GradientBoostingClassifier X, y = make_classification(n_samples=1000, n_features=50, n_informative=10,random_state=0) init_clf = LogisticRegressionCV() clf = GradientBoostingClassifier(init=init_clf) clf.fit(X, y) "><pre class="notranslate"><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_classification</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">LogisticRegressionCV</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">X</span>, <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-en">make_classification</span>(<span class="pl-s1">n_samples</span><span class="pl-c1">=</span><span class="pl-c1">1000</span>, <span class="pl-s1">n_features</span><span class="pl-c1">=</span><span class="pl-c1">50</span>, <span class="pl-s1">n_informative</span><span class="pl-c1">=</span><span class="pl-c1">10</span>,<span class="pl-s1">random_state</span><span class="pl-c1">=</span><span class="pl-c1">0</span>) <span class="pl-s1">init_clf</span> <span class="pl-c1">=</span> <span class="pl-v">LogisticRegressionCV</span>() <span class="pl-s1">clf</span> <span class="pl-c1">=</span> <span class="pl-v">GradientBoostingClassifier</span>(<span class="pl-s1">init</span><span class="pl-c1">=</span><span class="pl-s1">init_clf</span>) <span class="pl-s1">clf</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>, <span class="pl-s1">y</span>)</pre></div> <h4 dir="auto">Actual Results</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="IndexError Traceback (most recent call last) &lt;ipython-input-5-f94c05274ee0&gt; in &lt;module&gt;() 6 init_clf = LogisticRegressionCV() 7 clf = GradientBoostingClassifier(init=init_clf) ----&gt; 8 clf.fit(train_X, train_y) ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in fit(self, X, y, sample_weight, monitor) 1463 n_stages = self._fit_stages(X, y, y_pred, sample_weight, self._rng, 1464 X_val, y_val, sample_weight_val, -&gt; 1465 begin_at_stage, monitor, X_idx_sorted) 1466 1467 # change shape of arrays after fit (early-stopping or additional ests) ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in _fit_stages(self, X, y, y_pred, sample_weight, random_state, X_val, y_val, sample_weight_val, begin_at_stage, monitor, X_idx_sorted) 1527 y_pred = self._fit_stage(i, X, y, y_pred, sample_weight, 1528 sample_mask, random_state, X_idx_sorted, -&gt; 1529 X_csc, X_csr) 1530 1531 # track deviance (= loss) ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in _fit_stage(self, i, X, y, y_pred, sample_weight, sample_mask, random_state, X_idx_sorted, X_csc, X_csr) 1197 loss.update_terminal_regions(tree.tree_, X, y, residual, y_pred, 1198 sample_weight, sample_mask, -&gt; 1199 self.learning_rate, k=k) 1200 1201 # add tree to ensemble ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in update_terminal_regions(self, tree, X, y, residual, y_pred, sample_weight, sample_mask, learning_rate, k) 396 self._update_terminal_region(tree, masked_terminal_regions, 397 leaf, X, y, residual, --&gt; 398 y_pred[:, k], sample_weight) 399 400 # update predictions (both in-bag and out-of-bag) IndexError: too many indices for array"><pre class="notranslate"><code class="notranslate">IndexError Traceback (most recent call last) &lt;ipython-input-5-f94c05274ee0&gt; in &lt;module&gt;() 6 init_clf = LogisticRegressionCV() 7 clf = GradientBoostingClassifier(init=init_clf) ----&gt; 8 clf.fit(train_X, train_y) ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in fit(self, X, y, sample_weight, monitor) 1463 n_stages = self._fit_stages(X, y, y_pred, sample_weight, self._rng, 1464 X_val, y_val, sample_weight_val, -&gt; 1465 begin_at_stage, monitor, X_idx_sorted) 1466 1467 # change shape of arrays after fit (early-stopping or additional ests) ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in _fit_stages(self, X, y, y_pred, sample_weight, random_state, X_val, y_val, sample_weight_val, begin_at_stage, monitor, X_idx_sorted) 1527 y_pred = self._fit_stage(i, X, y, y_pred, sample_weight, 1528 sample_mask, random_state, X_idx_sorted, -&gt; 1529 X_csc, X_csr) 1530 1531 # track deviance (= loss) ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in _fit_stage(self, i, X, y, y_pred, sample_weight, sample_mask, random_state, X_idx_sorted, X_csc, X_csr) 1197 loss.update_terminal_regions(tree.tree_, X, y, residual, y_pred, 1198 sample_weight, sample_mask, -&gt; 1199 self.learning_rate, k=k) 1200 1201 # add tree to ensemble ~/anaconda3/envs/eis_env/lib/python3.7/site-packages/sklearn/ensemble/gradient_boosting.py in update_terminal_regions(self, tree, X, y, residual, y_pred, sample_weight, sample_mask, learning_rate, k) 396 self._update_terminal_region(tree, masked_terminal_regions, 397 leaf, X, y, residual, --&gt; 398 y_pred[:, k], sample_weight) 399 400 # update predictions (both in-bag and out-of-bag) IndexError: too many indices for array </code></pre></div> <h4 dir="auto">Versions</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="System ------ python: 3.7.0 (default, Jun 28 2018, 13:15:42) [GCC 7.2.0] executable: /home/gstoddard/anaconda3/envs/eis_env/bin/python machine: Linux-3.10.0-862.14.4.el7.x86_64-x86_64-with-redhat-7.5-Maipo BLAS ---- macros: SCIPY_MKL_H=None, HAVE_CBLAS=None lib_dirs: /home/gstoddard/anaconda3/envs/eis_env/lib cblas_libs: mkl_rt, pthread Python deps ----------- pip: 18.0 setuptools: 39.2.0 sklearn: 0.20.0 numpy: 1.15.0 scipy: 1.1.0 Cython: None pandas: 0.23.3"><pre class="notranslate"><code class="notranslate">System ------ python: 3.7.0 (default, Jun 28 2018, 13:15:42) [GCC 7.2.0] executable: /home/gstoddard/anaconda3/envs/eis_env/bin/python machine: Linux-3.10.0-862.14.4.el7.x86_64-x86_64-with-redhat-7.5-Maipo BLAS ---- macros: SCIPY_MKL_H=None, HAVE_CBLAS=None lib_dirs: /home/gstoddard/anaconda3/envs/eis_env/lib cblas_libs: mkl_rt, pthread Python deps ----------- pip: 18.0 setuptools: 39.2.0 sklearn: 0.20.0 numpy: 1.15.0 scipy: 1.1.0 Cython: None pandas: 0.23.3 </code></pre></div>
<p dir="auto">here is a tiny script which reproduces the crash.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sklearn.datasets import load_iris from sklearn import ensemble from sklearn.cross_validation import train_test_split iris = load_iris() X, y = iris.data, iris.target X, y = X[y &lt; 2], y[y &lt; 2] # make it binary X_train, X_test, y_train, y_test = train_test_split(X, y) # Fit GBT init with RF rf = ensemble.RandomForestClassifier() clf = ensemble.GradientBoostingClassifier(init=rf) clf.fit(X_train, y_train) acc = clf.score(X_test, y_test) print(&quot;Accuracy: {:.4f}&quot;.format(acc))"><pre class="notranslate"><code class="notranslate">from sklearn.datasets import load_iris from sklearn import ensemble from sklearn.cross_validation import train_test_split iris = load_iris() X, y = iris.data, iris.target X, y = X[y &lt; 2], y[y &lt; 2] # make it binary X_train, X_test, y_train, y_test = train_test_split(X, y) # Fit GBT init with RF rf = ensemble.RandomForestClassifier() clf = ensemble.GradientBoostingClassifier(init=rf) clf.fit(X_train, y_train) acc = clf.score(X_test, y_test) print("Accuracy: {:.4f}".format(acc)) </code></pre></div> <p dir="auto">It also seems that the init param in GradientBoostingClassifier is<br> not really tested.</p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pprett/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pprett">@pprett</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/glouppe/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/glouppe">@glouppe</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ogrisel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ogrisel">@ogrisel</a></p>
1
<p dir="auto">#Issue Details</p> <ul dir="auto"> <li><strong>Electron Version:</strong><br> 5.0.8 and 6.0.0 (but not 5.0.1 or 4.0.0)</li> <li><strong>Operating System:</strong><br> Windows 10</li> <li><strong>Last Known Working Electron version:</strong><br> 5.0.1</li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">App would continue to run after window.print()</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Print job sends to printer, but Electron crashes and window disappears.</p> <h3 dir="auto">To Reproduce</h3> <p dir="auto"><a href="https://github.com/mUtterberg/bug_test">Repo Link</a></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ git clone https://github.com/mUtterberg/bug_test $ npm install $ .\node_modules\electron\dist\electron.exe ."><pre class="notranslate">$ git clone https://github.com/mUtterberg/bug_test $ npm install $ .<span class="pl-cce">\n</span>ode_modules<span class="pl-cce">\e</span>lectron<span class="pl-cce">\d</span>ist<span class="pl-cce">\e</span>lectron.exe <span class="pl-c1">.</span></pre></div> <p dir="auto">Printing window in version 5.0.8 (repo default) or 6.0.0 will trigger Electron crash.</p> <p dir="auto">It appears to have been fixed in a previous version, as seen in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="370481340" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/15188" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/15188/hovercard" href="https://github.com/electron/electron/issues/15188">#15188</a>, but the bug has returned in recent versions (listed above).</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul>
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Issue Details</h3> <ul dir="auto"> <li><strong>Electron Version:</strong> 5.0.5 <ul dir="auto"> <li> </li> </ul> </li> <li><strong>Operating System:</strong> macOS 10.14.4 <ul dir="auto"> <li> </li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> 5.0.4 <ul dir="auto"> <li> </li> </ul> </li> </ul> <h3 dir="auto">To Reproduce</h3> <p dir="auto">Clone electron-quick-start, and put this in index.html:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;script&gt; window.print() &lt;/script&gt;"><pre class="notranslate"><code class="notranslate"> &lt;script&gt; window.print() &lt;/script&gt; </code></pre></div> <p dir="auto">When the print dialog opens, choose "PDF" in the bottom-left corner, then "open in preview". The PDF will open successfully, but shortly after that Electron will crash.</p> <p dir="auto">Crash report:</p> <details> Process: Electron [85956] Path: /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron Identifier: com.github.Electron Version: 5.0.5 (5.0.5) Code Type: X86-64 (Native) Parent Process: ??? [85955] Responsible: Electron [85956] User ID: 501 <p dir="auto">Date/Time: 2019-07-31 01:49:14.439 -0500<br> OS Version: Mac OS X 10.14.4 (18E227)<br> Report Version: 12<br> Anonymous UUID: 0C9E7938-A39B-A861-CC7F-2E5F772F8BE2</p> <p dir="auto">Sleep/Wake UUID: 295EAED6-D13E-4E07-AFA5-1C45B0B7A57B</p> <p dir="auto">Time Awake Since Boot: 1200000 seconds<br> Time Since Wake: 3400 seconds</p> <p dir="auto">System Integrity Protection: enabled</p> <p dir="auto">Crashed Thread: 23 TaskSchedulerBackgroundBlockingWorker</p> <p dir="auto">Exception Type: EXC_BAD_ACCESS (SIGSEGV)<br> Exception Codes: KERN_INVALID_ADDRESS at 0x00007fa70000020a<br> Exception Note: EXC_CORPSE_NOTIFY</p> <p dir="auto">Termination Signal: Segmentation fault: 11<br> Termination Reason: Namespace SIGNAL, Code 0xb<br> Terminating Process: exc handler [85956]</p> <p dir="auto">VM Regions Near 0x7fa70000020a:<br> Stack 0000700012c3e000-0000700013440000 [ 8200K] rw-/rwx SM=COW thread 33<br> --&gt;<br> MALLOC_TINY 00007fa758400000-00007fa758800000 [ 4096K] rw-/rwx SM=PRV</p> <p dir="auto">Thread 0:: CrBrowserMain Dispatch queue: com.apple.main-thread<br> 0 libsystem_platform.dylib 0x00007fff67322d09 _platform_memmove$VARIANT$Haswell + 41<br> 1 com.github.Electron.framework 0x000000010c0f1ca5 0x10c0ea000 + 31909<br> 2 com.github.Electron.framework 0x000000010e39c73a 0x10c0ea000 + 36382522<br> 3 com.github.Electron.framework 0x000000010e39c62c 0x10c0ea000 + 36382252<br> 4 com.github.Electron.framework 0x000000010cec6d72 0x10c0ea000 + 14536050<br> 5 com.github.Electron.framework 0x000000010e398a39 0x10c0ea000 + 36366905<br> 6 com.github.Electron.framework 0x000000010e3b7953 0x10c0ea000 + 36493651<br> 7 com.github.Electron.framework 0x000000010e3d23cf 0x10c0ea000 + 36602831<br> 8 com.github.Electron.framework 0x000000010e3d2933 0x10c0ea000 + 36604211<br> 9 com.github.Electron.framework 0x000000010e4791a3 0x10c0ea000 + 37286307<br> 10 com.github.Electron.framework 0x000000010e3b2b1a 0x10c0ea000 + 36473626<br> 11 com.github.Electron.framework 0x000000010e478b0f 0x10c0ea000 + 37284623<br> 12 com.apple.CoreFoundation 0x00007fff3ace45e3 <strong>CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION</strong> + 17<br> 13 com.apple.CoreFoundation 0x00007fff3ace4589 __CFRunLoopDoSource0 + 108<br> 14 com.apple.CoreFoundation 0x00007fff3acc7f3b __CFRunLoopDoSources0 + 195<br> 15 com.apple.CoreFoundation 0x00007fff3acc7505 __CFRunLoopRun + 1189<br> 16 com.apple.CoreFoundation 0x00007fff3acc6e0e CFRunLoopRunSpecific + 455<br> 17 com.apple.HIToolbox 0x00007fff39fb39db RunCurrentEventLoopInMode + 292<br> 18 com.apple.HIToolbox 0x00007fff39fb3715 ReceiveNextEventCommon + 603<br> 19 com.apple.HIToolbox 0x00007fff39fb34a6 _BlockUntilNextEventMatchingListInModeWithFilter + 64<br> 20 com.apple.AppKit 0x00007fff3834dffb _DPSNextEvent + 965<br> 21 com.apple.AppKit 0x00007fff3834cd93 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361<br> 22 com.apple.AppKit 0x00007fff38346eb0 -[NSApplication run] + 699<br> 23 com.github.Electron.framework 0x000000010e47999c 0x10c0ea000 + 37288348<br> 24 com.github.Electron.framework 0x000000010e4784df 0x10c0ea000 + 37283039<br> 25 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 26 com.github.Electron.framework 0x000000010cc449f3 0x10c0ea000 + 11905523<br> 27 com.github.Electron.framework 0x000000010cc44830 0x10c0ea000 + 11905072<br> 28 com.github.Electron.framework 0x000000010cc46852 0x10c0ea000 + 11913298<br> 29 com.github.Electron.framework 0x000000010cc41704 0x10c0ea000 + 11892484<br> 30 com.github.Electron.framework 0x000000010e005d9e 0x10c0ea000 + 32619934<br> 31 com.github.Electron.framework 0x000000010e005a11 0x10c0ea000 + 32619025<br> 32 com.github.Electron.framework 0x000000010fbb026f 0x10c0ea000 + 61629039<br> 33 com.github.Electron.framework 0x000000010e004e64 0x10c0ea000 + 32616036<br> 34 com.github.Electron.framework 0x000000010c0ecd14 AtomMain + 84<br> 35 com.github.Electron 0x000000010c0bc9b0 0x10c0bb000 + 6576<br> 36 libdyld.dylib 0x00007fff671403d5 start + 1</p> <p dir="auto">Thread 1:<br> 0 libsystem_pthread.dylib 0x00007fff6732d3f0 start_wqthread + 0</p> <p dir="auto">Thread 2:<br> 0 libsystem_pthread.dylib 0x00007fff6732d3f0 start_wqthread + 0</p> <p dir="auto">Thread 3:<br> 0 libsystem_pthread.dylib 0x00007fff6732d3f0 start_wqthread + 0</p> <p dir="auto">Thread 4:<br> 0 libsystem_pthread.dylib 0x00007fff6732d3f0 start_wqthread + 0</p> <p dir="auto">Thread 5:: TaskSchedulerServiceThread<br> 0 libsystem_kernel.dylib 0x00007fff6727b78e kevent + 10<br> 1 com.github.Electron.framework 0x000000010e47f569 0x10c0ea000 + 37311849<br> 2 com.github.Electron.framework 0x000000010e47d05d 0x10c0ea000 + 37302365<br> 3 com.github.Electron.framework 0x000000010e472cfe 0x10c0ea000 + 37260542<br> 4 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 5 com.github.Electron.framework 0x000000010e425cf7 0x10c0ea000 + 36945143<br> 6 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 6:: TaskSchedulerForegroundWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421b62 0x10c0ea000 + 36928354<br> 6 com.github.Electron.framework 0x000000010e421a74 0x10c0ea000 + 36928116<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 7:: TaskSchedulerForegroundBlockingWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421e2e 0x10c0ea000 + 36929070<br> 6 com.github.Electron.framework 0x000000010e421a74 0x10c0ea000 + 36928116<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 8:: TaskSchedulerBackgroundWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421b62 0x10c0ea000 + 36928354<br> 6 com.github.Electron.framework 0x000000010e4219e4 0x10c0ea000 + 36927972<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 9:: TaskSchedulerBackgroundBlockingWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421e2e 0x10c0ea000 + 36929070<br> 6 com.github.Electron.framework 0x000000010e4219e4 0x10c0ea000 + 36927972<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 10:: Chrome_IOThread<br> 0 libsystem_kernel.dylib 0x00007fff6727b78e kevent + 10<br> 1 com.github.Electron.framework 0x000000010e47f569 0x10c0ea000 + 37311849<br> 2 com.github.Electron.framework 0x000000010e47d05d 0x10c0ea000 + 37302365<br> 3 com.github.Electron.framework 0x000000010e472cfe 0x10c0ea000 + 37260542<br> 4 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 5 com.github.Electron.framework 0x000000010cc4c424 0x10c0ea000 + 11936804<br> 6 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 11:<br> 0 libsystem_kernel.dylib 0x00007fff6727b78e kevent + 10<br> 1 com.github.Electron.framework 0x000000011171144f 0x10c0ea000 + 90338383<br> 2 com.github.Electron.framework 0x0000000111701581 uv_run + 401<br> 3 com.github.Electron.framework 0x000000011167f556 0x10c0ea000 + 89740630<br> 4 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 5 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 6 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 12:<br> 0 libsystem_kernel.dylib 0x00007fff6727886a __psynch_cvwait + 10<br> 1 libsystem_pthread.dylib 0x00007fff6733156e _pthread_cond_wait + 722<br> 2 com.github.Electron.framework 0x000000011170c799 uv_cond_wait + 9<br> 3 com.github.Electron.framework 0x000000011167f658 0x10c0ea000 + 89740888<br> 4 com.github.Electron.framework 0x000000011167d3d8 0x10c0ea000 + 89732056<br> 5 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 6 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 7 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 13:<br> 0 libsystem_kernel.dylib 0x00007fff6727886a __psynch_cvwait + 10<br> 1 libsystem_pthread.dylib 0x00007fff6733156e _pthread_cond_wait + 722<br> 2 com.github.Electron.framework 0x000000011170c799 uv_cond_wait + 9<br> 3 com.github.Electron.framework 0x000000011167f658 0x10c0ea000 + 89740888<br> 4 com.github.Electron.framework 0x000000011167d3d8 0x10c0ea000 + 89732056<br> 5 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 6 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 7 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 14:<br> 0 libsystem_kernel.dylib 0x00007fff6727886a __psynch_cvwait + 10<br> 1 libsystem_pthread.dylib 0x00007fff6733156e _pthread_cond_wait + 722<br> 2 com.github.Electron.framework 0x000000011170c799 uv_cond_wait + 9<br> 3 com.github.Electron.framework 0x000000011167f658 0x10c0ea000 + 89740888<br> 4 com.github.Electron.framework 0x000000011167d3d8 0x10c0ea000 + 89732056<br> 5 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 6 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 7 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 15:<br> 0 libsystem_kernel.dylib 0x00007fff67275266 semaphore_wait_trap + 10<br> 1 com.github.Electron.framework 0x000000011170cd00 uv_sem_wait + 16<br> 2 com.github.Electron.framework 0x00000001116c7d12 0x10c0ea000 + 90037522<br> 3 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 4 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 5 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 16:: NetworkConfigWatcher<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.apple.CoreFoundation 0x00007fff3acc813e __CFRunLoopServiceMachPort + 328<br> 3 com.apple.CoreFoundation 0x00007fff3acc76ac __CFRunLoopRun + 1612<br> 4 com.apple.CoreFoundation 0x00007fff3acc6e0e CFRunLoopRunSpecific + 455<br> 5 com.apple.Foundation 0x00007fff3cf1da9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280<br> 6 com.github.Electron.framework 0x000000010e4796b1 0x10c0ea000 + 37287601<br> 7 com.github.Electron.framework 0x000000010e4784df 0x10c0ea000 + 37283039<br> 8 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 9 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 10 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 11 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 12 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 13 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 17:: DnsConfigService<br> 0 libsystem_kernel.dylib 0x00007fff6727b78e kevent + 10<br> 1 com.github.Electron.framework 0x000000010e47f569 0x10c0ea000 + 37311849<br> 2 com.github.Electron.framework 0x000000010e47d05d 0x10c0ea000 + 37302365<br> 3 com.github.Electron.framework 0x000000010e472d17 0x10c0ea000 + 37260567<br> 4 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 5 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 6 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 7 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 8 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 9 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 18:: CrShutdownDetector<br> 0 libsystem_kernel.dylib 0x00007fff67276ef2 read + 10<br> 1 com.github.Electron.framework 0x000000010e2d532f 0x10c0ea000 + 35566383<br> 2 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 3 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 4 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 5 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 19:: NetworkConfigWatcher<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.apple.CoreFoundation 0x00007fff3acc813e __CFRunLoopServiceMachPort + 328<br> 3 com.apple.CoreFoundation 0x00007fff3acc76ac __CFRunLoopRun + 1612<br> 4 com.apple.CoreFoundation 0x00007fff3acc6e0e CFRunLoopRunSpecific + 455<br> 5 com.apple.Foundation 0x00007fff3cf1da9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280<br> 6 com.github.Electron.framework 0x000000010e4796b1 0x10c0ea000 + 37287601<br> 7 com.github.Electron.framework 0x000000010e4784df 0x10c0ea000 + 37283039<br> 8 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 9 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 10 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 11 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 12 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 13 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 20:: TaskSchedulerForegroundBlockingWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421e2e 0x10c0ea000 + 36929070<br> 6 com.github.Electron.framework 0x000000010e421a74 0x10c0ea000 + 36928116<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 21:: TaskSchedulerForegroundBlockingWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421e2e 0x10c0ea000 + 36929070<br> 6 com.github.Electron.framework 0x000000010e421a74 0x10c0ea000 + 36928116<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 22:: TaskSchedulerForegroundBlockingWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421b62 0x10c0ea000 + 36928354<br> 6 com.github.Electron.framework 0x000000010e421a74 0x10c0ea000 + 36928116<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 23 Crashed:: TaskSchedulerBackgroundBlockingWorker<br> 0 com.github.Electron.framework 0x000000010e434950 0x10c0ea000 + 37005648<br> 1 com.github.Electron.framework 0x000000010e3b7953 0x10c0ea000 + 36493651<br> 2 com.github.Electron.framework 0x000000010e429ffd 0x10c0ea000 + 36962301<br> 3 com.github.Electron.framework 0x000000010e429b3c 0x10c0ea000 + 36961084<br> 4 com.github.Electron.framework 0x000000010e46ac87 0x10c0ea000 + 37227655<br> 5 com.github.Electron.framework 0x000000010e422461 0x10c0ea000 + 36930657<br> 6 com.github.Electron.framework 0x000000010e421d04 0x10c0ea000 + 36928772<br> 7 com.github.Electron.framework 0x000000010e4219e4 0x10c0ea000 + 36927972<br> 8 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 9 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 10 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 11 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 24:: CompositorTileWorker1/45571<br> 0 libsystem_kernel.dylib 0x00007fff6727886a __psynch_cvwait + 10<br> 1 libsystem_pthread.dylib 0x00007fff6733156e _pthread_cond_wait + 722<br> 2 com.github.Electron.framework 0x000000010e46a365 0x10c0ea000 + 37225317<br> 3 com.github.Electron.framework 0x000000010f4e3808 0x10c0ea000 + 54499336<br> 4 com.github.Electron.framework 0x000000010e435c92 0x10c0ea000 + 37010578<br> 5 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 6 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 7 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 8 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 25:: AudioThread<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e3ef36f 0x10c0ea000 + 36721519<br> 4 com.github.Electron.framework 0x000000010e3d333d 0x10c0ea000 + 36606781<br> 5 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 6 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 26:<br> 0 libsystem_kernel.dylib 0x00007fff6727c61a __select + 10<br> 1 com.github.Electron.framework 0x000000010e361782 0x10c0ea000 + 36140930<br> 2 com.github.Electron.framework 0x000000010e36122f 0x10c0ea000 + 36139567<br> 3 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 4 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 5 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 27:: TaskSchedulerSingleThreadForegroundBlocking0<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e3ef36f 0x10c0ea000 + 36721519<br> 4 com.github.Electron.framework 0x000000010e4217ea 0x10c0ea000 + 36927466<br> 5 com.github.Electron.framework 0x000000010e421e2e 0x10c0ea000 + 36929070<br> 6 com.github.Electron.framework 0x000000010e421ad4 0x10c0ea000 + 36928212<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 28:: TaskSchedulerSingleThreadSharedBackgroundBlocking1<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e3ef36f 0x10c0ea000 + 36721519<br> 4 com.github.Electron.framework 0x000000010e4217ea 0x10c0ea000 + 36927466<br> 5 com.github.Electron.framework 0x000000010e421b62 0x10c0ea000 + 36928354<br> 6 com.github.Electron.framework 0x000000010e421a14 0x10c0ea000 + 36928020<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 29:: NetworkConfigWatcher<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.apple.CoreFoundation 0x00007fff3acc813e __CFRunLoopServiceMachPort + 328<br> 3 com.apple.CoreFoundation 0x00007fff3acc76ac __CFRunLoopRun + 1612<br> 4 com.apple.CoreFoundation 0x00007fff3acc6e0e CFRunLoopRunSpecific + 455<br> 5 com.apple.Foundation 0x00007fff3cf1da9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280<br> 6 com.github.Electron.framework 0x000000010e4796b1 0x10c0ea000 + 37287601<br> 7 com.github.Electron.framework 0x000000010e4784df 0x10c0ea000 + 37283039<br> 8 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 9 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 10 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 11 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 12 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 13 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 30:: TaskSchedulerBackgroundBlockingWorker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e405ed1 0x10c0ea000 + 36814545<br> 4 com.github.Electron.framework 0x000000010e4217f8 0x10c0ea000 + 36927480<br> 5 com.github.Electron.framework 0x000000010e421b62 0x10c0ea000 + 36928354<br> 6 com.github.Electron.framework 0x000000010e4219e4 0x10c0ea000 + 36927972<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 31:: CacheThread_BlockFile<br> 0 libsystem_kernel.dylib 0x00007fff6727b78e kevent + 10<br> 1 com.github.Electron.framework 0x000000010e47f569 0x10c0ea000 + 37311849<br> 2 com.github.Electron.framework 0x000000010e47d05d 0x10c0ea000 + 37302365<br> 3 com.github.Electron.framework 0x000000010e472cfe 0x10c0ea000 + 37260542<br> 4 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 5 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 6 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 7 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 8 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 9 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 32:: com.apple.NSEventThread<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.apple.CoreFoundation 0x00007fff3acc813e __CFRunLoopServiceMachPort + 328<br> 3 com.apple.CoreFoundation 0x00007fff3acc76ac __CFRunLoopRun + 1612<br> 4 com.apple.CoreFoundation 0x00007fff3acc6e0e CFRunLoopRunSpecific + 455<br> 5 com.apple.AppKit 0x00007fff38355d1a _NSEventThread + 175<br> 6 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 7 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 8 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 33:: Printing_Worker<br> 0 libsystem_kernel.dylib 0x00007fff6727522a mach_msg_trap + 10<br> 1 libsystem_kernel.dylib 0x00007fff6727576c mach_msg + 60<br> 2 com.github.Electron.framework 0x000000010e405dc0 0x10c0ea000 + 36814272<br> 3 com.github.Electron.framework 0x000000010e3ef36f 0x10c0ea000 + 36721519<br> 4 com.github.Electron.framework 0x000000010e3d333d 0x10c0ea000 + 36606781<br> 5 com.github.Electron.framework 0x000000010e3f12f8 0x10c0ea000 + 36729592<br> 6 com.github.Electron.framework 0x000000010e4363ea 0x10c0ea000 + 37012458<br> 7 com.github.Electron.framework 0x000000010e473067 0x10c0ea000 + 37261415<br> 8 libsystem_pthread.dylib 0x00007fff6732e2eb _pthread_body + 126<br> 9 libsystem_pthread.dylib 0x00007fff67331249 _pthread_start + 66<br> 10 libsystem_pthread.dylib 0x00007fff6732d40d thread_start + 13</p> <p dir="auto">Thread 34:<br> 0 libsystem_pthread.dylib 0x00007fff6732d3f0 start_wqthread + 0</p> <p dir="auto">Thread 23 crashed with X86 Thread State (64-bit):<br> rax: 0x00007fa7588d4000 rbx: 0x00007fa75a8d8c30 rcx: 0x0000000000000000 rdx: 0x0000000000000100<br> rdi: 0x00007fa700000202 rsi: 0x000070000ea16b48 rbp: 0x000070000ea169c0 rsp: 0x000070000ea16990<br> r8: 0x000070000ea169f0 r9: 0x0000000000000001 r10: 0x00007fa75af6eb20 r11: 0x00007fa75a852ea0<br> r12: 0x00007fa758418c38 r13: 0x000070000ea16b48 r14: 0x0000000000000000 r15: 0x00007fa75a8d8c30<br> rip: 0x000000010e434950 rfl: 0x0000000000010206 cr2: 0x00007fa70000020a</p> <p dir="auto">Logical CPU: 1<br> Error Code: 0x00000004<br> Trap Number: 14</p> <p dir="auto">Binary Images:<br> 0x10c0bb000 - 0x10c0e3ff7 +com.github.Electron (5.0.5 - 5.0.5) &lt;3788637B-0A53-3737-B3B6-C827ABF3E314&gt; /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/MacOS/Electron<br> 0x10c0ea000 - 0x11229cf9f +com.github.Electron.framework (5.0.5) /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework<br> 0x1128ec000 - 0x112907fff +com.github.Squirrel (1.0 - 1) /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel<br> 0x11292f000 - 0x112992ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) &lt;701B20DE-3ADD-3643-B52A-E05744C30DB3&gt; /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa<br> 0x112a0b000 - 0x112a1ffff +org.mantle.Mantle (1.0 - ???) &lt;31915DD6-48E6-3706-A076-C9D4CE17F4F6&gt; /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle<br> 0x112a38000 - 0x112cb9fe7 +libffmpeg.dylib (0) &lt;5AB84A10-1627-3C9C-8671-065B476B33F2&gt; /usr/local/lib/node_modules/electron/dist/Electron.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libffmpeg.dylib<br> 0x114635000 - 0x11469f6ef dyld (655.1.1) /usr/lib/dyld<br> 0x116671000 - 0x116674047 libobjc-trampolines.dylib (756.2) /usr/lib/libobjc-trampolines.dylib<br> 0x1187e6000 - 0x118819ff3 com.apple.print.framework.Print.Private (14.4 - 589.12) &lt;33EDB3ED-81BF-3213-98BE-F63B071C6A68&gt; /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Plugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI<br> 0x11883a000 - 0x118876fff com.apple.print.PrintingCocoaPDEs (14.4 - 589.12) &lt;475C69B8-AF26-3712-B29C-B613934B3FBE&gt; /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs<br> 0x7fff2f777000 - 0x7fff2facffff com.apple.RawCamera.bundle (8.14.0 - 1031.4.2) &lt;7CEBABD9-0E85-3670-9836-40DD190C48A8&gt; /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera<br> 0x7fff327b6000 - 0x7fff328b3ff7 com.apple.driver.AppleIntelBDWGraphicsMTLDriver (12.8.38 - 12.0.8) /System/Library/Extensions/AppleIntelBDWGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsMTLDriver<br> 0x7fff36d57000 - 0x7fff36f31ff7 com.apple.avfoundation (2.0 - 1546.25) &lt;744B1F04-5F34-39F4-A594-34518CEA2421&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation<br> 0x7fff36f32000 - 0x7fff36ff7fff com.apple.audio.AVFAudio (1.0 - ???) &lt;7F3AA3FD-9F0B-3714-8F05-7272CEC9E33B&gt; /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio<br> 0x7fff370ff000 - 0x7fff370fffff com.apple.Accelerate (1.11 - Accelerate 1.11) &lt;762942CB-CFC9-3A0C-9645-A56523A06426&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate<br> 0x7fff37100000 - 0x7fff37116ff7 libCGInterfaces.dylib (506.22) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib<br> 0x7fff37117000 - 0x7fff377b0fef com.apple.vImage (8.1 - ???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage<br> 0x7fff377b1000 - 0x7fff37a2aff3 libBLAS.dylib (1243.200.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib<br> 0x7fff37a2b000 - 0x7fff37a9dffb libBNNS.dylib (38.250.1) &lt;95A91B57-17B8-389F-B324-3AD42BBEA3E6&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib<br> 0x7fff37a9e000 - 0x7fff37e47ff3 libLAPACK.dylib (1243.200.4) &lt;92175DF4-863A-3780-909A-A3E5C410F2E9&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib<br> 0x7fff37e48000 - 0x7fff37e5dfeb libLinearAlgebra.dylib (1243.200.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib<br> 0x7fff37e5e000 - 0x7fff37e63ff3 libQuadrature.dylib (3.200.2) &lt;354D7970-0570-32E0-ABAE-222DAAF1F7A9&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib<br> 0x7fff37e64000 - 0x7fff37ee0ff3 libSparse.dylib (79.200.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib<br> 0x7fff37ee1000 - 0x7fff37ef4fe3 libSparseBLAS.dylib (1243.200.4) &lt;95B6FFFD-CDD5-3ABB-B862-6A86720DCD77&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib<br> 0x7fff37ef5000 - 0x7fff380dcff7 libvDSP.dylib (671.250.4) &lt;7B110627-A9C1-3FB7-A077-0C7741BA25D8&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib<br> 0x7fff380dd000 - 0x7fff38190ff7 libvMisc.dylib (671.250.4) &lt;41FB4684-9DC8-3C19-8E2D-3BB7E6F74AAA&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib<br> 0x7fff38191000 - 0x7fff38191fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) &lt;74288115-EF61-30B6-843F-0593B31D4929&gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib<br> 0x7fff38192000 - 0x7fff381ecfff com.apple.Accounts (113 - 113) /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts<br> 0x7fff381ef000 - 0x7fff38332fff com.apple.AddressBook.framework (11.0 - 1893) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook<br> 0x7fff38333000 - 0x7fff390e8fff com.apple.AppKit (6.9 - 1671.40.119) &lt;0A857684-99C7-30A9-8E23-D3015C6B24A3&gt; /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit<br> 0x7fff3913a000 - 0x7fff3913afff com.apple.ApplicationServices (50.1 - 50.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices<br> 0x7fff3913b000 - 0x7fff391a6fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) &lt;5B30E86D-B3AB-3346-A19F-F2CABF342465&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS<br> 0x7fff3923f000 - 0x7fff39356fff libFontParser.dylib (228.6.2.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib<br> 0x7fff39357000 - 0x7fff39399fff libFontRegistry.dylib (228.12.2.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib<br> 0x7fff393f3000 - 0x7fff39425fff libTrueTypeScaler.dylib (228.6.2.3) &lt;8F2DA883-4A0E-389A-AB1D-C66FAA3B8E7C&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib<br> 0x7fff3948a000 - 0x7fff3948eff3 com.apple.ColorSyncLegacy (4.13.0 - 1) &lt;6EDD928D-BC75-385E-AB04-3CB63EAEBF96&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy<br> 0x7fff39529000 - 0x7fff3957bff7 com.apple.HIServices (1.22 - 627.15) &lt;1B4C3D08-1DBA-365B-9362-C6708D8844AA&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices<br> 0x7fff3957c000 - 0x7fff3958bfff com.apple.LangAnalysis (1.7.0 - 1.7.0) &lt;76B698A9-18B9-3089-9570-4FC3F754D56D&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis<br> 0x7fff3958c000 - 0x7fff395d5ff7 com.apple.print.framework.PrintCore (14.2 - 503.8) &lt;885645E0-D760-35EC-B506-7FC2763390DF&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore<br> 0x7fff395d6000 - 0x7fff3960fff7 com.apple.QD (3.12 - 407.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD<br> 0x7fff39610000 - 0x7fff3961cfff com.apple.speech.synthesis.framework (8.1.2 - 8.1.2) &lt;1F910DC7-410A-391B-A03D-17605E50B688&gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis<br> 0x7fff3961d000 - 0x7fff39894ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) &lt;1C76AD80-1106-312E-B2C0-126A8D62F192&gt; /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox<br> 0x7fff39896000 - 0x7fff39896fff com.apple.audio.units.AudioUnit (1.14 - 1.14) &lt;6AFA15D5-1886-3EBF-ADC9-90421375DB30&gt; /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit<br> 0x7fff39bee000 - 0x7fff39f8ffff com.apple.CFNetwork (978.0.7 - 978.0.7) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork<br> 0x7fff39fa4000 - 0x7fff39fa4fff com.apple.Carbon (158 - 158) &lt;080ECFD9-9C4B-3038-9F4B-BE111473E1DE&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon<br> 0x7fff39fa5000 - 0x7fff39fa8ffb com.apple.CommonPanels (1.2.6 - 98) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels<br> 0x7fff39fa9000 - 0x7fff3a29ffff com.apple.HIToolbox (2.1.1 - 918.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox<br> 0x7fff3a2a0000 - 0x7fff3a2a3ff3 com.apple.help (1.3.8 - 66) &lt;80B6EAF2-4745-3C04-AC10-4FC3EB08CB8D&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help<br> 0x7fff3a2a4000 - 0x7fff3a2a9ff7 com.apple.ImageCapture (9.0 - 1534.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture<br> 0x7fff3a2aa000 - 0x7fff3a33fff3 com.apple.ink.framework (10.9 - 225) &lt;091165EE-D540-3978-9B0C-2FAB5CB185A8&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink<br> 0x7fff3a340000 - 0x7fff3a358ff7 com.apple.openscripting (1.7 - 179.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting<br> 0x7fff3a378000 - 0x7fff3a379ff7 com.apple.print.framework.Print (14.2 - 267.4) &lt;3E310F68-2BC7-365B-B36C-AAC243C7FFC4&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print<br> 0x7fff3a37a000 - 0x7fff3a37cff7 com.apple.securityhi (9.0 - 55006) &lt;9A3E5426-CAC6-3B28-A3B7-C97A1B5CE9BC&gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI<br> 0x7fff3a37d000 - 0x7fff3a383ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition<br> 0x7fff3a4a5000 - 0x7fff3a4a5fff com.apple.Cocoa (6.11 - 23) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa<br> 0x7fff3a4b3000 - 0x7fff3a57fff7 com.apple.ColorSync (4.13.0 - 3340.7) &lt;3ABFA780-F46A-3F0A-8504-005ADDA0662E&gt; /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync<br> 0x7fff3a580000 - 0x7fff3a668ff7 com.apple.contacts (1.0 - 2901) /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts<br> 0x7fff3a70b000 - 0x7fff3a791fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) &lt;7D8A5C9A-3F58-38C2-A1DC-20765150C742&gt; /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio<br> 0x7fff3a7f5000 - 0x7fff3a81fffb com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth<br> 0x7fff3a820000 - 0x7fff3aba4fe3 com.apple.CoreData (120 - 866.5) &lt;7A8DBE88-C7D4-39B4-87E6-508DA68BDAA8&gt; /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData<br> 0x7fff3aba5000 - 0x7fff3ac8cff7 com.apple.CoreDisplay (101.3 - 108.11) &lt;373AC375-0178-3721-8FFB-248D96E6AB05&gt; /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay<br> 0x7fff3ac8d000 - 0x7fff3b0d0fff com.apple.CoreFoundation (6.9 - 1570.16) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation<br> 0x7fff3b0d2000 - 0x7fff3b761fe7 com.apple.CoreGraphics (2.0 - 1251.12) &lt;58D98B52-5BEF-3345-B8DD-AAE476234FC1&gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics<br> 0x7fff3b763000 - 0x7fff3ba83fff com.apple.CoreImage (14.2.0 - 720.0.130) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage<br> 0x7fff3ba84000 - 0x7fff3bafcfff com.apple.corelocation (2245.12.30) &lt;6C27F2BF-3050-36EC-A628-152A313E5312&gt; /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation<br> 0x7fff3bafd000 - 0x7fff3bb53ff7 com.apple.audio.midi.CoreMIDI (1.10 - 88) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI<br> 0x7fff3bb56000 - 0x7fff3bd7ffff com.apple.CoreML (1.0 - 1) /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML<br> 0x7fff3bd80000 - 0x7fff3be81fff com.apple.CoreMedia (1.0 - 2286.48) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia<br> 0x7fff3be82000 - 0x7fff3beddff7 com.apple.CoreMediaIO (900.0 - 5025) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO<br> 0x7fff3bede000 - 0x7fff3bedefff com.apple.CoreServices (944.3 - 944.3) &lt;364A9C3B-6841-3E34-A02A-8227FB5C9030&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices<br> 0x7fff3bedf000 - 0x7fff3bf5bff7 com.apple.AE (773 - 773) &lt;3E32B3FF-0A2E-39F6-BBE0-F2E9607AB83A&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE<br> 0x7fff3bf5c000 - 0x7fff3c233fff com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore<br> 0x7fff3c234000 - 0x7fff3c27cff7 com.apple.DictionaryServices (1.2 - 284.16.3) &lt;3EE59BD1-FCDD-3DE2-A7D6-6C503564E1AC&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices<br> 0x7fff3c27d000 - 0x7fff3c285ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) &lt;727151AB-D38F-39B8-B7B3-F0039DBD45D0&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents<br> 0x7fff3c286000 - 0x7fff3c438fff com.apple.LaunchServices (944.3 - 944.3) &lt;7BB5AEC5-A509-3188-9884-619E0DF8EED6&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices<br> 0x7fff3c439000 - 0x7fff3c4d7ff7 com.apple.Metadata (10.7.0 - 1191.56) &lt;8DD9AC75-7D3E-3607-BEA0-556E98C30765&gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata<br> 0x7fff3c4d8000 - 0x7fff3c522ff7 com.apple.CoreServices.OSServices (944.3 - 944.3) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices<br> 0x7fff3c523000 - 0x7fff3c58aff7 com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit<br> 0x7fff3c58b000 - 0x7fff3c5acff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList<br> 0x7fff3c8b7000 - 0x7fff3ca19ff3 com.apple.CoreText (352.0 - 584.26.2.7) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText<br> 0x7fff3ca1a000 - 0x7fff3ca57ff3 com.apple.CoreVideo (1.8 - 0.0) &lt;0376A7EC-8C71-3F26-9599-4CA7AB7924EA&gt; /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo<br> 0x7fff3ca58000 - 0x7fff3cae6ffb com.apple.framework.CoreWLAN (13.0 - 1370.8) &lt;68770CCD-9C7F-31AB-8BBB-0DE4577D5F61&gt; /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN<br> 0x7fff3cc5d000 - 0x7fff3cc68ffb com.apple.DirectoryService.Framework (10.14 - 207.200.4) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService<br> 0x7fff3cc69000 - 0x7fff3cd17fff com.apple.DiscRecording (9.0.3 - 9030.4.5) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording<br> 0x7fff3cd3d000 - 0x7fff3cd42ffb com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration<br> 0x7fff3cefe000 - 0x7fff3cf00ff3 com.apple.ForceFeedback (1.0.6 - 1.0.6) /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback<br> 0x7fff3cf01000 - 0x7fff3d2aeff3 com.apple.Foundation (6.9 - 1570.16) &lt;84055403-9921-3EFC-B593-8F0600EBEE80&gt; /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation<br> 0x7fff3d31d000 - 0x7fff3d34cffb com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS<br> 0x7fff3d34d000 - 0x7fff3d366ff3 com.apple.GameController (1.0 - 1) /System/Library/Frameworks/GameController.framework/Versions/A/GameController<br> 0x7fff3d44c000 - 0x7fff3d554ff7 com.apple.Bluetooth (6.0.11 - 6.0.11f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth<br> 0x7fff3d5b6000 - 0x7fff3d645fff com.apple.framework.IOKit (2.0.2 - 1483.250.15) &lt;1170EC49-1912-3657-9C71-991653959191&gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit<br> 0x7fff3d647000 - 0x7fff3d656ff3 com.apple.IOSurface (255.4.2 - 255.4.2) &lt;9025E034-7D75-36E3-B71B-96E91FAE109B&gt; /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface<br> 0x7fff3d657000 - 0x7fff3d6a9ff3 com.apple.ImageCaptureCore (1.0 - 1534.2) &lt;59655185-CDD6-3F8F-A655-C274BDD1C9E9&gt; /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore<br> 0x7fff3d6aa000 - 0x7fff3d835fef com.apple.ImageIO.framework (3.3.0 - 1824.6) &lt;81BA6C12-123A-3FD8-9E88-0698100471A6&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO<br> 0x7fff3d836000 - 0x7fff3d83affb libGIF.dylib (1824.6) &lt;4B7B283B-84C8-38D1-BED4-B507C3EF6E7E&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib<br> 0x7fff3d83b000 - 0x7fff3d917fef libJP2.dylib (1824.6) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib<br> 0x7fff3d918000 - 0x7fff3d93dfeb libJPEG.dylib (1824.6) &lt;0968BAF1-5E5A-3AA0-A971-3B3FFC4A4B66&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib<br> 0x7fff3dc00000 - 0x7fff3dc26feb libPng.dylib (1824.6) &lt;661821A6-4BF5-31C6-AFDB-7874A446756C&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib<br> 0x7fff3dc27000 - 0x7fff3dc29ffb libRadiance.dylib (1824.6) &lt;0154D539-DF89-3F75-A8F1-92EF147422AF&gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib<br> 0x7fff3dc2a000 - 0x7fff3dc77fe7 libTIFF.dylib (1824.6) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib<br> 0x7fff3df72000 - 0x7fff3edd5fff com.apple.JavaScriptCore (14607 - 14607.1.40.1.4) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore<br> 0x7fff3eded000 - 0x7fff3ee06fff com.apple.Kerberos (3.0 - 1) &lt;39F3F99E-036E-3406-80D9-8A845D820D4D&gt; /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos<br> 0x7fff3ee07000 - 0x7fff3ee3cff3 com.apple.LDAPFramework (2.4.28 - 194.5) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP<br> 0x7fff3ee89000 - 0x7fff3eea6ffb com.apple.CoreAuthentication.SharedUtils (1.0 - 425.250.11) &lt;5FF0B1EB-8E07-3A48-B70F-64455C1C5CBB&gt; /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils<br> 0x7fff3eea7000 - 0x7fff3eebbfff com.apple.LocalAuthentication (1.0 - 425.250.11) &lt;3080D7BB-CE7C-375D-8D7E-D5445AA58950&gt; /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication<br> 0x7fff3f0bf000 - 0x7fff3f0c9fff com.apple.MediaAccessibility (1.0 - 114.4) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility<br> 0x7fff3f178000 - 0x7fff3f818fff com.apple.MediaToolbox (1.0 - 2286.48) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox<br> 0x7fff3f81a000 - 0x7fff3f8a9ff7 com.apple.Metal (161.7.1 - 161.7.1) &lt;18BEB663-0D31-3255-9710-50BC5C3D2A0F&gt; /System/Library/Frameworks/Metal.framework/Versions/A/Metal<br> 0x7fff3f8ab000 - 0x7fff3f8c4ff3 com.apple.MetalKit (1.0 - 113) &lt;6EE8B7C8-A088-3CFF-A570-E0D5C0D5EFAC&gt; /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit<br> 0x7fff3f8c5000 - 0x7fff3f8e4ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore<br> 0x7fff3f8e5000 - 0x7fff3f961fe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) &lt;7E94924C-1648-3AE2-A32E-FC0AFCA433C6&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage<br> 0x7fff3f962000 - 0x7fff3f989fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix<br> 0x7fff3f98a000 - 0x7fff3fab5ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) &lt;4866922C-9732-3FCE-9419-402E5DD22639&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork<br> 0x7fff3fab6000 - 0x7fff3fad0fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) &lt;80CB3AF2-4401-3B3C-8941-7DEB648DD001&gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector<br> 0x7fff3fad1000 - 0x7fff3fad2ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders<br> 0x7fff408c9000 - 0x7fff408d5ff7 com.apple.NetFS (6.0 - 4.0) &lt;7278E8E5-1583-3964-91DA-FB2127DFD63A&gt; /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS<br> 0x7fff43373000 - 0x7fff433caff7 com.apple.opencl (2.15.3 - 2.15.3) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL<br> 0x7fff433cb000 - 0x7fff433e6ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) &lt;386A02AB-0BFA-3847-A56A-2E0EEC5E5D33&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory<br> 0x7fff433e7000 - 0x7fff433f2ffb com.apple.OpenDirectory (10.14 - 207.200.4) &lt;0BD19D17-7F00-3D56-8734-2EE52992B118&gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory<br> 0x7fff43d42000 - 0x7fff43d44fff libCVMSPluginSupport.dylib (17.5.4) &lt;36EB7FAE-4E66-36BF-9B39-623B19486B3B&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib<br> 0x7fff43d45000 - 0x7fff43d4aff3 libCoreFSCache.dylib (166.2) &lt;1AD45004-2625-3351-8087-77878B95348F&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib<br> 0x7fff43d4b000 - 0x7fff43d4ffff libCoreVMClient.dylib (166.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib<br> 0x7fff43d50000 - 0x7fff43d58ff7 libGFXShared.dylib (17.5.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib<br> 0x7fff43d59000 - 0x7fff43d64fff libGL.dylib (17.5.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib<br> 0x7fff43d65000 - 0x7fff43d9ffe7 libGLImage.dylib (17.5.4) &lt;7EE3273C-41C2-387F-A4B7-793EFAA67769&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib<br> 0x7fff43f13000 - 0x7fff43f51fff libGLU.dylib (17.5.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib<br> 0x7fff448ee000 - 0x7fff448fdffb com.apple.opengl (17.5.4 - 17.5.4) &lt;34FA5E8C-0FAF-3708-836B-E8ACB67EF4F4&gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL<br> 0x7fff44c78000 - 0x7fff44dc1ff7 com.apple.QTKit (7.7.3 - 3039) &lt;64E46C0B-C0B2-3255-9278-7FA90752B474&gt; /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit<br> 0x7fff44dc2000 - 0x7fff45016fff com.apple.imageKit (3.0 - 1067) &lt;42C1AB59-562B-3966-82A6-8380A6CD03C6&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit<br> 0x7fff45017000 - 0x7fff45103ffb com.apple.PDFKit (1.0 - 741.11) &lt;6431D029-59E3-3C2A-90C0-FD1355316F09&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit<br> 0x7fff45104000 - 0x7fff455d3ff7 com.apple.QuartzComposer (5.1 - 370) &lt;1F431ABC-16D3-3C0C-A027-5B83D1EC160D&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer<br> 0x7fff455d4000 - 0x7fff455faff7 com.apple.quartzfilters (1.10.0 - 83.1) &lt;0A29F81A-20DD-36A1-B61A-93B677220B84&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters<br> 0x7fff455fb000 - 0x7fff456fcff7 com.apple.QuickLookUIFramework (5.0 - 775.5) &lt;2AF16EB8-E39D-3144-A92B-932894734962&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI<br> 0x7fff456fd000 - 0x7fff456fdfff com.apple.quartzframework (1.5 - 23) &lt;30D153F2-A275-320E-B3CC-2A47FFEB5920&gt; /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz<br> 0x7fff456fe000 - 0x7fff45953fff com.apple.QuartzCore (1.11 - 697.24.4.2) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore<br> 0x7fff45954000 - 0x7fff459abfff com.apple.QuickLookFramework (5.0 - 775.5) &lt;3B6CF250-5DB7-36A0-9E57-33734DD66148&gt; /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook<br> 0x7fff45b72000 - 0x7fff45b89ff7 com.apple.SafariServices.framework (14607 - 14607.1.40.1.4) &lt;1D4D4939-DC6A-367C-A019-02294E13BA48&gt; /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices<br> 0x7fff4616e000 - 0x7fff46186fff com.apple.ScriptingBridge (1.4 - 78) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge<br> 0x7fff46187000 - 0x7fff46485ff7 com.apple.security (7.0 - 58286.251.4) &lt;2084C515-AD64-3A48-BE3E-811CAA5A0E41&gt; /System/Library/Frameworks/Security.framework/Versions/A/Security<br> 0x7fff46486000 - 0x7fff46512fff com.apple.securityfoundation (6.0 - 55185.251.1) &lt;4A36D3BA-02B5-3C52-8B49-08EC290E1924&gt; /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation<br> 0x7fff46513000 - 0x7fff46543ffb com.apple.securityinterface (10.0 - 55109.200.8) &lt;89019DE6-FC90-3947-9298-8D2B06D7C413&gt; /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface<br> 0x7fff46544000 - 0x7fff46548ff3 com.apple.xpc.ServiceManagement (1.0 - 1) &lt;139D85D7-C356-36FA-B8F4-696FD37FD1EA&gt; /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement<br> 0x7fff46796000 - 0x7fff467acffb com.apple.StoreKit (1.0 - 1) &lt;5F85D7AF-AD00-3179-8642-7562B83D4B61&gt; /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit<br> 0x7fff468e0000 - 0x7fff4694dfff com.apple.SystemConfiguration (1.17 - 1.17) &lt;90F4626B-F9F6-377C-AA62-B8C23E857244&gt; /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration<br> 0x7fff46ba3000 - 0x7fff46effff7 com.apple.VideoToolbox (1.0 - 2286.48) &lt;94A89B19-17C5-3085-8179-E832730B51C6&gt; /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox<br> 0x7fff49d62000 - 0x7fff49e07fe7 com.apple.APFS (1.0 - 1) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS<br> 0x7fff4a6a1000 - 0x7fff4a7ebff7 com.apple.AddressBook.core (1.0 - 1) &lt;4E3E6B43-026C-387A-9F09-77FBCD3952AE&gt; /System/Library/PrivateFrameworks/AddressBookCore.framework/Versions/A/AddressBookCore<br> 0x7fff4a807000 - 0x7fff4a808ff7 com.apple.AggregateDictionary (1.0 - 1) &lt;49B5FD7F-A50C-3D67-BFAB-1C25E60F685A&gt; /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary<br> 0x7fff4abbf000 - 0x7fff4ad02fff com.apple.AnnotationKit (1.0 - 232.3.30) &lt;83E8D694-3564-389A-AADB-37AD6C91EC9B&gt; /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit<br> 0x7fff4ae02000 - 0x7fff4ae2eff7 com.apple.framework.Apple80211 (13.0 - 1376.3) &lt;9D32EF36-80E0-35DA-9270-2865C91F1020&gt; /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211<br> 0x7fff4b106000 - 0x7fff4b115fc7 com.apple.AppleFSCompression (96.200.3 - 1.0) &lt;5D6A617C-999A-3D51-8350-109D55E9428A&gt; /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression<br> 0x7fff4b20f000 - 0x7fff4b21afff com.apple.AppleIDAuthSupport (1.0 - 1) &lt;91975ABC-B2EB-3630-A81E-69A1B95E4D19&gt; /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport<br> 0x7fff4b25b000 - 0x7fff4b2a4ff3 com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG<br> 0x7fff4b2a5000 - 0x7fff4b2b5fff com.apple.AppleLDAP (10.14 - 46.200.2) &lt;6F990458-C78F-316D-B430-03EAA1E28461&gt; /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP<br> 0x7fff4b4d5000 - 0x7fff4b4f2fff com.apple.aps.framework (4.0 - 4.0) &lt;485BC6C9-30F5-39D8-859B-25073714AC8A&gt; /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService<br> 0x7fff4b4f3000 - 0x7fff4b4f7ff7 com.apple.AppleSRP (5.0 - 1) &lt;6E0F8E86-1EEB-33B4-9126-42AC5574873A&gt; /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP<br> 0x7fff4b4f8000 - 0x7fff4b51afff com.apple.applesauce (1.0 - ???) &lt;48562D0B-1A1D-3D62-8BC2-61C55D0DCECE&gt; /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce<br> 0x7fff4b5da000 - 0x7fff4b5ddff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) &lt;38206770-87AF-3969-A393-2741BF0DC958&gt; /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo<br> 0x7fff4b5de000 - 0x7fff4b62eff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) &lt;30C1F5C1-0742-3863-95F1-FCE51DF97E2D&gt; /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA<br> 0x7fff4b679000 - 0x7fff4b68dffb com.apple.AssertionServices (1.0 - 1) /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices<br> 0x7fff4ba58000 - 0x7fff4bcf5ff7 com.apple.AuthKit (1.0 - 1) &lt;5BC0D7C7-A46A-3B1A-BDC9-7E9150B5A876&gt; /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit<br> 0x7fff4beb7000 - 0x7fff4bebffff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) &lt;7F48D9BD-17A8-3A76-8828-EC49245735EE&gt; /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement<br> 0x7fff4bec0000 - 0x7fff4bf55fff com.apple.backup.framework (1.10.4 - ???) &lt;8247B1BE-DF97-31DC-BCC2-1A15797352D3&gt; /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup<br> 0x7fff4bf56000 - 0x7fff4bfc3fff com.apple.BaseBoard (360.27 - 360.27) &lt;215A242E-BD57-3A4B-BCA4-FCC9D674CE7B&gt; /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard<br> 0x7fff4bfcc000 - 0x7fff4bfd2fff com.apple.BezelServicesFW (317 - 317) &lt;0C78843F-B503-372D-BA43-9A437E88D760&gt; /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices<br> 0x7fff4c049000 - 0x7fff4c085ff3 com.apple.bom (14.0 - 197.6) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom<br> 0x7fff4c734000 - 0x7fff4c760ffb com.apple.CalendarAgentLink (8.0 - 250) &lt;177A3F0A-A52B-3B32-8032-038881079025&gt; /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink<br> 0x7fff4ce21000 - 0x7fff4ce70ff7 com.apple.ChunkingLibrary (201 - 201) &lt;08B75C80-CAA3-3128-BE6C-A1FA3A52A79B&gt; /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary<br> 0x7fff4cf86000 - 0x7fff4d00bff7 com.apple.CloudDocs (1.0 - 575.302) &lt;46C7D508-D0C7-3728-B1C1-0FF3EA5CCFF3&gt; /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs<br> 0x7fff4dc28000 - 0x7fff4dc31ffb com.apple.CommonAuth (4.0 - 2.0) &lt;55CEF8E6-A659-3D68-BEE0-1236F36E494C&gt; /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth<br> 0x7fff4dc45000 - 0x7fff4dc5affb com.apple.commonutilities (8.0 - 900) &lt;2F945604-B4FA-3116-9AEE-0D216C283865&gt; /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities<br> 0x7fff4df02000 - 0x7fff4df64ff3 com.apple.AddressBook.ContactsFoundation (8.0 - ???) &lt;93716128-0595-3CF6-8744-B5186D360F0E&gt; /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation<br> 0x7fff4df65000 - 0x7fff4df88ff3 com.apple.contacts.ContactsPersistence (1.0 - ???) /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence<br> 0x7fff4e0ca000 - 0x7fff4e4adfef com.apple.CoreAUC (274.0.0 - 274.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC<br> 0x7fff4e4ae000 - 0x7fff4e4dcff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD<br> 0x7fff4e4fc000 - 0x7fff4e51afff com.apple.CoreAnalytics.CoreAnalytics (1.0 - 1) /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics<br> 0x7fff4e572000 - 0x7fff4e5cdff3 com.apple.corebrightness (1.0 - 1) /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness<br> 0x7fff4e704000 - 0x7fff4e70dfff com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon<br> 0x7fff4e907000 - 0x7fff4e918ff7 com.apple.CoreEmoji (1.0 - 69.19.9) &lt;90ACD3F0-1542-3094-A1F6-FF2F508A8561&gt; /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji<br> 0x7fff4eac0000 - 0x7fff4ebaffff com.apple.CoreHandwriting (161 - 1.2) &lt;7E01C62F-F8C2-3F21-B1E2-A048CF6FFC16&gt; /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting<br> 0x7fff4ed81000 - 0x7fff4ed97ffb com.apple.CoreMediaAuthoring (2.2 - 958) &lt;4C69C07C-73D1-3E5A-A8E1-3C5856A65D9A&gt; /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring<br> 0x7fff4eec1000 - 0x7fff4ef27ff7 com.apple.CoreNLP (1.0 - 130.15.22) &lt;5191A681-5DF3-359A-B401-C29109EA420A&gt; /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP<br> 0x7fff4f093000 - 0x7fff4f11ffff com.apple.CorePDF (4.0 - 414) /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF<br> 0x7fff4f1d4000 - 0x7fff4f1dcff7 com.apple.CorePhoneNumbers (1.0 - 1) &lt;01CAC5E2-B6B1-3444-8939-595A9301399C&gt; /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers<br> 0x7fff4f358000 - 0x7fff4f389ff3 com.apple.CoreServicesInternal (358 - 358) &lt;7DD35528-033B-3B59-AAF2-5BFAF449D915&gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal<br> 0x7fff4f74f000 - 0x7fff4f7d3fff com.apple.CoreSymbolication (10.2 - 64490.25.1) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication<br> 0x7fff4f862000 - 0x7fff4f98dff7 com.apple.coreui (2.1 - 499.10) &lt;50A90628-5400-3EBC-A1FE-87D68BC59377&gt; /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI<br> 0x7fff4f98e000 - 0x7fff4fb2affb com.apple.CoreUtils (5.7.6 - 576.49) &lt;60FF6102-EEBB-302E-8DE4-6DCBB689ACC8&gt; /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils<br> 0x7fff4fb7e000 - 0x7fff4fbe1ff7 com.apple.framework.CoreWiFi (13.0 - 1370.8) /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi<br> 0x7fff4fbe2000 - 0x7fff4fbf3ff7 com.apple.CrashReporterSupport (10.13 - 938.25) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport<br> 0x7fff4fc82000 - 0x7fff4fc91fff com.apple.framework.DFRFoundation (1.0 - 211.1) &lt;201CCA68-44E4-3E09-8604-7D8833AC803B&gt; /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation<br> 0x7fff4fc92000 - 0x7fff4fc96fff com.apple.DSExternalDisplay (3.1 - 380) &lt;6AC4F805-7AAF-31D3-B614-C78B61907EE3&gt; /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay<br> 0x7fff4fd17000 - 0x7fff4fd8cff3 com.apple.datadetectorscore (7.0 - 590.24) &lt;2A591F27-0FEE-3CE1-B6C3-7A3B56C9D18D&gt; /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore<br> 0x7fff4fdd8000 - 0x7fff4fe15ff7 com.apple.DebugSymbols (190 - 190) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols<br> 0x7fff4fe16000 - 0x7fff4ff51fff com.apple.desktopservices (1.13.1 - ???) &lt;420CC09F-7C18-3644-A024-DA8997FECA02&gt; /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv<br> 0x7fff5015d000 - 0x7fff50223fff com.apple.DiskManagement (12.1 - 1555) &lt;14459C59-D53A-3C24-94CC-D60CD1749FDB&gt; /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement<br> 0x7fff50224000 - 0x7fff50228ffb com.apple.DisplayServicesFW (3.1 - 380) /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices<br> 0x7fff502cd000 - 0x7fff502d0ff3 com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin<br> 0x7fff50a06000 - 0x7fff50ce8ff7 com.apple.vision.EspressoFramework (1.0 - 120) &lt;606AFD0D-D2DF-335C-915D-87A862C46765&gt; /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso<br> 0x7fff50e8c000 - 0x7fff512a7fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore<br> 0x7fff512d8000 - 0x7fff5135dff7 com.apple.FileProvider (125.130 - 125.130) &lt;30851CFB-6179-3BFB-A93E-EC9B0C97F50F&gt; /System/Library/PrivateFrameworks/FileProvider.framework/Versions/A/FileProvider<br> 0x7fff54b5b000 - 0x7fff54b5cfff libmetal_timestamp.dylib (902.3.2) /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib<br> 0x7fff561fc000 - 0x7fff56201fff com.apple.GPUWrangler (3.30.14 - 3.30.14) &lt;5D15F5B8-9D7B-356D-A224-A86CF809BFBF&gt; /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler<br> 0x7fff5658e000 - 0x7fff565b2ff3 com.apple.GenerationalStorage (2.0 - 285.101) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage<br> 0x7fff565cb000 - 0x7fff56fc4fff com.apple.GeoServices (1.0 - 1364.24.8.24.47) &lt;7A0FB79F-E311-3805-A8E2-C5E0176736DA&gt; /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices<br> 0x7fff57006000 - 0x7fff57015fff com.apple.GraphVisualizer (1.0 - 5) /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer<br> 0x7fff57162000 - 0x7fff571d6ffb com.apple.Heimdal (4.0 - 2.0) &lt;05B753FE-8F65-3764-8E18-F31902064BA1&gt; /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal<br> 0x7fff571d7000 - 0x7fff57205fff com.apple.HelpData (2.3 - 184.4) &lt;37EC79E3-5D56-3733-856C-5DB46CC9453B&gt; /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData<br> 0x7fff584c0000 - 0x7fff584c7ffb com.apple.IOAccelerator (404.8 - 404.8) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator<br> 0x7fff584cb000 - 0x7fff584e3fff com.apple.IOPresentment (1.0 - 42.6) /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment<br> 0x7fff5888b000 - 0x7fff588b8ff7 com.apple.IconServices (379 - 379) &lt;189807AC-4BB1-3C37-B6EC-D4F0B645902D&gt; /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices<br> 0x7fff589e1000 - 0x7fff589e5ffb com.apple.InternationalSupport (1.0 - 10.15.6) /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport<br> 0x7fff58a4f000 - 0x7fff58a5cffb com.apple.IntlPreferences (2.0 - 227.17.1) &lt;17AE2DAE-0295-3133-B51F-DEC8FEC2F0F8&gt; /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences<br> 0x7fff58b4a000 - 0x7fff58b5cff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) &lt;731EEEC5-1613-3725-B33C-B38BBD55FA96&gt; /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle<br> 0x7fff58b77000 - 0x7fff58c52ff7 com.apple.LanguageModeling (1.0 - 159.15.15) &lt;229A8E92-CCB6-3BC7-BCD3-B2309FA744B3&gt; /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling<br> 0x7fff58c53000 - 0x7fff58c8fff7 com.apple.Lexicon-framework (1.0 - 33.15.10) &lt;30D3EEF3-31E5-3DE8-8158-40627C358AF6&gt; /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon<br> 0x7fff58c96000 - 0x7fff58c9bfff com.apple.LinguisticData (1.0 - 238.24.1) /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData<br> 0x7fff594b8000 - 0x7fff594bbfff com.apple.Mangrove (1.0 - 25) /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove<br> 0x7fff59542000 - 0x7fff59568ff3 com.apple.MarkupUI (1.0 - 232.3.30) /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI<br> 0x7fff595d0000 - 0x7fff59603ff7 com.apple.MediaKit (16 - 906) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit<br> 0x7fff5998a000 - 0x7fff599b2ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.56) &lt;550876F2-D905-3D65-8FA6-3366D857437B&gt; /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities<br> 0x7fff599b3000 - 0x7fff59a3dfff com.apple.gpusw.MetalTools (1.0 - 1) &lt;09394594-A80D-3D8B-99E8-E71693909FA1&gt; /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools<br> 0x7fff59a52000 - 0x7fff59a6bffb com.apple.MobileAssets (1.0 - 437.250.3) &lt;95ACB386-7899-3661-BE5B-7E3133FE971B&gt; /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset<br> 0x7fff59be9000 - 0x7fff59c03fff com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag<br> 0x7fff59c15000 - 0x7fff59c8afff com.apple.Montreal (1.0 - 42.15.9) &lt;84278E37-0BA4-32D2-BAA4-49D84831588D&gt; /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal<br> 0x7fff59c8b000 - 0x7fff59cb5ffb com.apple.MultitouchSupport.framework (2440.7 - 2440.7) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport<br> 0x7fff59ef1000 - 0x7fff59efbfff com.apple.NetAuth (6.2 - 6.2) &lt;216DF366-7A3E-39E7-896C-7CDFD2A9BD3D&gt; /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth<br> 0x7fff5a75c000 - 0x7fff5a7adff3 com.apple.OTSVG (1.0 - ???) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG<br> 0x7fff5b76d000 - 0x7fff5b860fff com.apple.PencilKit (1.0 - 1) /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit<br> 0x7fff5b861000 - 0x7fff5b870ff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis<br> 0x7fff5ba97000 - 0x7fff5ba97fff com.apple.PhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers<br> 0x7fff5d29f000 - 0x7fff5d2b0ffb com.apple.PowerLog (1.0 - 1) &lt;10082A63-C0F0-3A88-B47A-1DC14108B57E&gt; /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog<br> 0x7fff5d508000 - 0x7fff5d517fff com.apple.printingprivate.framework.PrintingPrivate (14.0 - 180.3) &lt;52B608D7-4347-39A3-A7C1-5F14C8467EE2&gt; /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/PrintingPrivate<br> 0x7fff5d6ab000 - 0x7fff5d6ffff7 com.apple.ProtectedCloudStorage (1.0 - 1) &lt;7EEE25C8-2680-32E1-9B4F-F76684E92BE1&gt; /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage<br> 0x7fff5d700000 - 0x7fff5d71eff7 com.apple.ProtocolBuffer (1 - 263) &lt;51266D17-7AB5-3741-BF76-FA7F3FE56D12&gt; /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer<br> 0x7fff5d89c000 - 0x7fff5d89fff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) &lt;8C160EB3-161F-3F35-9D10-C06403BC31F1&gt; /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem<br> 0x7fff5d8a0000 - 0x7fff5d8b5ff3 com.apple.QuickLookThumbnailing (1.0 - 1) &lt;2A637CF5-E50A-3016-88CB-F03F32662886&gt; /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing<br> 0x7fff5d8b6000 - 0x7fff5d906fff com.apple.ROCKit (27.6 - 27.6) /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit<br> 0x7fff5da35000 - 0x7fff5da40fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.251.2) &lt;937941A3-23E9-3DB4-B934-C8002EF1179D&gt; /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery<br> 0x7fff5da53000 - 0x7fff5da75fff com.apple.RemoteViewServices (2.0 - 128) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices<br> 0x7fff5da76000 - 0x7fff5da89ff3 com.apple.xpc.RemoteXPC (1.0 - 1336.251.2) &lt;45A2C9B1-787E-3BF8-AFB8-375822FC6AF4&gt; /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC<br> 0x7fff5f274000 - 0x7fff5f38efff com.apple.Sharing (1288.25 - 1288.25) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing<br> 0x7fff5f38f000 - 0x7fff5f3aeffb com.apple.shortcut (2.16 - 101) &lt;087A0F80-1818-3D93-A9D5-942F94C26D8E&gt; /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut<br> 0x7fff60136000 - 0x7fff603dffff com.apple.SkyLight (1.600.0 - 340.9) /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight<br> 0x7fff60b81000 - 0x7fff60b8dfff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) &lt;08222836-F14B-3B9D-BCB9-3167505438E4&gt; /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore<br> 0x7fff60c3f000 - 0x7fff60ea2ff3 com.apple.spotlight.index (10.7.0 - 1191.56) &lt;79DE4A4A-C589-3169-B75D-F0B2B01C2C72&gt; /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex<br> 0x7fff6122c000 - 0x7fff61268ff3 com.apple.StreamingZip (1.0 - 1) /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip<br> 0x7fff612de000 - 0x7fff61369fc7 com.apple.Symbolication (10.2 - 64490.38.1) &lt;15A1DF22-3EE2-359A-8F94-B27F89F35ECE&gt; /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication<br> 0x7fff6136a000 - 0x7fff61372ffb com.apple.SymptomDiagnosticReporter (1.0 - 820.257.1) /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter<br> 0x7fff61840000 - 0x7fff6184bff7 com.apple.private.SystemPolicy (1.0 - 1) &lt;7E43EFF3-41AC-3AF2-A2FD-1AE013FF32E6&gt; /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy<br> 0x7fff61850000 - 0x7fff6185cffb com.apple.TCC (1.0 - 1) &lt;95D4B7DF-78F3-3948-AA63-6425AF2C00CD&gt; /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC<br> 0x7fff61ac2000 - 0x7fff61b8aff3 com.apple.TextureIO (3.8.4 - 3.8.1) &lt;29383676-6133-3EB4-8CAC-5A6F25FE2F4D&gt; /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO<br> 0x7fff61be7000 - 0x7fff61c02fff com.apple.ToneKit (1.0 - 1) &lt;07E8BA17-0A78-3305-B247-728687222975&gt; /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit<br> 0x7fff61c03000 - 0x7fff61c28ff7 com.apple.ToneLibrary (1.0 - 1) &lt;722092E6-C0E6-3AD4-A870-5C4E1CF2B388&gt; /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary<br> 0x7fff61c47000 - 0x7fff61dfdff7 com.apple.UIFoundation (1.0 - 551) &lt;5359E30D-AF76-3013-8B50-0A93DB97BB8F&gt; /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation<br> 0x7fff62a79000 - 0x7fff62b52fff com.apple.ViewBridge (401.1 - 401.1) &lt;4DAA256D-F443-3484-AB8B-BFD939790E1D&gt; /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge<br> 0x7fff63329000 - 0x7fff6332cfff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.46.2) &lt;7763C799-CE25-302D-96D7-2A4DD9BEEE9A&gt; /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap<br> 0x7fff6372d000 - 0x7fff6372fffb com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport<br> 0x7fff63730000 - 0x7fff63745fff com.apple.login (3.0 - 3.0) /System/Library/PrivateFrameworks/login.framework/Versions/A/login<br> 0x7fff6377c000 - 0x7fff637adffb com.apple.contacts.vCard (1.0 - ???) &lt;4A802015-F485-3B44-8770-DB31714355A0&gt; /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard<br> 0x7fff639f6000 - 0x7fff63a2afff libCRFSuite.dylib (41.15.4) &lt;43D02A64-2A7B-3825-8097-A6747AF914EE&gt; /usr/lib/libCRFSuite.dylib<br> 0x7fff63a2d000 - 0x7fff63a37ff7 libChineseTokenizer.dylib (28.15.3) /usr/lib/libChineseTokenizer.dylib<br> 0x7fff63a38000 - 0x7fff63ac1fff libCoreStorage.dylib (546.50.1) &lt;1950AEDB-8782-39C9-9477-CB43ECB0EB38&gt; /usr/lib/libCoreStorage.dylib<br> 0x7fff63ac5000 - 0x7fff63ac6ffb libDiagnosticMessagesClient.dylib (107) /usr/lib/libDiagnosticMessagesClient.dylib<br> 0x7fff63afd000 - 0x7fff63d54ffb libFosl_dynamic.dylib (18.3.2) /usr/lib/libFosl_dynamic.dylib<br> 0x7fff63d74000 - 0x7fff63d7bfff libMatch.1.dylib (31.200.1) &lt;895AE4DA-69EF-30E8-82B3-1229B90C3E3D&gt; /usr/lib/libMatch.1.dylib<br> 0x7fff63da5000 - 0x7fff63dc3fff libMobileGestalt.dylib (645.250.13) &lt;6B4E26AD-D712-360B-904C-877C24D89393&gt; /usr/lib/libMobileGestalt.dylib<br> 0x7fff63dc4000 - 0x7fff63dc4fff libOpenScriptingUtil.dylib (179.1) &lt;5C6CFA80-CBCD-35EB-A69C-72C3B2E8FF50&gt; /usr/lib/libOpenScriptingUtil.dylib<br> 0x7fff63f04000 - 0x7fff63f05ffb libSystem.B.dylib (1252.250.1) &lt;72841192-B0C9-36A0-8E55-ED651EADEF08&gt; /usr/lib/libSystem.B.dylib<br> 0x7fff63f81000 - 0x7fff63f82fff libThaiTokenizer.dylib (2.15.1) &lt;3D80A800-D49A-305E-9DF0-E6FB11D4FD65&gt; /usr/lib/libThaiTokenizer.dylib<br> 0x7fff63f94000 - 0x7fff63faaffb libapple_nghttp2.dylib (1.24.1) &lt;96F6DF29-D31C-3097-9C3E-63B1D62D756C&gt; /usr/lib/libapple_nghttp2.dylib<br> 0x7fff63fab000 - 0x7fff63fd4ffb libarchive.2.dylib (54.250.1) /usr/lib/libarchive.2.dylib<br> 0x7fff63fd5000 - 0x7fff64054fff libate.dylib (1.13.8) /usr/lib/libate.dylib<br> 0x7fff64058000 - 0x7fff64058ff3 libauto.dylib (187) &lt;4E260A46-13BB-3A8F-A037-D89748837B2A&gt; /usr/lib/libauto.dylib<br> 0x7fff64128000 - 0x7fff64138ffb libbsm.0.dylib (39.200.18) /usr/lib/libbsm.0.dylib<br> 0x7fff64139000 - 0x7fff64146fff libbz2.1.0.dylib (38.200.3) &lt;62019AC3-20C9-3DDC-9C83-189C1F258073&gt; /usr/lib/libbz2.1.0.dylib<br> 0x7fff64147000 - 0x7fff6419aff7 libc++.1.dylib (400.9.4) &lt;446DAE5E-4E97-3E4B-B2A3-AC0A74C0E453&gt; /usr/lib/libc++.1.dylib<br> 0x7fff6419b000 - 0x7fff641b0ff7 libc++abi.dylib (400.17) /usr/lib/libc++abi.dylib<br> 0x7fff641b1000 - 0x7fff641b1ff3 libcharset.1.dylib (51.200.6) &lt;0D3A5F4C-8800-33E3-AFE5-307E8BEE462C&gt; /usr/lib/libcharset.1.dylib<br> 0x7fff641b2000 - 0x7fff641c2ffb libcmph.dylib (6.15.1) &lt;740A788E-FD92-36F3-B678-E7D510B1E2A1&gt; /usr/lib/libcmph.dylib<br> 0x7fff641c3000 - 0x7fff641dbffb libcompression.dylib (52.250.2) &lt;9E125D43-CE4E-34F8-ACBA-C0835E5F8062&gt; /usr/lib/libcompression.dylib<br> 0x7fff64450000 - 0x7fff64466fff libcoretls.dylib (155.220.1) /usr/lib/libcoretls.dylib<br> 0x7fff64467000 - 0x7fff64468ff3 libcoretls_cfhelpers.dylib (155.220.1) &lt;51572EB9-D154-348B-9934-3CA9444FAE5E&gt; /usr/lib/libcoretls_cfhelpers.dylib<br> 0x7fff64ac7000 - 0x7fff64ad2ff7 libcsfde.dylib (546.50.1) /usr/lib/libcsfde.dylib<br> 0x7fff64ada000 - 0x7fff64b30ff7 libcups.2.dylib (462.10) &lt;83EF6851-07F6-35B4-AA80-690EF026C706&gt; /usr/lib/libcups.2.dylib<br> 0x7fff64c64000 - 0x7fff64c64fff libenergytrace.dylib (17.200.1) /usr/lib/libenergytrace.dylib<br> 0x7fff64c65000 - 0x7fff64c7effb libexpat.1.dylib (16.1.1) /usr/lib/libexpat.1.dylib<br> 0x7fff64c96000 - 0x7fff64c9bff7 libgermantok.dylib (17.15.2) /usr/lib/libgermantok.dylib<br> 0x7fff64c9c000 - 0x7fff64ca1ff7 libheimdal-asn1.dylib (520.250.1) /usr/lib/libheimdal-asn1.dylib<br> 0x7fff64ccc000 - 0x7fff64dbcfff libiconv.2.dylib (51.200.6) /usr/lib/libiconv.2.dylib<br> 0x7fff64dbd000 - 0x7fff6501dff3 libicucore.A.dylib (62123.0.1) &lt;3936C798-1978-3C6C-9050-3BBD57CDA53E&gt; /usr/lib/libicucore.A.dylib<br> 0x7fff6506a000 - 0x7fff6506bfff liblangid.dylib (128.15.1) &lt;1ED2EB78-3891-3DBA-8CB7-BA1A100CFC8F&gt; /usr/lib/liblangid.dylib<br> 0x7fff6506c000 - 0x7fff65084ff3 liblzma.5.dylib (10.200.3) /usr/lib/liblzma.5.dylib<br> 0x7fff6509c000 - 0x7fff65140ff7 libmecab.1.0.0.dylib (779.24.1) &lt;0C57BF6E-A713-3AE8-8AD3-80F65D4CCC15&gt; /usr/lib/libmecab.1.0.0.dylib<br> 0x7fff65141000 - 0x7fff65345fff libmecabra.dylib (779.24.1) /usr/lib/libmecabra.dylib<br> 0x7fff6551d000 - 0x7fff6586eff7 libnetwork.dylib (1229.250.15) /usr/lib/libnetwork.dylib<br> 0x7fff658fe000 - 0x7fff66083fdf libobjc.A.dylib (756.2) &lt;4F86FC7C-496B-3E68-8A74-1EA2BA22FBCC&gt; /usr/lib/libobjc.A.dylib<br> 0x7fff66095000 - 0x7fff66099ffb libpam.2.dylib (22.200.1) &lt;3AEB13DB-8DE2-3FD9-97D5-D9DB206E0693&gt; /usr/lib/libpam.2.dylib<br> 0x7fff6609c000 - 0x7fff660d1fff libpcap.A.dylib (79.250.1) /usr/lib/libpcap.A.dylib<br> 0x7fff661ea000 - 0x7fff66202ffb libresolv.9.dylib (65.200.2) /usr/lib/libresolv.9.dylib<br> 0x7fff66204000 - 0x7fff6623fff3 libsandbox.1.dylib (851.250.12) &lt;0A18B79B-4551-3D97-AC49-04E5373DC587&gt; /usr/lib/libsandbox.1.dylib<br> 0x7fff66240000 - 0x7fff66252ff7 libsasl2.2.dylib (211) &lt;0B38826F-A082-38EF-ADE8-B23F98FBF44F&gt; /usr/lib/libsasl2.2.dylib<br> 0x7fff66253000 - 0x7fff66254ff7 libspindump.dylib (267.3) &lt;47B91C83-6BE6-3B0B-8B42-83AE41160F3F&gt; /usr/lib/libspindump.dylib<br> 0x7fff66255000 - 0x7fff66432fe7 libsqlite3.dylib (274.22) &lt;378D7B48-4661-3BA6-AC55-0B3A64F8C7E3&gt; /usr/lib/libsqlite3.dylib<br> 0x7fff666b2000 - 0x7fff666b5ff7 libutil.dylib (51.200.4) &lt;336F9184-A739-3770-ACFA-4659DFEEACC4&gt; /usr/lib/libutil.dylib<br> 0x7fff666b6000 - 0x7fff666c3fff libxar.1.dylib (417.1) /usr/lib/libxar.1.dylib<br> 0x7fff666c8000 - 0x7fff667aaff3 libxml2.2.dylib (32.8) &lt;064C2F49-C054-38F9-A6B2-032C4AC9738B&gt; /usr/lib/libxml2.2.dylib<br> 0x7fff667ab000 - 0x7fff667d3ff3 libxslt.1.dylib (16.1) /usr/lib/libxslt.1.dylib<br> 0x7fff667d4000 - 0x7fff667e6ff7 libz.1.dylib (70.200.4) /usr/lib/libz.1.dylib<br> 0x7fff66fc3000 - 0x7fff66fc7ff3 libcache.dylib (81) &lt;9A8C27B0-49C9-337F-8BE2-37171ED2D8EE&gt; /usr/lib/system/libcache.dylib<br> 0x7fff66fc8000 - 0x7fff66fd2ff3 libcommonCrypto.dylib (60118.250.2) &lt;17C4F395-9FF0-331F-8167-5E85AA3588E9&gt; /usr/lib/system/libcommonCrypto.dylib<br> 0x7fff66fd3000 - 0x7fff66fdaff7 libcompiler_rt.dylib (63.4) &lt;8CB2B2B6-2C55-3733-9842-0E037AE3F46A&gt; /usr/lib/system/libcompiler_rt.dylib<br> 0x7fff66fdb000 - 0x7fff66fe4ff7 libcopyfile.dylib (146.250.1) &lt;24905E41-9E2F-3DD1-A255-5A17F9FCDAD7&gt; /usr/lib/system/libcopyfile.dylib<br> 0x7fff66fe5000 - 0x7fff67069fc7 libcorecrypto.dylib (602.250.23) &lt;3A6CBD41-AFFE-3E06-B1EC-3E95BC79BAC5&gt; /usr/lib/system/libcorecrypto.dylib<br> 0x7fff670f0000 - 0x7fff67129ff7 libdispatch.dylib (1008.250.7) &lt;50235FCE-B399-3319-90DC-88F530D4FC5C&gt; /usr/lib/system/libdispatch.dylib<br> 0x7fff6712a000 - 0x7fff67156ff7 libdyld.dylib (655.1.1) &lt;54C6B494-4A3D-3EEC-B083-636A76AAD649&gt; /usr/lib/system/libdyld.dylib<br> 0x7fff67157000 - 0x7fff67157ffb libkeymgr.dylib (30) /usr/lib/system/libkeymgr.dylib<br> 0x7fff67158000 - 0x7fff67164ff3 libkxld.dylib (4903.251.3) &lt;649F5829-6AA8-32EE-9A33-B1244378C319&gt; /usr/lib/system/libkxld.dylib<br> 0x7fff67165000 - 0x7fff67165ff7 liblaunch.dylib (1336.251.2) &lt;30E6424E-4640-3DBA-9B64-D5F725263C6E&gt; /usr/lib/system/liblaunch.dylib<br> 0x7fff67166000 - 0x7fff6716bfff libmacho.dylib (927.0.2) /usr/lib/system/libmacho.dylib<br> 0x7fff6716c000 - 0x7fff6716effb libquarantine.dylib (86.220.1) &lt;8A9BF971-DB7D-311A-B131-6C5025E82F8F&gt; /usr/lib/system/libquarantine.dylib<br> 0x7fff6716f000 - 0x7fff67170ff7 libremovefile.dylib (45.200.2) &lt;950036B7-B91E-3B5D-853C-8C551E5B6A32&gt; /usr/lib/system/libremovefile.dylib<br> 0x7fff67171000 - 0x7fff67188ff3 libsystem_asl.dylib (356.200.4) &lt;16F632AD-FADA-3DE9-85E8-EBC7D619A1DA&gt; /usr/lib/system/libsystem_asl.dylib<br> 0x7fff67189000 - 0x7fff67189ff7 libsystem_blocks.dylib (73) &lt;0CD6861B-EC5F-3345-9C24-B21EEB85E44F&gt; /usr/lib/system/libsystem_blocks.dylib<br> 0x7fff6718a000 - 0x7fff67211fff libsystem_c.dylib (1272.250.1) /usr/lib/system/libsystem_c.dylib<br> 0x7fff67212000 - 0x7fff67215ffb libsystem_configuration.dylib (963.250.1) &lt;02C7A973-014A-31D7-B7D2-247D384CB0D2&gt; /usr/lib/system/libsystem_configuration.dylib<br> 0x7fff67216000 - 0x7fff67219ff7 libsystem_coreservices.dylib (66) &lt;4CF1C89B-FA6C-3DF3-B1F8-79F549849534&gt; /usr/lib/system/libsystem_coreservices.dylib<br> 0x7fff6721a000 - 0x7fff67220fff libsystem_darwin.dylib (1272.250.1) &lt;6983A268-20F4-3F98-A3F5-D63848933B02&gt; /usr/lib/system/libsystem_darwin.dylib<br> 0x7fff67221000 - 0x7fff67227ff7 libsystem_dnssd.dylib (878.250.4) &lt;9FC5724C-DD03-3E14-A6E1-2DD009D79E0A&gt; /usr/lib/system/libsystem_dnssd.dylib<br> 0x7fff67228000 - 0x7fff67273ffb libsystem_info.dylib (517.200.9) /usr/lib/system/libsystem_info.dylib<br> 0x7fff67274000 - 0x7fff6729cff7 libsystem_kernel.dylib (4903.251.3) &lt;84EF0290-6CB5-36E5-A273-692A7E437B36&gt; /usr/lib/system/libsystem_kernel.dylib<br> 0x7fff6729d000 - 0x7fff672e8ff7 libsystem_m.dylib (3158.200.7) &lt;33105665-CCC3-36D5-82C9-9B21730CB3DF&gt; /usr/lib/system/libsystem_m.dylib<br> 0x7fff672e9000 - 0x7fff6730dfff libsystem_malloc.dylib (166.251.2) &lt;90DA09E3-1276-3FCF-8F5F-C9AA61AB9B6D&gt; /usr/lib/system/libsystem_malloc.dylib<br> 0x7fff6730e000 - 0x7fff67318ff7 libsystem_networkextension.dylib (767.250.2) &lt;4575D797-B793-3D18-9E93-8696CF0B133B&gt; /usr/lib/system/libsystem_networkextension.dylib<br> 0x7fff67319000 - 0x7fff67320fff libsystem_notify.dylib (172.200.21) &lt;679E9132-1A46-326E-9A11-D3FF9C86041C&gt; /usr/lib/system/libsystem_notify.dylib<br> 0x7fff67321000 - 0x7fff6732afef libsystem_platform.dylib (177.250.1) &lt;3CC59141-5365-3848-94C3-D65E6FCA1E74&gt; /usr/lib/system/libsystem_platform.dylib<br> 0x7fff6732b000 - 0x7fff67335ff7 libsystem_pthread.dylib (330.250.2) &lt;4344198A-A1A3-3C52-97B4-F168D56E9789&gt; /usr/lib/system/libsystem_pthread.dylib<br> 0x7fff67336000 - 0x7fff67339ff7 libsystem_sandbox.dylib (851.250.12) &lt;66E91015-F62A-3365-BB81-AA88707E8F12&gt; /usr/lib/system/libsystem_sandbox.dylib<br> 0x7fff6733a000 - 0x7fff6733cff3 libsystem_secinit.dylib (30.220.1) /usr/lib/system/libsystem_secinit.dylib<br> 0x7fff6733d000 - 0x7fff67344ff3 libsystem_symptoms.dylib (820.257.1) /usr/lib/system/libsystem_symptoms.dylib<br> 0x7fff67345000 - 0x7fff6735afff libsystem_trace.dylib (906.250.5) /usr/lib/system/libsystem_trace.dylib<br> 0x7fff6735c000 - 0x7fff67361ffb libunwind.dylib (35.4) &lt;8F0BC197-B97C-3DDC-92B0-6A7D3CB72FD8&gt; /usr/lib/system/libunwind.dylib<br> 0x7fff67362000 - 0x7fff67391ff7 libxpc.dylib (1336.251.2) &lt;49138829-09C8-355C-B558-97E070B84EC5&gt; /usr/lib/system/libxpc.dylib</p> <p dir="auto">External Modification Summary:<br> Calls made by other processes targeting this process:<br> task_for_pid: 0<br> thread_create: 0<br> thread_set_state: 0<br> Calls made by this process:<br> task_for_pid: 0<br> thread_create: 0<br> thread_set_state: 0<br> Calls made by all processes on this machine:<br> task_for_pid: 796398<br> thread_create: 0<br> thread_set_state: 0</p> <p dir="auto">VM Region Summary:<br> ReadOnly portion of Libraries: Total=556.7M resident=0K(0%) swapped_out_or_unallocated=556.7M(100%)<br> Writable regions: Total=303.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=303.3M(100%)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" VIRTUAL REGION "><pre class="notranslate"><code class="notranslate"> VIRTUAL REGION </code></pre></div> <p dir="auto">REGION TYPE SIZE COUNT (non-coalesced)<br> =========== ======= =======<br> Accelerate framework 384K 3<br> Activity Tracing 256K 1<br> CG backing stores 992K 2<br> CG image 140K 14<br> CoreAnimation 124K 9<br> CoreGraphics 8K 1<br> CoreImage 24K 2<br> CoreUI image data 2024K 20<br> CoreUI image file 352K 5<br> Dispatch continuations 8192K 1<br> Foundation 44K 3<br> IOKit 7940K 1<br> Image IO 64K 1<br> Kernel Alloc Once 8K 1<br> MALLOC 63.3M 45<br> MALLOC guard page 32K 8<br> Memory Tag 242 12K 1<br> Memory Tag 255 137.1M 44<br> PROTECTED_MEMORY 4K 1<br> STACK GUARD 56.1M 35<br> Stack 219.3M 35<br> VM_ALLOCATE 1292K 17<br> __DATA 42.9M 340<br> __FONT_DATA 4K 1<br> __LINKEDIT 224.1M 11<br> __TEXT 332.6M 343<br> __UNICODE 564K 1<br> mapped file 102.0M 36<br> shared memory 2792K 10<br> =========== ======= =======<br> TOTAL 1.2G 992</p> <p dir="auto">Model: MacBookPro12,1, BootROM 182.0.0.0.0, 2 processors, Intel Core i5, 2.7 GHz, 8 GB, SMC 2.28f7<br> Graphics: kHW_IntelIris6100Item, Intel Iris Graphics 6100, spdisplays_builtin<br> Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1867 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5544<br> Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1867 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5544<br> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x133), Broadcom BCM43xx 1.0 (7.77.61.2 AirPortDriverBrcmNIC-1305.8)<br> Bluetooth: Version 6.0.11f4, 3 services, 27 devices, 1 incoming serial ports<br> Network Service: Wi-Fi, AirPort, en0<br> Serial ATA Device: APPLE SSD SM0256G, 251 GB<br> USB Device: USB 3.0 Bus<br> USB Device: Bluetooth USB Host Controller<br> Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1</p> </details> <p dir="auto">I would guess this is a regression from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="456394983" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/18804" data-hovercard-type="pull_request" data-hovercard-url="/electron/electron/pull/18804/hovercard" href="https://github.com/electron/electron/pull/18804">#18804</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="421649883" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/17400" data-hovercard-type="pull_request" data-hovercard-url="/electron/electron/pull/17400/hovercard" href="https://github.com/electron/electron/pull/17400">#17400</a>)?</p>
1
<p dir="auto">I'm trying to use a constant at compile time to define the length of some vectors:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* Gamma ramps */ const GLFW_GAMMA_RAMP_SIZE : int = 256; /* Gamma ramp */ struct GLFWgammaramp { red : [c_ushort * GLFW_GAMMA_RAMP_SIZE], // unsigned short red[GLFW_GAMMA_RAMP_SIZE]; green : [c_ushort * GLFW_GAMMA_RAMP_SIZE], // unsigned short green[GLFW_GAMMA_RAMP_SIZE]; blue : [c_ushort * GLFW_GAMMA_RAMP_SIZE] // unsigned short blue[GLFW_GAMMA_RAMP_SIZE]; }"><pre class="notranslate"><code class="notranslate">/* Gamma ramps */ const GLFW_GAMMA_RAMP_SIZE : int = 256; /* Gamma ramp */ struct GLFWgammaramp { red : [c_ushort * GLFW_GAMMA_RAMP_SIZE], // unsigned short red[GLFW_GAMMA_RAMP_SIZE]; green : [c_ushort * GLFW_GAMMA_RAMP_SIZE], // unsigned short green[GLFW_GAMMA_RAMP_SIZE]; blue : [c_ushort * GLFW_GAMMA_RAMP_SIZE] // unsigned short blue[GLFW_GAMMA_RAMP_SIZE]; } </code></pre></div> <p dir="auto">(code from <a href="https://github.com/bjz/glfw3-rs/blob/master/glfw3.rs#L389">glfw3-rs</a>)</p> <p dir="auto">I get this error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" % rustc test.rs test.rs:6:26: 6:46 error: expected `]` but found `GLFW_GAMMA_RAMP_SIZE` test.rs:6 red : [c_ushort * GLFW_GAMMA_RAMP_SIZE], // unsigned short red[GLFW_GAMMA_RAMP_SIZE];"><pre class="notranslate"><code class="notranslate"> % rustc test.rs test.rs:6:26: 6:46 error: expected `]` but found `GLFW_GAMMA_RAMP_SIZE` test.rs:6 red : [c_ushort * GLFW_GAMMA_RAMP_SIZE], // unsigned short red[GLFW_GAMMA_RAMP_SIZE]; </code></pre></div> <p dir="auto">Is this a bug or by design?</p>
<p dir="auto">The <code class="notranslate">format_args!</code> built-in macro currently generates structures located in <code class="notranslate">std::fmt</code>, which makes it difficult to use with libcore, even though libcore has the correct traits to read the generated structure.<br> IMO it would be more logical to use core::fmt instead if possible.</p> <p dir="auto">It gives the following errors:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="rust/main.rs:53:52: 53:55 error: failed to resolve. Maybe a missing `extern crate std`? rust/main.rs:53 core::fmt::write(&amp;mut uart, format_args!(&quot;{}&quot;, 42u64)); ^~~ note: in expansion of format_args! rust/main.rs:53:33: 53:59 note: expansion site rust/main.rs:53:52: 53:57 error: unresolved name `std::fmt::String::fmt` rust/main.rs:53 core::fmt::write(&amp;mut uart, format_args!(&quot;{}&quot;, 42u64)); ^~~~~ note: in expansion of format_args! rust/main.rs:53:33: 53:59 note: expansion site rust/main.rs:53:52: 53:55 error: failed to resolve. Maybe a missing `extern crate std`? rust/main.rs:53 core::fmt::write(&amp;mut uart, format_args!(&quot;{}&quot;, 42u64)); ^~~ note: in expansion of format_args! rust/main.rs:53:33: 53:59 note: expansion site rust/main.rs:53:52: 53:57 error: unresolved name `std::fmt::argument` rust/main.rs:53 core::fmt::write(&amp;mut uart, format_args!(&quot;{}&quot;, 42u64)); ^~~~~ note: in expansion of format_args! rust/main.rs:53:33: 53:59 note: expansion site rust/main.rs:53:46: 53:49 error: failed to resolve. Maybe a missing `extern crate std`? rust/main.rs:53 core::fmt::write(&amp;mut uart, format_args!(&quot;{}&quot;, 42u64)); ^~~ note: in expansion of format_args! rust/main.rs:53:33: 53:59 note: expansion site rust/main.rs:53:46: 53:50 error: unresolved name `std::fmt::Arguments::new` rust/main.rs:53 core::fmt::write(&amp;mut uart, format_args!(&quot;{}&quot;, 42u64)); ^~~~ note: in expansion of format_args! rust/main.rs:53:33: 53:59 note: expansion site"><pre class="notranslate">rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">52</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">55</span> error<span class="pl-kos">:</span> failed to resolve<span class="pl-kos">.</span> <span class="pl-c1">Maybe</span> a missing `<span class="pl-k">extern</span> <span class="pl-k">crate</span> std`? rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span> core<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-k">mut</span> uart<span class="pl-kos">,</span> <span class="pl-en">format_args</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, <span class="pl-c1">42u64</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> ^~~ note<span class="pl-kos">:</span> <span class="pl-k">in</span> expansion of format_args! rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">59</span> note<span class="pl-kos">:</span> expansion site rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">52</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">57</span> error<span class="pl-kos">:</span> unresolved name `std<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-smi">String</span><span class="pl-kos">::</span><span class="pl-smi">fmt</span>` rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span> core<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-k">mut</span> uart<span class="pl-kos">,</span> <span class="pl-en">format_args</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, <span class="pl-c1">42u64</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> ^~~~~ note<span class="pl-kos">:</span> <span class="pl-k">in</span> expansion of format_args! rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">59</span> note<span class="pl-kos">:</span> expansion site rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">52</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">55</span> error<span class="pl-kos">:</span> failed to resolve<span class="pl-kos">.</span> <span class="pl-c1">Maybe</span> a missing `<span class="pl-k">extern</span> <span class="pl-k">crate</span> std`? rust/main<span class="pl-kos">.</span>rs<span class="pl-kos">:</span><span class="pl-c1">53</span> core<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-k">mut</span> uart<span class="pl-kos">,</span> <span class="pl-en">format_args</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, <span class="pl-c1">42u64</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> ^~~ note<span class="pl-kos">:</span> <span class="pl-k">in</span> expansion of format_args! rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">59</span> note<span class="pl-kos">:</span> expansion site rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">52</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">57</span> error<span class="pl-kos">:</span> unresolved name `std<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-smi">argument</span>` rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span> core<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-k">mut</span> uart<span class="pl-kos">,</span> <span class="pl-en">format_args</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, <span class="pl-c1">42u64</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> ^~~~~ note<span class="pl-kos">:</span> <span class="pl-k">in</span> expansion of format_args! rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">59</span> note<span class="pl-kos">:</span> expansion site rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">46</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">49</span> error<span class="pl-kos">:</span> failed to resolve<span class="pl-kos">.</span> <span class="pl-c1">Maybe</span> a missing `<span class="pl-k">extern</span> <span class="pl-k">crate</span> std`? rust/main<span class="pl-kos">.</span>rs<span class="pl-kos">:</span><span class="pl-c1">53</span> core<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-k">mut</span> uart<span class="pl-kos">,</span> <span class="pl-en">format_args</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, <span class="pl-c1">42u64</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> ^~~ note<span class="pl-kos">:</span> <span class="pl-k">in</span> expansion of format_args! rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">59</span> note<span class="pl-kos">:</span> expansion site rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">46</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">50</span> error<span class="pl-kos">:</span> unresolved name `std<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-smi">Arguments</span><span class="pl-kos">::</span><span class="pl-smi">new</span>` rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span> core<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-c1">&amp;</span><span class="pl-k">mut</span> uart<span class="pl-kos">,</span> <span class="pl-en">format_args</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, <span class="pl-c1">42u64</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> ^~~~ note<span class="pl-kos">:</span> <span class="pl-k">in</span> expansion of format_args! rust/main<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">53</span><span class="pl-kos">:</span><span class="pl-c1">59</span> note<span class="pl-kos">:</span> expansion site</pre></div> <p dir="auto">I currently have a workaround for this by putting a <code class="notranslate">extern crate "core" as std;</code> but it is really ugly ...</p>
0
<h3 dir="auto">Issue Details</h3> <p dir="auto">When using an accelerator like <code class="notranslate">Shift+CmdOrCtrl+3</code>, the shown accelerator should be <code class="notranslate">⇧⌘3</code>, However, it's shown as <code class="notranslate">⌘#</code>.</p> <p dir="auto">The HIG show menus with the shift arrow: <a href="https://developer.apple.com/design/human-interface-guidelines/macos/menus/menu-anatomy/" rel="nofollow">https://developer.apple.com/design/human-interface-guidelines/macos/menus/menu-anatomy/</a></p> <ul dir="auto"> <li><strong>Electron Version:</strong> 7.x</li> <li><strong>Operating System:</strong> macOS 10.14.6</li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">The accelerator is shown as <code class="notranslate">⇧⌘3</code>.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">The accelerator is shown as <code class="notranslate">⌘#</code>.</p> <p dir="auto">Will create a small fiddle later.</p>
<p dir="auto">Hi All,</p> <p dir="auto">My Electron and OS versions are:</p> <ul dir="auto"> <li>Electron version: 1.6.15</li> <li>Operating system: macOS High Sierra 10.13.1</li> </ul> <p dir="auto">So, I am trying to create a <strong>Frameless BrowserWindow</strong> object using the below parameters:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var framelessParams = { width: 500, height: 500, frame: false, transparent: true, show: false, backgroundColor: '#fff', resizable: false, movable: false, maximizable: false, minimizable: false }; var framelessWindow = new BrowserWindow(framelessParams);"><pre class="notranslate"><code class="notranslate">var framelessParams = { width: 500, height: 500, frame: false, transparent: true, show: false, backgroundColor: '#fff', resizable: false, movable: false, maximizable: false, minimizable: false }; var framelessWindow = new BrowserWindow(framelessParams); </code></pre></div> <h3 dir="auto">Expected behavior</h3> <p dir="auto">Showing the frameless window with no warning or errors.</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Showing the frameless window with the below warning in the terminal output.</p> <blockquote> <p dir="auto">Electron[1745:97088] *** WARNING: Textured window &lt;AtomNSWindow: 0x7fbcbecc4650&gt; is getting an implicitly transparent titlebar. This will break when linking against newer SDKs. Use NSWindow's -titlebarAppearsTransparent=YES instead.</p> </blockquote> <h3 dir="auto">How to reproduce</h3> <p dir="auto">I have realized that using <strong>frame: flase</strong> is producing this warning.<br> By removing this option, I am not getting this warning.</p> <p dir="auto">I think, this might be related to the update I made to High Sierra and I don't recall having to see this warning using older versions of macOS.</p> <p dir="auto">I am not really sure, whether this has been reported before or not. However, please advise whether this should be (or already) addressed in the new releases.</p> <p dir="auto">Thank you,<br> Shikartoos.</p>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=jsl1" rel="nofollow">jsl1</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9343?redirect=false" rel="nofollow">SPR-9343</a></strong> and commented</p> <p dir="auto">org.springframework.core.convert.Property class performs expensive operations in its constructor such as resolveAnnotations() method.</p> <p dir="auto">The annotations could be lazy loaded instead (when calling getAnnotations())<br> I noticed that while profiling an application using BeanWrapperImpl to set java bean properties values (see screenshot attached).</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.1.1</p> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/19614/spring_bug.png" rel="nofollow">spring_bug.png</a> (<em>26.25 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="398152353" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14304" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14304/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14304">#14304</a> Poor Performance with lots of Prototype Scoped Beans (<em><strong>"duplicates"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=kmudrick" rel="nofollow">Kevin Mudrick</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-9670?redirect=false" rel="nofollow">SPR-9670</a></strong> and commented</p> <p dir="auto">We are seeing a pretty substantial performance hit with the creation of large quantities of prototype-scoped beans in the 3.1.x branch versus 3.0.x (and 2.5.6)</p> <p dir="auto">In our example, we have call context.getBean() with a bean consisting of 2 levels of nested bean referenced, in a pretty large loop.</p> <p dir="auto">3.0.7: 40604ms<br> 3.1.2: 685150ms</p> <p dir="auto">The only difference between these runs is the version of the spring dependencies.</p> <p dir="auto">After profiling using YourKit, I found the hotspots in 3.1.x to be in the following places:</p> <p dir="auto">org.springframework.beans.TypeConverterDelegate: This seems to be the bigger problem.<br> The changes introduced in 3.1 (specifically, in commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/6f146737f475828b6d765784017773378c2c4922/hovercard" href="https://github.com/spring-projects/spring-framework/commit/6f146737f475828b6d765784017773378c2c4922"><tt>6f14673</tt></a>) to findDefaultEditor() end up (expensively) initializing an editor registry every time this is called. Since we get here each time we apply a property on every bean creation, this really adds up. Previously, the commented-out code ended up shortcutting this. I found that replacing the commented out code (the part that relied on the now-removed PropertyTypeDescriptor/PropertyDescriptor with static use of PropertyEditorManager.findEditor(), cuts down on the slowness considerably, at the expense of relying on java.beans - which a few commit comments seem to indicate is something to be avoided for better platform compatibility.</p> <p dir="auto">org.springframework.core.convert.Property: This also seems to be a problem.<br> The overhead of the annotation parsing via reflection is already noted in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398118763" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13981" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13981/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13981">#13981</a> - but that issue doesn't seem to mention this example. My profiling is showing that this is being constructed for every property found on every bean being created. With lots of prototype beans - this comes to light pretty quickly. Perhaps if ReflectionUtils used a similar caching strategy to apache commons-beanutils PropertyUtilsBean for annotations, this performance hit could be mitigated.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.1.2</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="398118763" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13981" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13981/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13981">#13981</a> org.springframework.core.convert.Property class performs expensive operations in its constructor (<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="398106550" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12081" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12081/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12081">#12081</a> Concurrent prototype creation causes NullPointerException</li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398113052" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13109" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13109/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13109">#13109</a> TypeConverterDelegate contains commented out code</li> </ul> <p dir="auto">0 votes, 6 watchers</p>
1
<p dir="auto">When I add screenshots to a test, the test report displays the name twice. While, functionally, this isn't an issue, the detail oriented part of me is annoyed by this :)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const screenshot = await page.screenshot({ fullPage: true }); await test.info().attach(name, { body: screenshot, contentType: 'image/png' });"><pre class="notranslate"><code class="notranslate">const screenshot = await page.screenshot({ fullPage: true }); await test.info().attach(name, { body: screenshot, contentType: 'image/png' }); </code></pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5252941/184136602-621e77ef-ecbd-44de-89cf-d60409e4da15.png"><img src="https://user-images.githubusercontent.com/5252941/184136602-621e77ef-ecbd-44de-89cf-d60409e4da15.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I have tried specifying the path when taking a screenshot, and that does not produce the duplicate file name in the report, however, I want to use the default behavior in Playwright for taking screenshots, as it cleans up the screenshot directory every time the tests are run.</p>
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: 1.32.2</li> <li>Operating System: maxOs 13.2.1</li> <li>Browser: All</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="import { defineConfig, devices } from &quot;@playwright/test&quot;; export default defineConfig({ testDir: &quot;./tests&quot;, projects: [ { name: &quot;chromium&quot;, use: { ...devices[&quot;Desktop Chrome&quot;] }, }, ], });"><pre class="notranslate"><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">testDir</span>: <span class="pl-s">"./tests"</span><span class="pl-kos">,</span> <span class="pl-c1">projects</span>: <span class="pl-kos">[</span> <span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">"chromium"</span><span class="pl-kos">,</span> <span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">"Desktop Chrome"</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Test file (self-contained)</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { test } from &quot;@playwright/test&quot;; import { PassThrough } from &quot;stream&quot;; test(&quot;pipe to stdout&quot;, async ({ page }) =&gt; { const writable = new PassThrough(); writable.pipe(process.stdout); writable.write(&quot;hello&quot;); });"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">test</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-v">PassThrough</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"stream"</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">"pipe to stdout"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">writable</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">PassThrough</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">writable</span><span class="pl-kos">.</span><span class="pl-en">pipe</span><span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">stdout</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">writable</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-s">"hello"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li><code class="notranslate">yarn playwright test --ui</code></li> <li>Run the test in the UI</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">No error in the console</p> <p dir="auto"><strong>Actual</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: ReferenceError: Buffer is not defined at Be._onStdIO (http://localhost:62118/trace/watch.575ca3b3.js:1:4187) at Be.dispatch (http://localhost:62118/trace/watch.575ca3b3.js:1:2309) at window.dispatch (http://localhost:62118/trace/watch.575ca3b3.js:3:296) at eval (eval at evaluate (:195:30), &lt;anonymous&gt;:2:10) at UtilityScript.evaluate (&lt;anonymous&gt;:197:17) at UtilityScript.&lt;anonymous&gt; (&lt;anonymous&gt;:1:44)"><pre class="notranslate"><code class="notranslate">Error: ReferenceError: Buffer is not defined at Be._onStdIO (http://localhost:62118/trace/watch.575ca3b3.js:1:4187) at Be.dispatch (http://localhost:62118/trace/watch.575ca3b3.js:1:2309) at window.dispatch (http://localhost:62118/trace/watch.575ca3b3.js:3:296) at eval (eval at evaluate (:195:30), &lt;anonymous&gt;:2:10) at UtilityScript.evaluate (&lt;anonymous&gt;:197:17) at UtilityScript.&lt;anonymous&gt; (&lt;anonymous&gt;:1:44) </code></pre></div> <p dir="auto">Additionally, no output to be seen anywhere from tests</p>
0
<h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li>...</li> <li>...</li> <li>...</li> </ol> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></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> <p dir="auto">Launching lib\main.dart on Lenovo K50a40 in debug mode...</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Compiler message: file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:104:10: Error: Duplicated parameter name 'controller'. this.controller, ^^^^^^^^^^ file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:102:41: Context: Other parameter named 'controller'. const TextField(TextEditingController controller, { ^^^^^^^^^^ file:///C:/flutter/packages/flutter/lib/src/material/search.dart:433:27: Error: Too few positional arguments: 1 required, 0 given. title: TextField( ^ file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:102:9: Context: Found this candidate, but the arguments don't match. const TextField(TextEditingController controller, { ^ file:///C:/flutter/packages/flutter/lib/src/material/text_form_field.dart:123:23: Error: Too few positional arguments: 1 required, 0 given. return TextField( ^ file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:102:9: Context: Found this candidate, but the arguments don't match. const TextField(TextEditingController controller, { ^ Compiler failed on D:\bbb\lib\main.dart Gradle task assembleDebug failed with exit code 1 Exited (sigterm)"><pre class="notranslate"><code class="notranslate">Compiler message: file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:104:10: Error: Duplicated parameter name 'controller'. this.controller, ^^^^^^^^^^ file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:102:41: Context: Other parameter named 'controller'. const TextField(TextEditingController controller, { ^^^^^^^^^^ file:///C:/flutter/packages/flutter/lib/src/material/search.dart:433:27: Error: Too few positional arguments: 1 required, 0 given. title: TextField( ^ file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:102:9: Context: Found this candidate, but the arguments don't match. const TextField(TextEditingController controller, { ^ file:///C:/flutter/packages/flutter/lib/src/material/text_form_field.dart:123:23: Error: Too few positional arguments: 1 required, 0 given. return TextField( ^ file:///C:/flutter/packages/flutter/lib/src/material/text_field.dart:102:9: Context: Found this candidate, but the arguments don't match. const TextField(TextEditingController controller, { ^ Compiler failed on D:\bbb\lib\main.dart Gradle task assembleDebug failed with exit code 1 Exited (sigterm) </code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/14286025/40038443-5fa4cc0a-57cf-11e8-964a-0b33ee150663.png"><img src="https://user-images.githubusercontent.com/14286025/40038443-5fa4cc0a-57cf-11e8-964a-0b33ee150663.png" alt="flutter_crash" style="max-width: 100%;"></a><br> I was evaluating using Flutter with the Flutter Gallery for look / feel before using it when I found this bug.</p> <p dir="auto">Flutter crashes in the 'Studies' &gt; 'Contact Profile' section after rapidly scrolling up / down and repeatedly selecting an app bar option from the menu in the upper right-hand corner.</p> <p dir="auto">The stack trace from the flutter command line app is as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I/flutter (31551): ══╡ EXCEPTION CAUGHT BY FOUNDATION LIBRARY ╞════════════════════════════════════════════════════════ I/flutter (31551): The following NoSuchMethodError was thrown while dispatching notifications for ValueNotifier&lt;bool&gt;: I/flutter (31551): The method 'stop' was called on null. I/flutter (31551): Receiver: null I/flutter (31551): Tried calling: stop(canceled: true) I/flutter (31551): I/flutter (31551): When the exception was thrown, this was the stack: I/flutter (31551): #0 Object.noSuchMethod (dart:core/runtime/libobject_patch.dart:46:5) I/flutter (31551): #1 AnimationController.stop (package:flutter/src/animation/animation_controller.dart:499:13) I/flutter (31551): #2 RenderSliverFloatingPersistentHeader.maybeStopSnapAnimation (package:flutter/src/rendering/sliver_persistent_header.dart:457:18) I/flutter (31551): #3 _FloatingAppBarState._isScrollingListener (package:flutter/src/material/app_bar.dart:548:15) I/flutter (31551): #4 ChangeNotifier.notifyListeners (package:flutter/src/foundation/change_notifier.dart:161:21) I/flutter (31551): #5 ValueNotifier.value= (package:flutter/src/foundation/change_notifier.dart:217:5) I/flutter (31551): #6 ScrollPosition.beginActivity (package:flutter/src/widgets/scroll_position.dart:583:25) I/flutter (31551): #7 ScrollPositionWithSingleContext.beginActivity (package:flutter/src/widgets/scroll_position_with_single_context.dart:122:11) I/flutter (31551): #8 ScrollPositionWithSingleContext.drag (package:flutter/src/widgets/scroll_position_with_single_context.dart:250:5) I/flutter (31551): #9 ScrollableState._handleDragStart (package:flutter/src/widgets/scrollable.dart:443:22) I/flutter (31551): #10 DragGestureRecognizer.acceptGesture.&lt;anonymous closure&gt; (package:flutter/src/gestures/monodrag.dart:169:47) I/flutter (31551): #11 GestureRecognizer.invokeCallback (package:flutter/src/gestures/recognizer.dart:102:24) I/flutter (31551): #12 DragGestureRecognizer.acceptGesture (package:flutter/src/gestures/monodrag.dart:169:9) I/flutter (31551): #13 GestureArenaManager._resolveByDefault (package:flutter/src/gestures/arena.dart:250:25) I/flutter (31551): #14 GestureArenaManager._tryToResolveArena.&lt;anonymous closure&gt; (package:flutter/src/gestures/arena.dart:231:31) I/flutter (31551): (elided 2 frames from package dart:async) I/flutter (31551): I/flutter (31551): The ValueNotifier&lt;bool&gt; sending notification was: I/flutter (31551): ValueNotifier&lt;bool&gt;#152a4(true) I/flutter (31551): ════════════════════════════════════════════════════════════════════════════════════════════════════ I/flutter (31551): Another exception was thrown: AnimationController.dispose() called more than once. I/flutter (31551): Another exception was thrown: A RenderViewport expected a child of type RenderSliver but received a child of type RenderErrorBox. I/flutter (31551): Another exception was thrown: A RenderViewport expected a child of type RenderSliver but received a child of type RenderErrorBox. I/flutter (31551): Another exception was thrown: A RenderViewport expected a child of type RenderSliver but received a child of type RenderErrorBox. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 4681 pos 12: 'renderObject.child == child': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 4681 pos 12: 'renderObject.child == child': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 4062 pos 14: '() { I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 2240 pos 16: '!_dirtyElements[index]._active || _dirtyElements[index]._debugIsInScope(context)': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/FlutterActivityDelegate(31551): onResume setting current activity to this I/OpenGLRenderer(31551): Initialized EGL, version 1.4 D/OpenGLRenderer(31551): Swap behavior 1 I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/FlutterActivityDelegate(31551): onResume setting current activity to this I/FlutterActivityDelegate(31551): onResume setting current activity to this I/OpenGLRenderer(31551): Initialized EGL, version 1.4 D/OpenGLRenderer(31551): Swap behavior 1 I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree."><pre class="notranslate"><code class="notranslate">I/flutter (31551): ══╡ EXCEPTION CAUGHT BY FOUNDATION LIBRARY ╞════════════════════════════════════════════════════════ I/flutter (31551): The following NoSuchMethodError was thrown while dispatching notifications for ValueNotifier&lt;bool&gt;: I/flutter (31551): The method 'stop' was called on null. I/flutter (31551): Receiver: null I/flutter (31551): Tried calling: stop(canceled: true) I/flutter (31551): I/flutter (31551): When the exception was thrown, this was the stack: I/flutter (31551): #0 Object.noSuchMethod (dart:core/runtime/libobject_patch.dart:46:5) I/flutter (31551): #1 AnimationController.stop (package:flutter/src/animation/animation_controller.dart:499:13) I/flutter (31551): #2 RenderSliverFloatingPersistentHeader.maybeStopSnapAnimation (package:flutter/src/rendering/sliver_persistent_header.dart:457:18) I/flutter (31551): #3 _FloatingAppBarState._isScrollingListener (package:flutter/src/material/app_bar.dart:548:15) I/flutter (31551): #4 ChangeNotifier.notifyListeners (package:flutter/src/foundation/change_notifier.dart:161:21) I/flutter (31551): #5 ValueNotifier.value= (package:flutter/src/foundation/change_notifier.dart:217:5) I/flutter (31551): #6 ScrollPosition.beginActivity (package:flutter/src/widgets/scroll_position.dart:583:25) I/flutter (31551): #7 ScrollPositionWithSingleContext.beginActivity (package:flutter/src/widgets/scroll_position_with_single_context.dart:122:11) I/flutter (31551): #8 ScrollPositionWithSingleContext.drag (package:flutter/src/widgets/scroll_position_with_single_context.dart:250:5) I/flutter (31551): #9 ScrollableState._handleDragStart (package:flutter/src/widgets/scrollable.dart:443:22) I/flutter (31551): #10 DragGestureRecognizer.acceptGesture.&lt;anonymous closure&gt; (package:flutter/src/gestures/monodrag.dart:169:47) I/flutter (31551): #11 GestureRecognizer.invokeCallback (package:flutter/src/gestures/recognizer.dart:102:24) I/flutter (31551): #12 DragGestureRecognizer.acceptGesture (package:flutter/src/gestures/monodrag.dart:169:9) I/flutter (31551): #13 GestureArenaManager._resolveByDefault (package:flutter/src/gestures/arena.dart:250:25) I/flutter (31551): #14 GestureArenaManager._tryToResolveArena.&lt;anonymous closure&gt; (package:flutter/src/gestures/arena.dart:231:31) I/flutter (31551): (elided 2 frames from package dart:async) I/flutter (31551): I/flutter (31551): The ValueNotifier&lt;bool&gt; sending notification was: I/flutter (31551): ValueNotifier&lt;bool&gt;#152a4(true) I/flutter (31551): ════════════════════════════════════════════════════════════════════════════════════════════════════ I/flutter (31551): Another exception was thrown: AnimationController.dispose() called more than once. I/flutter (31551): Another exception was thrown: A RenderViewport expected a child of type RenderSliver but received a child of type RenderErrorBox. I/flutter (31551): Another exception was thrown: A RenderViewport expected a child of type RenderSliver but received a child of type RenderErrorBox. I/flutter (31551): Another exception was thrown: A RenderViewport expected a child of type RenderSliver but received a child of type RenderErrorBox. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3497 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 4681 pos 12: 'renderObject.child == child': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 4681 pos 12: 'renderObject.child == child': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 4062 pos 14: '() { I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 2240 pos 16: '!_dirtyElements[index]._active || _dirtyElements[index]._debugIsInScope(context)': is not true. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/FlutterActivityDelegate(31551): onResume setting current activity to this I/OpenGLRenderer(31551): Initialized EGL, version 1.4 D/OpenGLRenderer(31551): Swap behavior 1 I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. I/FlutterActivityDelegate(31551): onResume setting current activity to this I/FlutterActivityDelegate(31551): onResume setting current activity to this I/OpenGLRenderer(31551): Initialized EGL, version 1.4 D/OpenGLRenderer(31551): Swap behavior 1 I/flutter (31551): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3681 pos 12: 'child == _child': is not true. I/flutter (31551): Another exception was thrown: Duplicate GlobalKey detected in widget tree. </code></pre></div> <p dir="auto">Is this an issue that's only possible due to the nature of the example changing the app bar behavior? This bug can also be found in the version of the example found in the Google Play store (I found it first there, then installed via github to produce a stack trace). Bug was found on version 0.4.2 on a Nexus 6P.</p>
0
<p dir="auto">It would save a bit of hassle (especially when updating all PCs in a team) if Typescript VS installer asked about PATH update to the latest Typescript bin directory (ie. remove old Typescript from PATH , add new Typescript to PATH).</p> <p dir="auto">Managing all developers and asking them to update the PATH manually leads to problems - incoherent versions of command line tools can lead to erratic compilation errors between team members.</p>
<p dir="auto">Can we fix this or is cmd too limited? After installing 1.4 out of band (<a href="https://visualstudiogallery.msdn.microsoft.com/2d42d8dc-e085-45eb-a30b-3f7d50d55304" rel="nofollow">https://visualstudiogallery.msdn.microsoft.com/2d42d8dc-e085-45eb-a30b-3f7d50d55304</a>) on top of VS2013 my command prompt experience is still stuck at 1.0:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\&gt;tsc -v Version 1.0.0.0 C:\&gt;where tsc C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\tsc.js C:\Program Files (x86)\Microsoft SDKs\TypeScript\0.9\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\0.9\tsc.js C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.1\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.1\tsc.js C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.4\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.4\tsc.js"><pre class="notranslate"><code class="notranslate">C:\&gt;tsc -v Version 1.0.0.0 C:\&gt;where tsc C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\tsc.js C:\Program Files (x86)\Microsoft SDKs\TypeScript\0.9\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\0.9\tsc.js C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.1\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.1\tsc.js C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.4\tsc.exe C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.4\tsc.js </code></pre></div>
1
<p dir="auto">For some tests I would like to simulate the current time because my web app have some functionalities that active depends of the time.</p> <p dir="auto">For example, if the time is between 20hrs and 6hrs the app have to show a maintenance page. This feature will be awesome because I can execute my test in any time of the day, I wouldn’t have to wait for a time to run it.</p>
<p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="869719470" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/6347" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/6347/hovercard?comment_id=965887758&amp;comment_type=issue_comment" href="https://github.com/microsoft/playwright/issues/6347#issuecomment-965887758">#6347 (comment)</a> for a current workaround.</p> <p dir="auto">Edited by the Playwright team.</p> <hr> <p dir="auto">Hello,</p> <p dir="auto">We are using playwright to run automated tests on some websites, we record external requests to be able to replace the tests in isolation.<br> We would love have a way to set the internal clock, same as <a href="https://docs.cypress.io/api/commands/clock#Syntax" rel="nofollow"><code class="notranslate">clock()</code></a> from cypress to improve reproductibility</p> <p dir="auto">This has already been mentioned here <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="559331875" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/820" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/820/hovercard" href="https://github.com/microsoft/playwright/issues/820">#820</a> but I did not found any follow up issues :)</p>
1
<p dir="auto">In an example in the stats.power_divergence docstring, the incorrect use of "method" instead of "lambda_" as option name is used. Fix in pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="33533282" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/3652" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/3652/hovercard" href="https://github.com/scipy/scipy/pull/3652">#3652</a></p>
<p dir="auto">I have no problems interpolating over small arrays like this.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np from scipy.interpolate import interp2d x = np.arange(900) y = np.arange(400) z = np.random.randint(-1000, high=1000, size=(400, 900)) f = interp2d(x, y, z, kind='linear') # No errors"><pre class="notranslate"><code class="notranslate">import numpy as np from scipy.interpolate import interp2d x = np.arange(900) y = np.arange(400) z = np.random.randint(-1000, high=1000, size=(400, 900)) f = interp2d(x, y, z, kind='linear') # No errors </code></pre></div> <p dir="auto">But errors are produced when <code class="notranslate">x</code>, <code class="notranslate">y</code> and <code class="notranslate">z</code> are large, as shown below.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np from scipy.interpolate import interp2d x = np.arange(90000) y = np.arange(40000) z = np.random.randint(-1000, high=1000, size=(40000, 90000)) f = interp2d(x, y, z, kind='linear')"><pre class="notranslate"><code class="notranslate">import numpy as np from scipy.interpolate import interp2d x = np.arange(90000) y = np.arange(40000) z = np.random.randint(-1000, high=1000, size=(40000, 90000)) f = interp2d(x, y, z, kind='linear') </code></pre></div> <h3 dir="auto">Error message:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;/data/software/Anaconda3-4.3.1-Linux-x86_64/lib/python3.6/site-packages/scipy/interpolate/interpolate.py&quot;, line 225, in __init__ kx=kx, ky=ky, s=0.0) dfitpack.error: (len(z)==mx*my) failed for 3rd argument z"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "/data/software/Anaconda3-4.3.1-Linux-x86_64/lib/python3.6/site-packages/scipy/interpolate/interpolate.py", line 225, in __init__ kx=kx, ky=ky, s=0.0) dfitpack.error: (len(z)==mx*my) failed for 3rd argument z </code></pre></div> <h3 dir="auto">Scipy/Numpy/Python version information:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 0.19.1 1.12.1 sys.version_info(major=3, minor=6, micro=0, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 0.19.1 1.12.1 sys.version_info(major=3, minor=6, micro=0, releaselevel='final', serial=0) </code></pre></div>
0
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">To be completely honest: I have no idea what exactly causes this issue and I'm using technology that might not be fully prime time ready yet but let's see.</p> <p dir="auto">I'm using Webpack + <a href="https://github.com/manuelbieh/react-ssr-setup/blob/chores-jan-21/config/webpack.config.ts/loaders.ts#L22"><code class="notranslate">babel-plugin-named-asset-import</code></a> + browserslist. I've recently upgraded Webpack to v5 and all Babel related packages as well as Babel itself to their most recent versions. Now my Webpack build now fails as soon as I try to import an SVG as React component (e.g. <code class="notranslate">import { ReactComponent as ReactLogo } from './assets/react.svg';</code>) with the following error as soon as I add anything other than <code class="notranslate">defaults</code> to my <code class="notranslate">.browserslistrc</code> file:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\utils.js:62 const result = plugin[environment]; ^ Error: Module build failed (from ./node_modules/@svgr/webpack/lib/index.js): TypeError: [BABEL] unknown: Cannot read property 'edge' of undefined (While processing: &quot;programmatic item&quot;) at getLowestImplementedVersion (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\utils.js:62:24) at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\filter-items.js:26:77 at Array.filter (&lt;anonymous&gt;) at targetsSupported (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\filter-items.js:25:54) at isRequired (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\filter-items.js:58:11) at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\preset-env\lib\index.js:267:201 at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-plugin-utils\lib\index.js:19:12 at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\core\lib\config\full.js:211:14 at Generator.next (&lt;anonymous&gt;) at Function.&lt;anonymous&gt; (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\core\lib\gensync-utils\async.js:26:3) at Generator.next (&lt;anonymous&gt;) at step (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:254:32) at evaluateAsync (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:284:5) at Function.errback (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:108:7) at errback (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\core\lib\gensync-utils\async.js:70:18) at async (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:183:31) at eval (webpack://react-ssr-setup/./src/shared/assets/react.svg?./node_modules/@svgr/webpack/lib/index.js?-svgo,+titleProp,+ref:1:7) at Object../node_modules/@svgr/webpack/lib/index.js?-svgo,+titleProp,+ref!./src/shared/assets/react.svg (C:\htdocs\_git\react-ssr-setup\build\server\server.js:18:1) at __webpack_require__ (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4582:32) at fn (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4728:21) at eval (webpack://react-ssr-setup/./src/shared/App.tsx?:15:107) at Module../src/shared/App.tsx (C:\htdocs\_git\react-ssr-setup\build\server\server.js:128:1) at __webpack_require__ (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4582:32) at fn (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4728:21) at eval (webpack://react-ssr-setup/./src/server/middleware/serverRenderer.tsx?:16:69) at Module../src/server/middleware/serverRenderer.tsx (C:\htdocs\_git\react-ssr-setup\build\server\server.js:106:1)"><pre class="notranslate"><code class="notranslate">C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\utils.js:62 const result = plugin[environment]; ^ Error: Module build failed (from ./node_modules/@svgr/webpack/lib/index.js): TypeError: [BABEL] unknown: Cannot read property 'edge' of undefined (While processing: "programmatic item") at getLowestImplementedVersion (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\utils.js:62:24) at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\filter-items.js:26:77 at Array.filter (&lt;anonymous&gt;) at targetsSupported (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\filter-items.js:25:54) at isRequired (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-compilation-targets\lib\filter-items.js:58:11) at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\preset-env\lib\index.js:267:201 at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\helper-plugin-utils\lib\index.js:19:12 at C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\core\lib\config\full.js:211:14 at Generator.next (&lt;anonymous&gt;) at Function.&lt;anonymous&gt; (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\core\lib\gensync-utils\async.js:26:3) at Generator.next (&lt;anonymous&gt;) at step (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:254:32) at evaluateAsync (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:284:5) at Function.errback (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:108:7) at errback (C:\htdocs\_git\react-ssr-setup\node_modules\@svgr\webpack\node_modules\@babel\core\lib\gensync-utils\async.js:70:18) at async (C:\htdocs\_git\react-ssr-setup\node_modules\gensync\index.js:183:31) at eval (webpack://react-ssr-setup/./src/shared/assets/react.svg?./node_modules/@svgr/webpack/lib/index.js?-svgo,+titleProp,+ref:1:7) at Object../node_modules/@svgr/webpack/lib/index.js?-svgo,+titleProp,+ref!./src/shared/assets/react.svg (C:\htdocs\_git\react-ssr-setup\build\server\server.js:18:1) at __webpack_require__ (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4582:32) at fn (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4728:21) at eval (webpack://react-ssr-setup/./src/shared/App.tsx?:15:107) at Module../src/shared/App.tsx (C:\htdocs\_git\react-ssr-setup\build\server\server.js:128:1) at __webpack_require__ (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4582:32) at fn (C:\htdocs\_git\react-ssr-setup\build\server\server.js:4728:21) at eval (webpack://react-ssr-setup/./src/server/middleware/serverRenderer.tsx?:16:69) at Module../src/server/middleware/serverRenderer.tsx (C:\htdocs\_git\react-ssr-setup\build\server\server.js:106:1) </code></pre></div> <p dir="auto">In the example above the property <code class="notranslate">edge</code> of undefined cannot be read. In other cases I also had <code class="notranslate">android</code> as property that cannot be read too. I took a look at <a href="https://github.com/babel/babel/blob/master/packages/babel-helper-compilation-targets/src/utils.js#L58"><code class="notranslate">@babel\helper-compilation-targets\lib\utils.js:L58</code></a> and when I replace the line with</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const result = plugin &amp;&amp; plugin[environment];"><pre class="notranslate"><code class="notranslate">const result = plugin &amp;&amp; plugin[environment]; </code></pre></div> <p dir="auto">it works but I don't know what consequences this will have as the function will then return <code class="notranslate">undefined</code>.</p> <p dir="auto">This behavior can be tested on this branch:<br> <a href="https://github.com/manuelbieh/react-ssr-setup/tree/chores-jan-21">https://github.com/manuelbieh/react-ssr-setup/tree/chores-jan-21</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="git clone [email protected]:manuelbieh/react-ssr-setup.git cd react-ssr-setup git checkout -b chores-jan-21 yarn install yarn start"><pre class="notranslate"><code class="notranslate">git clone [email protected]:manuelbieh/react-ssr-setup.git cd react-ssr-setup git checkout -b chores-jan-21 yarn install yarn start </code></pre></div> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">Well, in the first place I'd expect the <code class="notranslate">named-asset-import</code> plugin to work as it did before I updated my 100 babel + webpack dependencies 😉</p> <p dir="auto"><strong>Babel Configuration</strong></p> <p dir="auto">Can also be found in the repo I linked above:<br> <a href="https://github.com/manuelbieh/react-ssr-setup/blob/chores-jan-21/babel.config.js">https://github.com/manuelbieh/react-ssr-setup/blob/chores-jan-21/babel.config.js</a></p> <p dir="auto"><strong>Environment</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ npx envinfo --preset babel System: OS: Windows 10 10.0.19042 Binaries: Node: 14.14.0 - C:\Program Files\nodejs\node.EXE Yarn: 1.22.10 - C:\Program Files\nodejs\yarn.CMD npm: 6.14.8 - C:\Program Files\nodejs\npm.CMD npmPackages: @babel/cli: ^7.12.10 =&gt; 7.12.10 @babel/core: ^7.12.10 =&gt; 7.12.10 @babel/plugin-proposal-class-properties: ^7.12.1 =&gt; 7.12.1 @babel/plugin-proposal-object-rest-spread: ^7.12.1 =&gt; 7.12.1 @babel/plugin-proposal-optional-chaining: ^7.12.7 =&gt; 7.12.7 @babel/plugin-syntax-dynamic-import: ^7.8.3 =&gt; 7.8.3 @babel/plugin-transform-modules-commonjs: ^7.12.1 =&gt; 7.12.1 @babel/plugin-transform-runtime: ^7.12.10 =&gt; 7.12.10 @babel/preset-env: ^7.12.11 =&gt; 7.12.11 @babel/preset-react: ^7.12.10 =&gt; 7.12.10 @babel/preset-typescript: ^7.12.7 =&gt; 7.12.7 @babel/register: ^7.12.10 =&gt; 7.12.10 babel-eslint: ^10.1.0 =&gt; 10.1.0 babel-jest: ^26.6.3 =&gt; 26.6.3 babel-loader: ^8.2.2 =&gt; 8.2.2 babel-plugin-macros: ^3.0.1 =&gt; 3.0.1 babel-plugin-named-asset-import: ^0.3.7 =&gt; 0.3.7 babel-plugin-transform-es2015-modules-commonjs: ^6.26.2 =&gt; 6.26.2 babel-plugin-transform-runtime-file-extensions: ^2.0.0 =&gt; 2.0.0 eslint: ^7.19.0 =&gt; 7.19.0 eslint-plugin-babel: ^5.3.1 =&gt; 5.3.1 jest: ^26.6.3 =&gt; 26.6.3 webpack: ^5.19.0 =&gt; 5.19.0"><pre class="notranslate"><code class="notranslate">$ npx envinfo --preset babel System: OS: Windows 10 10.0.19042 Binaries: Node: 14.14.0 - C:\Program Files\nodejs\node.EXE Yarn: 1.22.10 - C:\Program Files\nodejs\yarn.CMD npm: 6.14.8 - C:\Program Files\nodejs\npm.CMD npmPackages: @babel/cli: ^7.12.10 =&gt; 7.12.10 @babel/core: ^7.12.10 =&gt; 7.12.10 @babel/plugin-proposal-class-properties: ^7.12.1 =&gt; 7.12.1 @babel/plugin-proposal-object-rest-spread: ^7.12.1 =&gt; 7.12.1 @babel/plugin-proposal-optional-chaining: ^7.12.7 =&gt; 7.12.7 @babel/plugin-syntax-dynamic-import: ^7.8.3 =&gt; 7.8.3 @babel/plugin-transform-modules-commonjs: ^7.12.1 =&gt; 7.12.1 @babel/plugin-transform-runtime: ^7.12.10 =&gt; 7.12.10 @babel/preset-env: ^7.12.11 =&gt; 7.12.11 @babel/preset-react: ^7.12.10 =&gt; 7.12.10 @babel/preset-typescript: ^7.12.7 =&gt; 7.12.7 @babel/register: ^7.12.10 =&gt; 7.12.10 babel-eslint: ^10.1.0 =&gt; 10.1.0 babel-jest: ^26.6.3 =&gt; 26.6.3 babel-loader: ^8.2.2 =&gt; 8.2.2 babel-plugin-macros: ^3.0.1 =&gt; 3.0.1 babel-plugin-named-asset-import: ^0.3.7 =&gt; 0.3.7 babel-plugin-transform-es2015-modules-commonjs: ^6.26.2 =&gt; 6.26.2 babel-plugin-transform-runtime-file-extensions: ^2.0.0 =&gt; 2.0.0 eslint: ^7.19.0 =&gt; 7.19.0 eslint-plugin-babel: ^5.3.1 =&gt; 5.3.1 jest: ^26.6.3 =&gt; 26.6.3 webpack: ^5.19.0 =&gt; 5.19.0 </code></pre></div> <p dir="auto"><strong>Possible Solution</strong></p> <p dir="auto">Replace this line:<br> <a href="https://github.com/babel/babel/blob/master/packages/babel-helper-compilation-targets/src/utils.js#L58">https://github.com/babel/babel/blob/master/packages/babel-helper-compilation-targets/src/utils.js#L58</a><br> with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const result = plugin &amp;&amp; plugin[environment];"><pre class="notranslate"><code class="notranslate">const result = plugin &amp;&amp; plugin[environment]; </code></pre></div> <p dir="auto">prevents the error from happening but I'm not deep enough into Babel to know what the possible implications are.</p>
<h2 dir="auto">Bug Report</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I would like to work on a fix!</li> </ul> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">When a nested optional chaining expression is found inside a parameter position (a parameter default value, or default value inside an object or array destructuring), a <code class="notranslate">var</code> declaration is added to the function body. That variable declaration is not in effect when evaluating parameter default values and causes a <code class="notranslate">ReferenceError</code> in strict mode when the function is called.</p> <ul dir="auto"> <li><a href="https://babeljs.io/repl#?browsers=defaults%2C%20not%20ie%2011%2C%20not%20ie_mob%2011&amp;build=&amp;builtIns=false&amp;spec=false&amp;loose=false&amp;code_lz=OQVwzgpgBGAuBOBLAxrYAoZB7AdnKWARgFZQC8UA3gL6a74BmWW5UAFAA4CG8XAtqyLEAdB3hYOARgD8o8RwBMASnIA-KuihRseLABsIwvVgDmnHvyXpaTLGyVA&amp;debug=false&amp;forceAllTransforms=false&amp;shippedProposals=false&amp;circleciRepo=&amp;evaluate=false&amp;fileSize=false&amp;timeTravel=false&amp;sourceType=module&amp;lineWrap=true&amp;presets=env%2Creact%2Cstage-2%2Cenv&amp;prettier=false&amp;targets=&amp;version=7.11.5&amp;externalPlugins=" rel="nofollow">REPL</a></li> </ul> <p dir="auto">To repro, you can use the Babel CLI to compile the code below and run it with Node: <code class="notranslate">babel test.js | node</code>. Error output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const foo = (param = (_obj$prop = obj.prop1) === null || _obj$prop === void 0 ? void 0 : _obj$prop.prop2) =&gt; { ^ ReferenceError: _obj$prop is not defined at foo ([stdin]:5:33) at [stdin]:11:1 at Script.runInThisContext (vm.js:132:18) at Object.runInThisContext (vm.js:315:38) at Object.&lt;anonymous&gt; ([stdin]-wrapper:10:26) at Module._compile (internal/modules/cjs/loader.js:1256:30) at evalScript (internal/process/execution.js:98:25) at internal/main/eval_stdin.js:29:5 at Socket.&lt;anonymous&gt; (internal/process/execution.js:211:5) at Socket.emit (events.js:326:22)"><pre class="notranslate"><code class="notranslate">const foo = (param = (_obj$prop = obj.prop1) === null || _obj$prop === void 0 ? void 0 : _obj$prop.prop2) =&gt; { ^ ReferenceError: _obj$prop is not defined at foo ([stdin]:5:33) at [stdin]:11:1 at Script.runInThisContext (vm.js:132:18) at Object.runInThisContext (vm.js:315:38) at Object.&lt;anonymous&gt; ([stdin]-wrapper:10:26) at Module._compile (internal/modules/cjs/loader.js:1256:30) at evalScript (internal/process/execution.js:98:25) at internal/main/eval_stdin.js:29:5 at Socket.&lt;anonymous&gt; (internal/process/execution.js:211:5) at Socket.emit (events.js:326:22) </code></pre></div> <p dir="auto"><strong>Input Code</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="'use strict' const obj = {} const foo = (param = obj.prop1?.prop2) =&gt; { console.log(param) } foo()"><pre class="notranslate"><span class="pl-s">'use strict'</span> <span class="pl-k">const</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span> <span class="pl-k">const</span> <span class="pl-en">foo</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">param</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-c1">prop1</span><span class="pl-kos">?.</span><span class="pl-c1">prop2</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">param</span><span class="pl-kos">)</span> <span class="pl-kos">}</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span></pre></div> <p dir="auto"><strong>Output Code</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="'use strict'; const obj = {}; const foo = (param = (_obj$prop = obj.prop1) === null || _obj$prop === void 0 ? void 0 : _obj$prop.prop2) =&gt; { var _obj$prop; console.log(param); }; foo();"><pre class="notranslate"><span class="pl-s">'use strict'</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-en">foo</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">param</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">_obj$prop</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-c1">prop1</span><span class="pl-kos">)</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span> <span class="pl-c1">||</span> <span class="pl-s1">_obj$prop</span> <span class="pl-c1">===</span> <span class="pl-k">void</span> <span class="pl-c1">0</span> ? <span class="pl-k">void</span> <span class="pl-c1">0</span> : <span class="pl-s1">_obj$prop</span><span class="pl-kos">.</span><span class="pl-c1">prop2</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">_obj$prop</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">param</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto"><strong>Expected behavior</strong><br> Should not throw a <code class="notranslate">ReferenceError</code>, should log <code class="notranslate">undefined</code> to the console.</p> <p dir="auto"><strong>Babel Configuration (babel.config.js, .babelrc, package.json#babel, cli command, .eslintrc)</strong></p> <ul dir="auto"> <li>Filename: <code class="notranslate">babel.config.js</code></li> </ul> <p dir="auto">See REPL link above, or just add the <code class="notranslate">plugin-proposal-optional-chaining</code> (doesn't matter whether loose or not, happens in both modes)</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;plugings&quot;: [ &quot;@babel/plugin-proposal-optional-chaining&quot; ] }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-s">"plugings"</span>: <span class="pl-kos">[</span> <span class="pl-s">"@babel/plugin-proposal-optional-chaining"</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><strong>Environment</strong></p> <ul dir="auto"> <li>Babel version(s): 7.11.5</li> <li>Node/npm version: v14.7.0</li> <li>OS: macOS</li> <li>Monorepo: [e.g. yes/no/Lerna]</li> <li>How you are using Babel: CLI for repro</li> </ul>
0
<h1 dir="auto">What's Happening?</h1> <p dir="auto">When (somehow) which "defaultProfile" is not able to run like miss-typing "commandline" goes like "powershell.ex" (no e) so there is no program to run it, windows terminal just shuts down when opening terminal, (or not the command line program, like office program WINWORD.EXE =&gt; opens word program and terminal shuts down.) and never can be opened before finding profiles.json and change wrong thing manually or change defaultProfile to which it can be run on windows terminal.</p> <h1 dir="auto">Proposed technical implementation details</h1> <p dir="auto">So, If something that (Cannot use Windows terminal because of profiles.json) happens, Opening a popup "Can't load Terminal" with button open profiles.json <strong>before Windows Terminal shuts down</strong> like the image<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/29011440/59963221-eb476300-952a-11e9-9393-0a2d9830b270.png"><img src="https://user-images.githubusercontent.com/29011440/59963221-eb476300-952a-11e9-9393-0a2d9830b270.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">or just not load any kind of commandline and <strong>make a select screen</strong> which profile to load for user like this image<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/29011440/59963201-b1765c80-952a-11e9-8f13-b348df6e2ebf.png"><img src="https://user-images.githubusercontent.com/29011440/59963201-b1765c80-952a-11e9-8f13-b348df6e2ebf.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><em>BTW I just made image using mspaint</em></p>
<p dir="auto">From <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="458366572" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1343" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1343/hovercard" href="https://github.com/microsoft/terminal/pull/1343">#1343</a></p> <blockquote> <p dir="auto">Even more correct would be to specifically display a message that there was no default profile (though that might be too much for this release).</p> </blockquote> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> If we load the <code class="notranslate">profiles.json</code> and the <code class="notranslate">defaultProfile</code> doesn't exist in the list of profiles, we should display an error specific to that failure case.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> We should also use the <em>first</em> profile as the default <em>temporarily</em>. We'll need to make sure not to persist this runtime change.</li> </ul> <p dir="auto">Maybe also:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Check if the commandline is a path to a single executable, and if it is, warn if it doesn't exist? Dunno how we'd get the first arg from the commandline <em>easily</em> but it could totally be done.</li> </ul>
1
<p dir="auto">The <a href="https://github.com/zeit/next.js/commit/6e44cdef5f877a85d9015002d3f77640c0e1ba21#diff-0f2f34c098f5954f99483c9bd61e439dR46">recently added config option</a> for adding a custom bootstrap file to the main bundle is mentioned only in comments here and there so far, so thought to turn this into an actual task for clarity.</p> <p dir="auto">References:</p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="259490610" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/2969" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/2969/hovercard?comment_id=348158039&amp;comment_type=issue_comment" href="https://github.com/vercel/next.js/issues/2969#issuecomment-348158039">#2969 (comment)</a></li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="217887254" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/1556" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/1556/hovercard?comment_id=346933034&amp;comment_type=issue_comment" href="https://github.com/vercel/next.js/issues/1556#issuecomment-346933034">#1556 (comment)</a></li> </ul> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">I'd expect to</p> <ul dir="auto"> <li>find <code class="notranslate">config.clientBootstrap</code> documented in main README</li> <li>find an example showing how to use this (suggestion: use something common like babel-polyfill in the example to help issues such as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="240585724" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/2468" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/2468/hovercard" href="https://github.com/vercel/next.js/issues/2468">#2468</a>)</li> </ul> <p dir="auto">As a side note, it seems that there are no tests exercising this config option, but perhaps that can be seen as a different task than these docs.</p> <h2 dir="auto">Notes</h2> <p dir="auto">Something to be aware of with this config (and the docs): sadly this option does not help with everything. I tried to add EventSource polyfill for webpack-hot-middleware to make the dev mode work in IE11, but this custom bootstrap is injected too late and thus it does not help with this kind of polyfilling.</p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">When creating a <a href="https://facebook.github.io/react/docs/refs-and-the-dom.html" rel="nofollow">callback reference</a> to a dynamically imported component, the reference should resolve to the component as if it had been imported normally.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">The ref behaves strangely. The reference to the component doesn't seem to have any of the attributes or state of the component -- all <code class="notranslate">undefined</code>.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">Here's a nice smallish example. Bring your own boilerplate <code class="notranslate">components/page.js</code></p> <p dir="auto"><code class="notranslate">pages/refs.js</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import React, { Component } from 'react' import dynamic from 'next/dynamic' import Page from '../components/page' const Child = dynamic( import('../components/child') ) class Parent extends Component { onSubmit = () =&gt; { console.log(this.child.state.value) // undefined console.log(this.child.getValue()) // throws } render() { return ( &lt;div&gt; &lt;Child ref={ (child) =&gt; { this.child = child } } /&gt; &lt;button onClick={ this.onSubmit }&gt;Submit&lt;/button&gt; &lt;/div&gt; ) } } export default class extends Page { render() { return &lt;Parent /&gt; } }"><pre class="notranslate"><code class="notranslate">import React, { Component } from 'react' import dynamic from 'next/dynamic' import Page from '../components/page' const Child = dynamic( import('../components/child') ) class Parent extends Component { onSubmit = () =&gt; { console.log(this.child.state.value) // undefined console.log(this.child.getValue()) // throws } render() { return ( &lt;div&gt; &lt;Child ref={ (child) =&gt; { this.child = child } } /&gt; &lt;button onClick={ this.onSubmit }&gt;Submit&lt;/button&gt; &lt;/div&gt; ) } } export default class extends Page { render() { return &lt;Parent /&gt; } } </code></pre></div> <p dir="auto"><code class="notranslate">components/child.js</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import React, { Component } from 'react' export default class extends Component { constructor(props) { super(props) this.state = { value: 23 } this.getValue = () =&gt; String(this.state.value) } render() { return &lt;div&gt;{this.state.value}&lt;/div&gt; } }"><pre class="notranslate"><code class="notranslate">import React, { Component } from 'react' export default class extends Component { constructor(props) { super(props) this.state = { value: 23 } this.getValue = () =&gt; String(this.state.value) } render() { return &lt;div&gt;{this.state.value}&lt;/div&gt; } } </code></pre></div> <h2 dir="auto">Context</h2> <p dir="auto">I'm trying to create a wrapper around a wrapper around React-RTE. The first layer wrapper has a <code class="notranslate">getValue()</code> method one can use to extract the transformed value from React-RTE. The transformation is non-trivial and kind of expensive, so it makes sense to do it on-demand, and the component that should demand it is in the second-layer component. The first layer wrapper needs to be loaded dynamically (with SSR disabled).</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>3.0.6</td> </tr> <tr> <td>node</td> <td>6.9.1</td> </tr> <tr> <td>OS</td> <td>macOS 10.12.6</td> </tr> <tr> <td>browser</td> <td>Chrome 60.0.3112.90 (Official Build) (64-bit)</td> </tr> </tbody> </table>
0
<p dir="auto">hello i'm new with flutter. i've come with this error. I didn't see any code error warning in my codes.<br> have been using <strong>flutter clean</strong> and manually deleting /build folder on my project<br> and then re-run it, but the problem still appear.<br> Previously i never getting this error and run smoothly.</p> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="`compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3586:28: Error: Expected an identifier, but got '{'. compiler message: RowContainerr container, { compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3587:5: Error: Expected ';' before this. compiler message: Key key, compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:23: Error: Expected ';' before this. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:23: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:40: Error: Expected ';' before this. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:40: Error: Expected a class member, but got ':'. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:42: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:65: Error: Expected '{' before this. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:42: Error: 'MainAxisAlignment.start' isn't a legal method name. compiler message: Did you mean 'Row.start'? compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:65: Error: Expected a class member, but got ','. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:30: Error: Expected ';' before this. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:30: Error: Expected a class member, but got ':'. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:32: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:48: Error: Expected '{' before this. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:32: Error: 'MainAxisSize.max' isn't a legal method name. compiler message: Did you mean 'Row.max'? compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:48: Error: Expected a class member, but got ','. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:42: Error: Expected ';' before this. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:42: Error: Expected a class member, but got ':'. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:44: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:69: Error: Expected '{' before this. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:44: Error: 'CrossAxisAlignment.center' isn't a legal method name. compiler message: Did you mean 'Row.center'? compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:69: Error: Expected a class member, but got ','. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:23: Error: Expected ';' before this. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:23: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:40: Error: Expected ';' before this. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:40: Error: Expected a class member, but got ':'. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:42: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:64: Error: Expected '{' before this. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:42: Error: 'VerticalDirection.down' isn't a legal method name. compiler message: Did you mean 'Row.down'? compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:64: Error: Expected a class member, but got ','. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:9: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:9: Error: Expected a class member, but got '&lt;'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:10: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: Operator declarations must be preceeded by the keyword 'operator'. compiler message: Try adding the keyword 'operator'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:18: Error: Expected '{' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: Operator '&gt;' should have exactly one parameter. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:18: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:26: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:26: Error: Expected a class member, but got ':'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:34: Error: Expected an identifier, but got '&lt;'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:35: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:35: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:35: Error: Duplicated definition of 'Widget'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Operator declarations must be preceeded by the keyword 'operator'. compiler message: Try adding the keyword 'operator'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: Expected '{' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Operator '&gt;' should have exactly one parameter. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Duplicated definition of '&gt;'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: Operator declarations must be preceeded by the keyword 'operator'. compiler message: Try adding the keyword 'operator'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:44: Error: Expected '{' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: Operator '[]' should have exactly one parameter. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:44: Error: Expected a class member, but got ','. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3595:4: Error: Expected a declaration, but got ')'. compiler message: }) : super( compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3595:6: Error: Expected a declaration, but got ':'. compiler message: }) : super( compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3595:8: Error: Expected an identifier, but got 'super'. compiler message: }) : super( compiler message: ^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3596:13: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: children: children, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3597:8: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: key: key, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3598:14: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: direction: Axis.horizontal, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3599:22: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: mainAxisAlignment: mainAxisAlignment, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3600:17: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: mainAxisSize: mainAxisSize, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3601:23: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: crossAxisAlignment: crossAxisAlignment, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3602:18: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: textDirection: textDirection, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3603:22: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: verticalDirection: verticalDirection, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3604:17: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: textBaseline: textBaseline, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3605:4: Error: Expected a function body or '=&gt;'. compiler message: Try adding {}. compiler message: ); compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3606:1: Error: Expected a declaration, but got '}'. compiler message: } compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3586:3: Error: Type 'RowContainerr' not found. compiler message: RowContainerr container, { compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/about.dart:286:11: Error: Method not found: 'Row'. compiler message: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/app_bar.dart:415:21: Error: Method not found: 'Row'. compiler message: actions = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart:466:18: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/button_bar.dart:57:18: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/data_table.dart:406:19: Error: Method not found: 'Row'. compiler message: label = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/data_table.dart:459:19: Error: Method not found: 'Row'. compiler message: label = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/date_picker.dart:974:28: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/dropdown.dart:643:20: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/expansion_panel.dart:139:30: Error: Method not found: 'Row'. compiler message: final Row header = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/flat_button.dart:93:20: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/floating_action_button.dart:116:21: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart:127:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/outline_button.dart:102:20: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/paginated_data_table.dart:404:30: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/paginated_data_table.dart:434:30: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/raised_button.dart:107:20: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/snack_bar.dart:245:32: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:348:20: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:449:18: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:558:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:594:24: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/tabs.dart:1316:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/text_selection.dart:53:20: Error: Method not found: 'Row'. compiler message: child: new Row(mainAxisSize: MainAxisSize.min, children: items) compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/time_picker.dart:1599:28: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart:32:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3586:3: Error: 'RowContainerr' isn't a type. compiler message: RowContainerr container, { compiler message: ^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:10: Error: Duplicated name: Widget compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ Compiler failed on D:\ANDI\LABS\PROGRAMMING\Flutter\futsalin_app\lib/main.dart FAILURE: Build failed with an exception. * Where: Script 'C:\src\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 435 * What went wrong: Execution failed for task ':app:flutterBuildDebug'. &gt; Process 'command 'C:\src\flutter\bin\flutter.bat'' finished with non-zero exit value 1 `"><pre class="notranslate"><code class="notranslate">`compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3586:28: Error: Expected an identifier, but got '{'. compiler message: RowContainerr container, { compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3587:5: Error: Expected ';' before this. compiler message: Key key, compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:23: Error: Expected ';' before this. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:23: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:40: Error: Expected ';' before this. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:40: Error: Expected a class member, but got ':'. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:42: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:65: Error: Expected '{' before this. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:42: Error: 'MainAxisAlignment.start' isn't a legal method name. compiler message: Did you mean 'Row.start'? compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3588:65: Error: Expected a class member, but got ','. compiler message: MainAxisAlignment mainAxisAlignment: MainAxisAlignment.start, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:30: Error: Expected ';' before this. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:30: Error: Expected a class member, but got ':'. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:32: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:48: Error: Expected '{' before this. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:32: Error: 'MainAxisSize.max' isn't a legal method name. compiler message: Did you mean 'Row.max'? compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3589:48: Error: Expected a class member, but got ','. compiler message: MainAxisSize mainAxisSize: MainAxisSize.max, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:42: Error: Expected ';' before this. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:42: Error: Expected a class member, but got ':'. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:44: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:69: Error: Expected '{' before this. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:44: Error: 'CrossAxisAlignment.center' isn't a legal method name. compiler message: Did you mean 'Row.center'? compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3590:69: Error: Expected a class member, but got ','. compiler message: CrossAxisAlignment crossAxisAlignment: CrossAxisAlignment.center, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:23: Error: Expected ';' before this. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:23: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:40: Error: Expected ';' before this. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:40: Error: Expected a class member, but got ':'. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:42: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^^^^^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:64: Error: Expected '{' before this. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:42: Error: 'VerticalDirection.down' isn't a legal method name. compiler message: Did you mean 'Row.down'? compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3592:64: Error: Expected a class member, but got ','. compiler message: VerticalDirection verticalDirection: VerticalDirection.down, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:9: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:9: Error: Expected a class member, but got '&lt;'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:10: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: Operator declarations must be preceeded by the keyword 'operator'. compiler message: Try adding the keyword 'operator'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:18: Error: Expected '{' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:16: Error: Operator '&gt;' should have exactly one parameter. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:18: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:26: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:26: Error: Expected a class member, but got ':'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:34: Error: Expected an identifier, but got '&lt;'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:35: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:35: Error: Variables must be declared using the keywords 'const', 'final', 'var' or a type name. compiler message: Try adding the name of the type of the variable or the keyword 'var'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Expected ';' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:35: Error: Duplicated definition of 'Widget'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Operator declarations must be preceeded by the keyword 'operator'. compiler message: Try adding the keyword 'operator'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: Expected '{' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Operator '&gt;' should have exactly one parameter. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:41: Error: Duplicated definition of '&gt;'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: Operator declarations must be preceeded by the keyword 'operator'. compiler message: Try adding the keyword 'operator'. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: A method declaration needs an explicit list of parameters. compiler message: Try adding a parameter list to the method declaration. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:44: Error: Expected '{' before this. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:42: Error: Operator '[]' should have exactly one parameter. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:44: Error: Expected a class member, but got ','. compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3595:4: Error: Expected a declaration, but got ')'. compiler message: }) : super( compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3595:6: Error: Expected a declaration, but got ':'. compiler message: }) : super( compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3595:8: Error: Expected an identifier, but got 'super'. compiler message: }) : super( compiler message: ^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3596:13: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: children: children, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3597:8: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: key: key, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3598:14: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: direction: Axis.horizontal, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3599:22: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: mainAxisAlignment: mainAxisAlignment, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3600:17: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: mainAxisSize: mainAxisSize, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3601:23: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: crossAxisAlignment: crossAxisAlignment, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3602:18: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: textDirection: textDirection, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3603:22: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: verticalDirection: verticalDirection, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3604:17: Error: Non-optional parameters can't have a default value. compiler message: Try removing the default value or making the parameter optional. compiler message: textBaseline: textBaseline, compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3605:4: Error: Expected a function body or '=&gt;'. compiler message: Try adding {}. compiler message: ); compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3606:1: Error: Expected a declaration, but got '}'. compiler message: } compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3586:3: Error: Type 'RowContainerr' not found. compiler message: RowContainerr container, { compiler message: ^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/about.dart:286:11: Error: Method not found: 'Row'. compiler message: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/app_bar.dart:415:21: Error: Method not found: 'Row'. compiler message: actions = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart:466:18: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/button_bar.dart:57:18: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/data_table.dart:406:19: Error: Method not found: 'Row'. compiler message: label = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/data_table.dart:459:19: Error: Method not found: 'Row'. compiler message: label = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/date_picker.dart:974:28: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/dropdown.dart:643:20: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/expansion_panel.dart:139:30: Error: Method not found: 'Row'. compiler message: final Row header = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/flat_button.dart:93:20: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/floating_action_button.dart:116:21: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/grid_tile_bar.dart:127:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/outline_button.dart:102:20: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/paginated_data_table.dart:404:30: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/paginated_data_table.dart:434:30: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/raised_button.dart:107:20: Error: Method not found: 'Row'. compiler message: child = new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/snack_bar.dart:245:32: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:348:20: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:449:18: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:558:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/stepper.dart:594:24: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/tabs.dart:1316:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/text_selection.dart:53:20: Error: Method not found: 'Row'. compiler message: child: new Row(mainAxisSize: MainAxisSize.min, children: items) compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/time_picker.dart:1599:28: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/material/user_accounts_drawer_header.dart:32:22: Error: Method not found: 'Row'. compiler message: child: new Row( compiler message: ^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3586:3: Error: 'RowContainerr' isn't a type. compiler message: RowContainerr container, { compiler message: ^^^^^^^^^^^^^ compiler message: file:///C:/src/flutter/packages/flutter/lib/src/widgets/basic.dart:3594:10: Error: Duplicated name: Widget compiler message: List&lt;Widget&gt; children: const &lt;Widget&gt;[], compiler message: ^ Compiler failed on D:\ANDI\LABS\PROGRAMMING\Flutter\futsalin_app\lib/main.dart FAILURE: Build failed with an exception. * Where: Script 'C:\src\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 435 * What went wrong: Execution failed for task ':app:flutterBuildDebug'. &gt; Process 'command 'C:\src\flutter\bin\flutter.bat'' finished with non-zero exit value 1 ` </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> <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">I'm using a TextField and have set its alignment to center.<br> <code class="notranslate">body: new Container( color: Colors.blue, child: new Center( child: new TextField( decoration: new InputDecoration( hintText: "Anything goes here" ), textAlign: TextAlign.center, ), ), ),</code></p> <p dir="auto">However, I have noticed that after I enter the first character, the cursor blinks at the beginning of the text field, after that the position stays at the center. This is only view-able after inputting the first character.</p>
0
<p dir="auto">Is there any plugin for taking the camera feed as a byte array, do preprocessing and output face recognition and face overkays with opengl maybe like the face filters in instagram?</p>
<p dir="auto">Is it possible to access the real-time camera frame feed to do pre-processing or to be used for ML implementations like face-recognition, Image overlays, filters, etc.?</p>
1
<p dir="auto">My .babelrc is below:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ 'presets': ['react', 'stage-0', 'es2015'] }"><pre class="notranslate"><code class="notranslate">{ 'presets': ['react', 'stage-0', 'es2015'] } </code></pre></div> <p dir="auto">If I move stage-0 preset after es2015, I get the same issue as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="114961447" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/2801" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/2801/hovercard" href="https://github.com/babel/babel/issues/2801">#2801</a>, if I leave it as above, decorators are ignored.</p>
1
<p dir="auto">I'd like to be able to register "sub-blueprints" using <code class="notranslate">Blueprint.register_blueprint(*args, **kwargs)</code>. This would register the nested blueprints with an app when the "parent" is registered with it. All parameters are preserved, other than <code class="notranslate">url_prefix</code>, which is handled similarly to in <code class="notranslate">add_url_rule</code>. A naíve implementation could look like this:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Blueprint(object): ... def register_blueprint(self, blueprint, **options): def deferred(state): url_prefix = options.get('url_prefix') if url_prefix is None: url_prefix = blueprint.url_prefix if 'url_prefix' in options: del options['url_prefix'] state.app.register_blueprint(blueprint, url_prefix, **options) self.record(deferred)"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">Blueprint</span>(<span class="pl-s1">object</span>): ... <span class="pl-k">def</span> <span class="pl-en">register_blueprint</span>(<span class="pl-s1">self</span>, <span class="pl-s1">blueprint</span>, <span class="pl-c1">**</span><span class="pl-s1">options</span>): <span class="pl-k">def</span> <span class="pl-en">deferred</span>(<span class="pl-s1">state</span>): <span class="pl-s1">url_prefix</span> <span class="pl-c1">=</span> <span class="pl-s1">options</span>.<span class="pl-en">get</span>(<span class="pl-s">'url_prefix'</span>) <span class="pl-k">if</span> <span class="pl-s1">url_prefix</span> <span class="pl-c1">is</span> <span class="pl-c1">None</span>: <span class="pl-s1">url_prefix</span> <span class="pl-c1">=</span> <span class="pl-s1">blueprint</span>.<span class="pl-s1">url_prefix</span> <span class="pl-k">if</span> <span class="pl-s">'url_prefix'</span> <span class="pl-c1">in</span> <span class="pl-s1">options</span>: <span class="pl-k">del</span> <span class="pl-s1">options</span>[<span class="pl-s">'url_prefix'</span>] <span class="pl-s1">state</span>.<span class="pl-s1">app</span>.<span class="pl-en">register_blueprint</span>(<span class="pl-s1">blueprint</span>, <span class="pl-s1">url_prefix</span>, <span class="pl-c1">**</span><span class="pl-s1">options</span>) <span class="pl-s1">self</span>.<span class="pl-en">record</span>(<span class="pl-s1">deferred</span>)</pre></div>
<p dir="auto">On Heroku, we can't add a local config <code class="notranslate">instance/config.py</code> that's not part of the repo. Instead, they support configuration through env vars. Document this pattern.</p> <p dir="auto"><code class="notranslate">myapp/config.py</code>:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MAIL_USERNAME = os.environ.get('FLASK_MAIL_USERNAME', 'default') LDAP_PORT = int(os.environ.get('FLASK_LDAP_PORT', 636))"><pre class="notranslate"><span class="pl-v">MAIL_USERNAME</span> <span class="pl-c1">=</span> <span class="pl-s1">os</span>.<span class="pl-s1">environ</span>.<span class="pl-en">get</span>(<span class="pl-s">'FLASK_MAIL_USERNAME'</span>, <span class="pl-s">'default'</span>) <span class="pl-v">LDAP_PORT</span> <span class="pl-c1">=</span> <span class="pl-en">int</span>(<span class="pl-s1">os</span>.<span class="pl-s1">environ</span>.<span class="pl-en">get</span>(<span class="pl-s">'FLASK_LDAP_PORT'</span>, <span class="pl-c1">636</span>))</pre></div>
0
<p dir="auto">The detection seems incorrect? (I think 9600KF has native FMA support?)<br> On 1.7.0</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; versioninfo() Julia Version 1.7.0 Commit 3bf9d17731 (2021-11-30 12:12 UTC) Platform Info: OS: Windows (x86_64-w64-mingw32) CPU: Intel(R) Core(TM) i5-9600KF CPU @ 3.70GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-12.0.1 (ORCJIT, skylake) Environment: JULIA_CUDA_VERSION = 11.4.0 julia&gt; @code_native fma(1.0,1.0,1.0) .text ; ┌ @ floatfuncs.jl:347 within `fma` pushq %rbp movq %rsp, %rbp ; │┌ @ floatfuncs.jl:336 within `fma_llvm` vfmadd213sd %xmm2, %xmm1, %xmm0 # xmm0 = (xmm1 * xmm0) + xmm2 ; │└ popq %rbp retq nopl (%rax,%rax)"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-c1">versioninfo</span>() Julia Version <span class="pl-c1">1.7</span>.<span class="pl-c1">0</span> Commit <span class="pl-c1">3</span>bf9d17731 (<span class="pl-c1">2021</span><span class="pl-k">-</span><span class="pl-c1">11</span><span class="pl-k">-</span><span class="pl-c1">30</span> <span class="pl-c1">12</span><span class="pl-k">:</span><span class="pl-c1">12</span> UTC) Platform Info<span class="pl-k">:</span> OS<span class="pl-k">:</span> Windows (x86_64<span class="pl-k">-</span>w64<span class="pl-k">-</span>mingw32) CPU<span class="pl-k">:</span> <span class="pl-c1">Intel</span>(R) <span class="pl-c1">Core</span>(TM) i5<span class="pl-k">-</span><span class="pl-c1">9600</span>KF CPU @ <span class="pl-c1">3.70</span>GHz WORD_SIZE<span class="pl-k">:</span> <span class="pl-c1">64</span> LIBM<span class="pl-k">:</span> libopenlibm LLVM<span class="pl-k">:</span> libLLVM<span class="pl-k">-</span><span class="pl-c1">12.0</span>.<span class="pl-c1">1</span> (ORCJIT, skylake) Environment<span class="pl-k">:</span> JULIA_CUDA_VERSION <span class="pl-k">=</span> <span class="pl-c1">11.4</span>.<span class="pl-c1">0</span> julia<span class="pl-k">&gt;</span> <span class="pl-c1">@code_native</span> <span class="pl-c1">fma</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-k">.</span>text ; ┌ @ floatfuncs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">347</span> within <span class="pl-s"><span class="pl-pds">`</span>fma<span class="pl-pds">`</span></span> pushq <span class="pl-k">%</span>rbp movq <span class="pl-k">%</span>rsp, <span class="pl-k">%</span>rbp ; │┌ @ floatfuncs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">336</span> within <span class="pl-s"><span class="pl-pds">`</span>fma_llvm<span class="pl-pds">`</span></span> vfmadd213sd <span class="pl-k">%</span>xmm2, <span class="pl-k">%</span>xmm1, <span class="pl-k">%</span>xmm0 <span class="pl-c"><span class="pl-c">#</span> xmm0 = (xmm1 * xmm0) + xmm2</span> ; │└ popq <span class="pl-k">%</span>rbp retq nopl (<span class="pl-k">%</span>rax,<span class="pl-k">%</span>rax)</pre></div> <p dir="auto">on master</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; versioninfo() Julia Version 1.8.0-DEV.1090 Commit d16f4806e9 (2021-12-01 10:54 UTC) Platform Info: OS: Windows (x86_64-w64-mingw32) CPU: Intel(R) Core(TM) i5-9600KF CPU @ 3.70GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-12.0.1 (ORCJIT, skylake) Environment: JULIA_CUDA_VERSION = 11.4.0 julia&gt; @code_native fma(1.0,1.0,1.0) .text .file &quot;fma&quot; .globl julia_fma_552 # -- Begin function julia_fma_552 .p2align 4, 0x90 .type julia_fma_552,@function julia_fma_552: # @julia_fma_552 ; ┌ @ floatfuncs.jl:416 within `fma` .cfi_startproc # %bb.0: # %L5 pushq %rbp .cfi_def_cfa_offset 16 .cfi_offset %rbp, -16 movq %rsp, %rbp .cfi_def_cfa_register %rbp subq $32, %rsp movabsq $j_fma_emulated_554, %rax callq *%rax addq $32, %rsp popq %rbp retq .Lfunc_end0: .size julia_fma_552, .Lfunc_end0-julia_fma_552 .cfi_endproc ; └ # -- End function .section &quot;.note.GNU-stack&quot;,&quot;&quot;,@progbits"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-c1">versioninfo</span>() Julia Version <span class="pl-c1">1.8</span>.<span class="pl-c1">0</span><span class="pl-k">-</span>DEV.<span class="pl-c1">1090</span> Commit d16f4806e9 (<span class="pl-c1">2021</span><span class="pl-k">-</span><span class="pl-c1">12</span><span class="pl-k">-</span><span class="pl-c1">01</span> <span class="pl-c1">10</span><span class="pl-k">:</span><span class="pl-c1">54</span> UTC) Platform Info<span class="pl-k">:</span> OS<span class="pl-k">:</span> Windows (x86_64<span class="pl-k">-</span>w64<span class="pl-k">-</span>mingw32) CPU<span class="pl-k">:</span> <span class="pl-c1">Intel</span>(R) <span class="pl-c1">Core</span>(TM) i5<span class="pl-k">-</span><span class="pl-c1">9600</span>KF CPU @ <span class="pl-c1">3.70</span>GHz WORD_SIZE<span class="pl-k">:</span> <span class="pl-c1">64</span> LIBM<span class="pl-k">:</span> libopenlibm LLVM<span class="pl-k">:</span> libLLVM<span class="pl-k">-</span><span class="pl-c1">12.0</span>.<span class="pl-c1">1</span> (ORCJIT, skylake) Environment<span class="pl-k">:</span> JULIA_CUDA_VERSION <span class="pl-k">=</span> <span class="pl-c1">11.4</span>.<span class="pl-c1">0</span> julia<span class="pl-k">&gt;</span> <span class="pl-c1">@code_native</span> <span class="pl-c1">fma</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-k">.</span>text <span class="pl-k">.</span>file <span class="pl-s"><span class="pl-pds">"</span>fma<span class="pl-pds">"</span></span> <span class="pl-k">.</span>globl julia_fma_552 <span class="pl-c"><span class="pl-c">#</span> -- Begin function julia_fma_552</span> <span class="pl-k">.</span>p2align <span class="pl-c1">4</span>, <span class="pl-c1">0x90</span> <span class="pl-k">.</span>type julia_fma_552,<span class="pl-c1">@function</span> julia_fma_552<span class="pl-k">:</span> <span class="pl-c"><span class="pl-c">#</span> @julia_fma_552</span> ; ┌ @ floatfuncs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">416</span> within <span class="pl-s"><span class="pl-pds">`</span>fma<span class="pl-pds">`</span></span> <span class="pl-k">.</span>cfi_startproc <span class="pl-c"><span class="pl-c">#</span> %bb.0: # %L5</span> pushq <span class="pl-k">%</span>rbp <span class="pl-k">.</span>cfi_def_cfa_offset <span class="pl-c1">16</span> <span class="pl-k">.</span>cfi_offset <span class="pl-k">%</span>rbp, <span class="pl-k">-</span><span class="pl-c1">16</span> movq <span class="pl-k">%</span>rsp, <span class="pl-k">%</span>rbp <span class="pl-k">.</span>cfi_def_cfa_register <span class="pl-k">%</span>rbp subq <span class="pl-k">$</span>32, <span class="pl-k">%</span>rsp movabsq <span class="pl-k">$</span>j_fma_emulated_554, <span class="pl-k">%</span>rax callq <span class="pl-k">*%</span>rax addq <span class="pl-k">$</span>32, <span class="pl-k">%</span>rsp popq <span class="pl-k">%</span>rbp retq <span class="pl-k">.</span>Lfunc_end0<span class="pl-k">:</span> <span class="pl-k">.</span>size julia_fma_552, <span class="pl-k">.</span>Lfunc_end0<span class="pl-k">-</span>julia_fma_552 <span class="pl-k">.</span>cfi_endproc ; └ <span class="pl-c"><span class="pl-c">#</span> -- End function</span> <span class="pl-k">.</span>section <span class="pl-s"><span class="pl-pds">"</span>.note.GNU-stack<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>,<span class="pl-c1">@progbits</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; func=fma; julia&gt; @test func(-1.9369631f13, 2.1513551f-7, -1.7354427f-24) == -4.1670958f6 Test Passed julia&gt; for func in (fma, fma) @test func(-1.9369631f13, 2.1513551f-7, -1.7354427f-24) == -4.1670958f6 end Test Failed at REPL[37]:2 Expression: func(-1.9369631f13, 2.1513551f-7, -1.7354427f-24) == -4.1670958f6 Evaluated: -4.1670955f6 == -4.1670958f6 ERROR: There was an error during testing "><pre class="notranslate"><code class="notranslate">julia&gt; func=fma; julia&gt; @test func(-1.9369631f13, 2.1513551f-7, -1.7354427f-24) == -4.1670958f6 Test Passed julia&gt; for func in (fma, fma) @test func(-1.9369631f13, 2.1513551f-7, -1.7354427f-24) == -4.1670958f6 end Test Failed at REPL[37]:2 Expression: func(-1.9369631f13, 2.1513551f-7, -1.7354427f-24) == -4.1670958f6 Evaluated: -4.1670955f6 == -4.1670958f6 ERROR: There was an error during testing </code></pre></div> <p dir="auto">I'm really not sure how this is possible (This is the case both on 1.6 and master)</p>
1
<h3 dir="auto">Bug summary</h3> <p dir="auto">When using <code class="notranslate">matplotlib.colorbar.make_axes</code> function, <code class="notranslate">plt.close()</code> does not clear the new colorbar axes from memory. Tested for the Qt5 backend only. Maybe related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1083953332" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/22002" data-hovercard-type="pull_request" data-hovercard-url="/matplotlib/matplotlib/pull/22002/hovercard" href="https://github.com/matplotlib/matplotlib/pull/22002">#22002</a>, at least in the sense that I see no leak for Qt5 when no colorbar axes are added.</p> <h3 dir="auto">Code for reproduction</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="%pylab qt5 from matplotlib import colorbar import psutil import gc p = psutil.Process() for i in range(5): fig, ax = plt.subplots(1,1) ax.imshow(random.normal(size=(100,100))) cax = colorbar.make_axes(ax) plt.savefig(&quot;test.png&quot;) plt.pause(0.1) plt.close(fig) del fig del ax del cax gc.collect() print(p.memory_full_info().uss/1e6)"><pre class="notranslate"><span class="pl-c1">%</span><span class="pl-s1">pylab</span> <span class="pl-s1">qt5</span> <span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">colorbar</span> <span class="pl-k">import</span> <span class="pl-s1">psutil</span> <span class="pl-k">import</span> <span class="pl-s1">gc</span> <span class="pl-s1">p</span> <span class="pl-c1">=</span> <span class="pl-s1">psutil</span>.<span class="pl-v">Process</span>() <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">5</span>): <span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>(<span class="pl-c1">1</span>,<span class="pl-c1">1</span>) <span class="pl-s1">ax</span>.<span class="pl-en">imshow</span>(<span class="pl-s1">random</span>.<span class="pl-en">normal</span>(<span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">100</span>,<span class="pl-c1">100</span>))) <span class="pl-s1">cax</span> <span class="pl-c1">=</span> <span class="pl-s1">colorbar</span>.<span class="pl-en">make_axes</span>(<span class="pl-s1">ax</span>) <span class="pl-s1">plt</span>.<span class="pl-en">savefig</span>(<span class="pl-s">"test.png"</span>) <span class="pl-s1">plt</span>.<span class="pl-en">pause</span>(<span class="pl-c1">0.1</span>) <span class="pl-s1">plt</span>.<span class="pl-en">close</span>(<span class="pl-s1">fig</span>) <span class="pl-k">del</span> <span class="pl-s1">fig</span> <span class="pl-k">del</span> <span class="pl-s1">ax</span> <span class="pl-k">del</span> <span class="pl-s1">cax</span> <span class="pl-s1">gc</span>.<span class="pl-en">collect</span>() <span class="pl-en">print</span>(<span class="pl-s1">p</span>.<span class="pl-en">memory_full_info</span>().<span class="pl-s1">uss</span><span class="pl-c1">/</span><span class="pl-c1">1e6</span>)</pre></div> <h3 dir="auto">Actual outcome</h3> <p dir="auto">250.744832<br> 255.209472<br> 259.514368<br> 264.13056<br> 268.099584</p> <h3 dir="auto">Expected outcome</h3> <p dir="auto">Constant memory usage, as is when the line<br> <code class="notranslate"> cax = colorbar.make_axes(ax)</code><br> is commented out.</p> <h3 dir="auto">Additional information</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Operating system</h3> <p dir="auto">Windows</p> <h3 dir="auto">Matplotlib Version</h3> <p dir="auto">3.4.2</p> <h3 dir="auto">Matplotlib Backend</h3> <p dir="auto">Qt5Agg (PyQt)</p> <h3 dir="auto">Python version</h3> <p dir="auto">3.7.6</p> <h3 dir="auto">Jupyter version</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Installation</h3> <p dir="auto">from source (.tar.gz)</p>
<p dir="auto">Python version: 2.7; Windows version: 7; Matplotlib version 1.2.1</p> <p dir="auto">I'm making an interactive plot (set with <code class="notranslate">plt.ion()</code>) while some other parts of my script do some calculations, and I update the plot frequently with calls to <code class="notranslate">plt.draw()</code>. I noticed that when I click the figure window of the interactively drawn plot and try to move it around, the figure stops updating and Windows tags the process "Not Responding", but the script continues to run without a problem. If I don't click the figure window, everything is ok.</p> <p dir="auto">I've read that some people have had this issue before <a href="http://wxpython-users.1045709.n5.nabble.com/matplotlib-amp-wxPython-question-td2358678.html" rel="nofollow">on other forums</a> and they got around the problem by using different backends, but my computer doesn't respond differently to other backends. What can I do?</p>
0
<h3 dir="auto"><g-emoji class="g-emoji" alias="computer" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4bb.png">💻</g-emoji></h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Would you like to work on a fix?</li> </ul> <h3 dir="auto">How are you using Babel?</h3> <p dir="auto">rollup-plugin-babel</p> <h3 dir="auto">Input code</h3> <p dir="auto">I rollup the following code</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function getRandomString(len) { let s = '' while (s.length &lt; len) s += Math.random().toString(36).substr(2, len - s.length) return s }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">getRandomString</span><span class="pl-kos">(</span><span class="pl-s1">len</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> <span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-s">''</span> <span class="pl-k">while</span> <span class="pl-kos">(</span><span class="pl-s1">s</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">&lt;</span> <span class="pl-s1">len</span><span class="pl-kos">)</span> <span class="pl-s1">s</span> <span class="pl-c1">+=</span> <span class="pl-v">Math</span><span class="pl-kos">.</span><span class="pl-en">random</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toString</span><span class="pl-kos">(</span><span class="pl-c1">36</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">substr</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">,</span> <span class="pl-s1">len</span> <span class="pl-c1">-</span> <span class="pl-s1">s</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">)</span> <span class="pl-k">return</span> <span class="pl-s1">s</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">it converted to</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" function getRandomString(e) { for (var n = &quot;&quot;; n.length &lt; e;) { n += Math.random().toString(36).substr(2, e - n.length); } return s; }"><pre class="notranslate"> <span class="pl-k">function</span> <span class="pl-en">getRandomString</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-s">""</span><span class="pl-kos">;</span> <span class="pl-s1">n</span><span class="pl-kos">.</span><span class="pl-c1">length</span> <span class="pl-c1">&lt;</span> <span class="pl-s1">e</span><span class="pl-kos">;</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">n</span> <span class="pl-c1">+=</span> <span class="pl-v">Math</span><span class="pl-kos">.</span><span class="pl-en">random</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toString</span><span class="pl-kos">(</span><span class="pl-c1">36</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">substr</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">,</span> <span class="pl-s1">e</span> <span class="pl-c1">-</span> <span class="pl-s1">n</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-s1">s</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Configuration file name</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Configuration</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export default { input: './index.js', plugins: [ babel({ &quot;presets&quot;: [ &quot;@babel/preset-env&quot;, ], &quot;plugins&quot;: [ &quot;@babel/plugin-proposal-object-rest-spread&quot;, &quot;@babel/plugin-proposal-optional-chaining&quot; ] }), // uglify(), ], output: [ {file: './dist/bundle.min.js', name: &quot;Ingrow&quot;, format: 'iife'}, {file: './dist/index.js', exports: &quot;default&quot;, format: 'cjs' } ] }"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">{</span> <span class="pl-c1">input</span>: <span class="pl-s">'./index.js'</span><span class="pl-kos">,</span> <span class="pl-c1">plugins</span>: <span class="pl-kos">[</span> <span class="pl-en">babel</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-s">"presets"</span>: <span class="pl-kos">[</span> <span class="pl-s">"@babel/preset-env"</span><span class="pl-kos">,</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s">"plugins"</span>: <span class="pl-kos">[</span> <span class="pl-s">"@babel/plugin-proposal-object-rest-spread"</span><span class="pl-kos">,</span> <span class="pl-s">"@babel/plugin-proposal-optional-chaining"</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">// uglify(),</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">output</span>: <span class="pl-kos">[</span> <span class="pl-kos">{</span><span class="pl-c1">file</span>: <span class="pl-s">'./dist/bundle.min.js'</span><span class="pl-kos">,</span> <span class="pl-c1">name</span>: <span class="pl-s">"Ingrow"</span><span class="pl-kos">,</span> <span class="pl-c1">format</span>: <span class="pl-s">'iife'</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-c1">file</span>: <span class="pl-s">'./dist/index.js'</span><span class="pl-kos">,</span> <span class="pl-c1">exports</span>: <span class="pl-s">"default"</span><span class="pl-kos">,</span> <span class="pl-c1">format</span>: <span class="pl-s">'cjs'</span> <span class="pl-kos">}</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Current and expected behavior</h3> <p dir="auto">to give something that doesn't make error<br> now its made Uncaught ReferenceError: s is not defined</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>"@babel/cli": "^7.14.5",</li> <li>"rollup": "^2.52.2",</li> <li>node version: v12.18.3</li> </ul> <h3 dir="auto">Possible solution</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Additional context</h3> <p dir="auto"><em>No response</em></p>
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>Current Behavior</strong><br> I have upgraded from babel 6.25.0 to @babel/core 7.0.0 by using the <code class="notranslate">babel-upgrade --write</code> comand.</p> <p dir="auto">I am using webpack and babel together. I am able to run webpack-dev-server fine after the upgrade. When I attempt to start my app in prod and run my build command, the build immediately fails pointing to <code class="notranslate">@babel/core</code> within <code class="notranslate">babel-loader</code> with this error:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ERROR in ./src/index.jsx Module build failed (from ./node_modules/babel-loader/lib/index.js): TypeError: Invalid value used as weak map key at WeakMap.set (&lt;anonymous&gt;) at loadCachedDescriptor (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:84:20) at createPluginDescriptors.map.desc (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:63:108) at Array.map (&lt;anonymous&gt;) at alias (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:63:96) at cachedFunction (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/caching.js:33:19) at plugins.plugins (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:28:77) at mergeChainOpts (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-chain.js:319:26) at /Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-chain.js:283:7 at buildRootChain (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-chain.js:68:29) at loadPrivatePartialConfig (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/partial.js:85:55) at loadFullConfig (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/full.js:43:39) at process.nextTick (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/transform.js:28:33) at process._tickCallback (internal/process/next_tick.js:61:11)"><pre class="notranslate"><span class="pl-c1">ERROR</span> <span class="pl-k">in</span> <span class="pl-kos">.</span><span class="pl-c1">/</span><span class="pl-s1">src</span><span class="pl-c1">/</span><span class="pl-s1">index</span><span class="pl-kos">.</span><span class="pl-c1">jsx</span> <span class="pl-v">Module</span> <span class="pl-s1">build</span> <span class="pl-en">failed</span> <span class="pl-kos">(</span><span class="pl-s1">from</span> <span class="pl-kos">.</span><span class="pl-c1">/</span><span class="pl-s1">node_modules</span><span class="pl-c1">/</span><span class="pl-s1">babel</span><span class="pl-c1">-</span><span class="pl-s1">loader</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">index</span><span class="pl-kos">.</span><span class="pl-c1">js</span><span class="pl-kos">)</span>: TypeError: <span class="pl-v">Invalid</span> <span class="pl-s1">value</span> <span class="pl-s1">used</span> <span class="pl-k">as</span> <span class="pl-s1">weak</span> <span class="pl-s1">map</span> <span class="pl-s1">key</span> <span class="pl-s1">at</span> <span class="pl-v">WeakMap</span><span class="pl-kos">.</span><span class="pl-c1">set</span> <span class="pl-kos">(</span><span class="pl-c1">&lt;</span><span class="pl-ent">anonymous</span><span class="pl-c1">&gt;</span>) at loadCachedDescriptor (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:84:20) at createPluginDescriptors.map.desc (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:63:108) at Array.map (<span class="pl-c1">&lt;</span><span class="pl-ent">anonymous</span><span class="pl-c1">&gt;</span>) at alias (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:63:96) at cachedFunction (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/caching.js:33:19) at plugins.plugins (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-descriptors.js:28:77) at mergeChainOpts (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-chain.js:319:26) at /Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-chain.js:283:7 at buildRootChain (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/config-chain.js:68:29) at loadPrivatePartialConfig (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/partial.js:85:55) at loadFullConfig (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/config/full.js:43:39) at process.nextTick (/Users/tjohnson/Public/repos/api-manager-web/node_modules/@babel/core/lib/transform.js:28:33) at process._tickCallback (internal/process/next_tick.js:61:11)</pre></div> <p dir="auto">I have spent a long time looking for similiar issues, opened a question on SO, and unfortunately I have not had any luck resolving this. Thank you for the help.</p> <p dir="auto"><strong>Expected behavior/code</strong><br> I expect to be able to run my build command and bundle my app for prod.</p> <p dir="auto"><strong>Babel Configuration (.babelrc, package.json, cli command)</strong></p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;presets&quot;: [&quot;@babel/preset-env&quot;, &quot;@babel/preset-react&quot;, &quot;react-app&quot;], &quot;env&quot;: { &quot;development&quot;: { &quot;plugins&quot;: [&quot;react-hot-loader/babel&quot;] }, &quot;test&quot;: { &quot;plugins&quot;: [ [&quot;webpack-alias&quot;, { &quot;config&quot;: &quot;./build_config/webpack.common.js&quot; }], &quot;istanbul&quot;, &quot;dynamic-import-node&quot; ] }, &quot;production&quot;: { &quot;plugins&quot;: [ &quot;transform-react-remove-prop-types&quot;, [&quot;recharts&quot;, null], [&quot;react-hot-loader/babel&quot;, null] ] } } }"><pre class="notranslate"><span class="pl-kos">{</span> <span class="pl-s">"presets"</span>: <span class="pl-kos">[</span><span class="pl-s">"@babel/preset-env"</span><span class="pl-kos">,</span> <span class="pl-s">"@babel/preset-react"</span><span class="pl-kos">,</span> <span class="pl-s">"react-app"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s">"env"</span>: <span class="pl-kos">{</span> <span class="pl-s">"development"</span>: <span class="pl-kos">{</span> <span class="pl-s">"plugins"</span>: <span class="pl-kos">[</span><span class="pl-s">"react-hot-loader/babel"</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s">"test"</span>: <span class="pl-kos">{</span> <span class="pl-s">"plugins"</span>: <span class="pl-kos">[</span> <span class="pl-kos">[</span><span class="pl-s">"webpack-alias"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-s">"config"</span>: <span class="pl-s">"./build_config/webpack.common.js"</span> <span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s">"istanbul"</span><span class="pl-kos">,</span> <span class="pl-s">"dynamic-import-node"</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s">"production"</span>: <span class="pl-kos">{</span> <span class="pl-s">"plugins"</span>: <span class="pl-kos">[</span> <span class="pl-s">"transform-react-remove-prop-types"</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">"recharts"</span><span class="pl-kos">,</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-s">"react-hot-loader/babel"</span><span class="pl-kos">,</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-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">package.json devDependencies</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &quot;devDependencies&quot;: { &quot;@babel/core&quot;: &quot;7.4.4&quot;, &quot;@babel/preset-env&quot;: &quot;^7.4.4&quot;, &quot;@babel/preset-react&quot;: &quot;^7.0.0&quot;, &quot;autoprefixer&quot;: &quot;^7.1.2&quot;, &quot;babel-eslint&quot;: &quot;^9.0.0&quot;, &quot;babel-loader&quot;: &quot;^8.0.5&quot;, &quot;babel-plugin-istanbul&quot;: &quot;^5.0.1&quot;, &quot;babel-plugin-recharts&quot;: &quot;^1.1.0&quot;, &quot;babel-plugin-transform-react-remove-prop-types&quot;: &quot;^0.4.6&quot;, &quot;babel-preset-react-app&quot;: &quot;^8.0.0&quot;, &quot;chai&quot;: &quot;^4.1.2&quot;, &quot;chai-as-promised&quot;: &quot;^7.1.1&quot;, &quot;copy-webpack-plugin&quot;: &quot;^5.0.3&quot;, &quot;copyfiles&quot;: &quot;^2.1.0&quot;, &quot;cross-env&quot;: &quot;^5.0.1&quot;, &quot;css-loader&quot;: &quot;^2.1.1&quot;, &quot;dotenv&quot;: &quot;^8.0.0&quot;, &quot;enzyme&quot;: &quot;^3.8.0&quot;, &quot;enzyme-adapter-react-16&quot;: &quot;^1.6.0&quot;, &quot;eslint&quot;: &quot;^5.15.3&quot;, &quot;eslint-config-airbnb&quot;: &quot;^17.1.0&quot;, &quot;eslint-config-prettier&quot;: &quot;^3.1.0&quot;, &quot;eslint-import-resolver-webpack&quot;: &quot;^0.10.1&quot;, &quot;eslint-loader&quot;: &quot;^2.1.1&quot;, &quot;eslint-plugin-import&quot;: &quot;^2.14.0&quot;, &quot;eslint-plugin-jsx-a11y&quot;: &quot;^6.1.1&quot;, &quot;eslint-plugin-prettier&quot;: &quot;^2.6.2&quot;, &quot;eslint-plugin-react&quot;: &quot;^7.11.0&quot;, &quot;eslint-plugin-react-hooks&quot;: &quot;^1.0.1&quot;, &quot;eslint-plugin-testcafe&quot;: &quot;^0.2.1&quot;, &quot;extract-text-webpack-plugin&quot;: &quot;^4.0.0-alpha.0&quot;, &quot;file-loader&quot;: &quot;^3.0.1&quot;, &quot;html-webpack-plugin&quot;: &quot;^3.2.0&quot;, &quot;jsdom&quot;: &quot;9.0.0&quot;, &quot;mocha&quot;: &quot;^5.2.0&quot;, &quot;mocha-duplicate-reporter&quot;: &quot;^0.2.1&quot;, &quot;mocha-jenkins-reporter&quot;: &quot;^0.4.0&quot;, &quot;mocha-multi&quot;: &quot;^0.11.0&quot;, &quot;mocha-sonar-generic-test-coverage&quot;: &quot;0.0.3&quot;, &quot;node-sass&quot;: &quot;^4.9.3&quot;, &quot;null-loader&quot;: &quot;^1.0.0&quot;, &quot;nyc&quot;: &quot;^13.0.1&quot;, &quot;postcss-loader&quot;: &quot;^2.0.6&quot;, &quot;preload-webpack-plugin&quot;: &quot;^2.3.0&quot;, &quot;process-finder&quot;: &quot;1.0.0&quot;, &quot;react-hot-loader&quot;: &quot;^4.8.4&quot;, &quot;redux-mock-store&quot;: &quot;^1.2.2&quot;, &quot;retire&quot;: &quot;^2.0.2&quot;, &quot;rimraf&quot;: &quot;^2.5.4&quot;, &quot;sass-loader&quot;: &quot;^6.0.6&quot;, &quot;script-ext-html-webpack-plugin&quot;: &quot;^2.1.3&quot;, &quot;semver&quot;: &quot;^5.3.0&quot;, &quot;simple-mock&quot;: &quot;^0.7.3&quot;, &quot;sinon&quot;: &quot;^7.2.2&quot;, &quot;style-loader&quot;: &quot;^0.20.2&quot;, &quot;stylelint&quot;: &quot;^9.10.1&quot;, &quot;stylelint-config-standard&quot;: &quot;^18.0.0&quot;, &quot;testcafe&quot;: &quot;^1.0.0&quot;, &quot;tree-kill&quot;: &quot;1.2.0&quot;, &quot;url-join&quot;: &quot;^4.0.0&quot;, &quot;url-loader&quot;: &quot;^1.1.2&quot;, &quot;weakmap-polyfill&quot;: &quot;^2.0.0&quot;, &quot;webpack&quot;: &quot;^4.30.0&quot;, &quot;webpack-bundle-analyzer&quot;: &quot;^3.3.2&quot;, &quot;webpack-cli&quot;: &quot;^3.3.1&quot;, &quot;webpack-dev-middleware&quot;: &quot;^3.6.2&quot;, &quot;webpack-dev-server&quot;: &quot;^3.3.1&quot;, &quot;webpack-merge&quot;: &quot;^4.2.1&quot; },"><pre class="notranslate"><code class="notranslate"> "devDependencies": { "@babel/core": "7.4.4", "@babel/preset-env": "^7.4.4", "@babel/preset-react": "^7.0.0", "autoprefixer": "^7.1.2", "babel-eslint": "^9.0.0", "babel-loader": "^8.0.5", "babel-plugin-istanbul": "^5.0.1", "babel-plugin-recharts": "^1.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.6", "babel-preset-react-app": "^8.0.0", "chai": "^4.1.2", "chai-as-promised": "^7.1.1", "copy-webpack-plugin": "^5.0.3", "copyfiles": "^2.1.0", "cross-env": "^5.0.1", "css-loader": "^2.1.1", "dotenv": "^8.0.0", "enzyme": "^3.8.0", "enzyme-adapter-react-16": "^1.6.0", "eslint": "^5.15.3", "eslint-config-airbnb": "^17.1.0", "eslint-config-prettier": "^3.1.0", "eslint-import-resolver-webpack": "^0.10.1", "eslint-loader": "^2.1.1", "eslint-plugin-import": "^2.14.0", "eslint-plugin-jsx-a11y": "^6.1.1", "eslint-plugin-prettier": "^2.6.2", "eslint-plugin-react": "^7.11.0", "eslint-plugin-react-hooks": "^1.0.1", "eslint-plugin-testcafe": "^0.2.1", "extract-text-webpack-plugin": "^4.0.0-alpha.0", "file-loader": "^3.0.1", "html-webpack-plugin": "^3.2.0", "jsdom": "9.0.0", "mocha": "^5.2.0", "mocha-duplicate-reporter": "^0.2.1", "mocha-jenkins-reporter": "^0.4.0", "mocha-multi": "^0.11.0", "mocha-sonar-generic-test-coverage": "0.0.3", "node-sass": "^4.9.3", "null-loader": "^1.0.0", "nyc": "^13.0.1", "postcss-loader": "^2.0.6", "preload-webpack-plugin": "^2.3.0", "process-finder": "1.0.0", "react-hot-loader": "^4.8.4", "redux-mock-store": "^1.2.2", "retire": "^2.0.2", "rimraf": "^2.5.4", "sass-loader": "^6.0.6", "script-ext-html-webpack-plugin": "^2.1.3", "semver": "^5.3.0", "simple-mock": "^0.7.3", "sinon": "^7.2.2", "style-loader": "^0.20.2", "stylelint": "^9.10.1", "stylelint-config-standard": "^18.0.0", "testcafe": "^1.0.0", "tree-kill": "1.2.0", "url-join": "^4.0.0", "url-loader": "^1.1.2", "weakmap-polyfill": "^2.0.0", "webpack": "^4.30.0", "webpack-bundle-analyzer": "^3.3.2", "webpack-cli": "^3.3.1", "webpack-dev-middleware": "^3.6.2", "webpack-dev-server": "^3.3.1", "webpack-merge": "^4.2.1" }, </code></pre></div> <p dir="auto">cli commands:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &quot;prebuild&quot;: &quot;rm -rf dist&quot;, &quot;all&quot;: &quot;npm run build &amp;&amp; npm run lint &amp;&amp; npm run test&quot;, &quot;build&quot;: &quot;npm run build:dist&quot;, &quot;build:copy&quot;: &quot;copyfiles -f ./public/favicon.ico ./dist &amp;&amp; copyfiles -f ./public/authzconfiguration.tpl.js ./dist&quot;, &quot;build:dist&quot;: &quot;npm run build:copy &amp;&amp; cross-env NODE_ENV=production webpack -p --env=prod --progress --colors&quot;, &quot;start&quot;: &quot;webpack-dev-server --progress --colors --env=dev&quot;,"><pre class="notranslate"><code class="notranslate"> "prebuild": "rm -rf dist", "all": "npm run build &amp;&amp; npm run lint &amp;&amp; npm run test", "build": "npm run build:dist", "build:copy": "copyfiles -f ./public/favicon.ico ./dist &amp;&amp; copyfiles -f ./public/authzconfiguration.tpl.js ./dist", "build:dist": "npm run build:copy &amp;&amp; cross-env NODE_ENV=production webpack -p --env=prod --progress --colors", "start": "webpack-dev-server --progress --colors --env=dev", </code></pre></div> <p dir="auto"><strong>Environment</strong></p> <ul dir="auto"> <li>Babel version(s): 7.0.0</li> <li>Node/npm version: Node v10.15.0 - npm 6.7.0:</li> <li>OS: OSX 10.14.3</li> <li>Monorepo: no</li> <li>How you are using Babel: loader/webpack</li> </ul> <p dir="auto"><strong>Possible Solution</strong><br> I have looked at my dependencies, and I have several packages that depend on babel v6.xx. This may relate to it, but I am not sure</p> <p dir="auto"><strong>Additional context/Screenshots</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/24981281/57176649-37b9d080-6e0f-11e9-8d6e-bc125798eff8.png"><img width="1233" alt="Screen Shot 2019-05-04 at 1 51 09 AM" src="https://user-images.githubusercontent.com/24981281/57176649-37b9d080-6e0f-11e9-8d6e-bc125798eff8.png" style="max-width: 100%;"></a></p>
0
<p dir="auto">Feature request:<br> Coming from Android background, a feature commonly used to perform complex tasks is annotation processors.</p> <p dir="auto">Since Dart usage is moving to the strong side such a feature can enable all sorts of code generation previous to user code compilation, which is very valuable to catch errors early on with compilation checks. Some of the existing Android libraries are starting to pop up, but instead the user has to manually perform the code generation step and (probably) commit those files to disk.</p> <ul dir="auto"> <li><a href="https://github.com/google/inject.dart/tree/master/example/coffee">https://github.com/google/inject.dart/tree/master/example/coffee</a></li> <li><a href="https://github.com/IdanAizikNissim/Cosmic">https://github.com/IdanAizikNissim/Cosmic</a></li> </ul> <p dir="auto">Not yet in Flutter there are some good sources for inspiration</p> <ul dir="auto"> <li>Android's Room database's highlights come from annotation processor to generate code and validate user code</li> <li>I also have plans to scan the assets and generate code to access them from a class with fields (inspired by Android's asset system - R.drawable.bunny). If an automated tool that runs pre-build is available I can hook into that, but otherwise the only way is to modify packages/flutter_tools (related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164942550" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/4890" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/4890/hovercard" href="https://github.com/flutter/flutter/issues/4890">#4890</a>)</li> </ul>
<p dir="auto">It's not sustainable for the <code class="notranslate">flutter</code> tool to support all the commands that all developers collectively desire. It's much more sustainable to support an extensibility model where the tool itself can be extended by adding in "tools plugins".</p> <ul dir="auto"> <li>Run Dart commend / do codegen: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="282499082" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/13607" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/13607/hovercard" href="https://github.com/flutter/flutter/issues/13607">#13607</a></li> <li>Generate app icon: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="232242970" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/10387" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/10387/hovercard" href="https://github.com/flutter/flutter/issues/10387">#10387</a></li> <li>Determining the size of an app: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="276477473" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/13189" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/13189/hovercard" href="https://github.com/flutter/flutter/issues/13189">#13189</a></li> <li>Customize the build: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="226811271" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/9870" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/9870/hovercard" href="https://github.com/flutter/flutter/issues/9870">#9870</a></li> </ul>
1
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://github.com/celery/celery/discussions">discussions forum</a> first.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br> <a href="https://docs.celeryq.dev/en/master/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br> on reporting bugs.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical bug reports.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed fixes.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the bug was already fixed in the master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br> in this issue (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Mandatory Debugging Information</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br> (if you are not able to do this, then at least specify the Celery<br> version affected).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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 &amp; rate limits disabled.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br> and/or upgrading Celery and its dependencies.</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h2 dir="auto">Environment &amp; Settings</h2> <p dir="auto"><strong>Celery version</strong>:</p> <details> <summary><b><code class="notranslate">celery report</code> Output:</b></summary> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Steps to Reproduce</h1> <h2 dir="auto">Required Dependencies</h2> <ul dir="auto"> <li><strong>Minimal Python Version</strong>: N/A or Unknown</li> <li><strong>Minimal Celery Version</strong>: N/A or Unknown</li> <li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li> <li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li> </ul> <h3 dir="auto">Python Packages</h3> <details> <summary><b><code class="notranslate">pip freeze</code> Output:</b></summary> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <p dir="auto"></p> </details> <h3 dir="auto">Other Dependencies</h3> <details> <p dir="auto"> N/A </p> </details> <h2 dir="auto">Minimally Reproducible Test Case</h2> <details> <p dir="auto"> </p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Expected Behavior</h1> <h1 dir="auto">Actual Behavior</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tcp 0 0 10.1.4.214:50088 10.105.93.168:3212 ESTABLISHED 0 3990648 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50044 10.105.93.168:3212 ESTABLISHED 0 3990583 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:51230 10.105.93.168:3212 ESTABLISHED 0 3990447 29/python off (0.00/0/0) tcp 0 0 10.1.4.214:50090 10.105.93.168:3212 ESTABLISHED 0 3990650 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50092 10.105.93.168:3212 ESTABLISHED 0 3990652 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:51174 10.105.93.168:3212 ESTABLISHED 0 3997105 28/python off (0.00/0/0) tcp 0 0 10.1.4.214:50046 10.105.93.168:3212 ESTABLISHED 0 3990587 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50050 10.105.93.168:3212 ESTABLISHED 0 3990591 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50048 10.105.93.168:3212 ESTABLISHED 0 3990589 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50052 10.105.93.168:3212 ESTABLISHED 0 3990593 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:51228 10.105.93.168:3212 ESTABLISHED 0 3990445 29/python off (0.00/0/0) tcp 0 0 10.1.4.214:51176 10.105.93.168:3212 ESTABLISHED 0 3997107 28/python off (0.00/0/0) tcp 0 0 10.1.4.214:50086 10.105.93.168:3212 ESTABLISHED 0 3990646 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50084 10.105.93.168:3212 ESTABLISHED 0 3990644 1/python off (0.00/0/0)"><pre class="notranslate"><code class="notranslate">tcp 0 0 10.1.4.214:50088 10.105.93.168:3212 ESTABLISHED 0 3990648 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50044 10.105.93.168:3212 ESTABLISHED 0 3990583 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:51230 10.105.93.168:3212 ESTABLISHED 0 3990447 29/python off (0.00/0/0) tcp 0 0 10.1.4.214:50090 10.105.93.168:3212 ESTABLISHED 0 3990650 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50092 10.105.93.168:3212 ESTABLISHED 0 3990652 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:51174 10.105.93.168:3212 ESTABLISHED 0 3997105 28/python off (0.00/0/0) tcp 0 0 10.1.4.214:50046 10.105.93.168:3212 ESTABLISHED 0 3990587 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50050 10.105.93.168:3212 ESTABLISHED 0 3990591 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50048 10.105.93.168:3212 ESTABLISHED 0 3990589 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50052 10.105.93.168:3212 ESTABLISHED 0 3990593 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:51228 10.105.93.168:3212 ESTABLISHED 0 3990445 29/python off (0.00/0/0) tcp 0 0 10.1.4.214:51176 10.105.93.168:3212 ESTABLISHED 0 3997107 28/python off (0.00/0/0) tcp 0 0 10.1.4.214:50086 10.105.93.168:3212 ESTABLISHED 0 3990646 1/python off (0.00/0/0) tcp 0 0 10.1.4.214:50084 10.105.93.168:3212 ESTABLISHED 0 3990644 1/python off (0.00/0/0) </code></pre></div> <p dir="auto">I set the port of the broker to be 3212 and the backed to be 3213 so I can distinguish them.<br> We found the issue since our GKE is behind a NAT, which doesn't like idle connections, so we get a lot of "Connection reset by peer"</p> <p dir="auto">We also set <code class="notranslate">broker_pool_limit</code> to 3 but as you can see there are much more.</p>
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br> <a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br> on reporting bugs.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical bug reports.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed fixes.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the bug was already fixed in the master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br> in this issue (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Mandatory Debugging Information</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br> (if you are not able to do this, then at least specify the Celery<br> version affected).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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 &amp; rate limits disabled.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br> and/or upgrading Celery and its dependencies.</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h2 dir="auto">Environment &amp; Settings</h2> <p dir="auto"><strong>Celery version</strong>:</p> <details> <summary><b><code class="notranslate">celery report</code> Output:</b></summary> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Steps to Reproduce</h1> <h2 dir="auto">Required Dependencies</h2> <ul dir="auto"> <li><strong>Minimal Python Version</strong>: N/A or Unknown</li> <li><strong>Minimal Celery Version</strong>: N/A or Unknown</li> <li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li> <li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li> <li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li> <li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li> </ul> <h3 dir="auto">Python Packages</h3> <details> <summary><b><code class="notranslate">pip freeze</code> Output:</b></summary> <p dir="auto"> </p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div> <p dir="auto"></p> </details> <h3 dir="auto">Other Dependencies</h3> <details> <p dir="auto"> N/A </p> </details> <h2 dir="auto">Minimally Reproducible Test Case</h2> <details> <p dir="auto"> </p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div> <p dir="auto"></p> </details> <h1 dir="auto">Expected Behavior</h1> <p dir="auto">I would like to include the output of a python script or other relevant data in the result backend. For example if I have a celery worker processing a request that has multiple steps I would like to see the output included whether the result is a success or failure. As the code stands it sends "NULL" as a result to the backend if the job is successful. Failure only sends the traceback information. I would like to include in both anything that is logged to the console during the running of the script. I don't see anyway to make this happen in the documentation.</p> <p dir="auto">Is there an option to include the the console output to the result field?</p> <h1 dir="auto">Actual Behavior</h1> <p dir="auto">As the code stands it sends "NULL" as a result to the backend if the job is successful. Failure only sends the traceback information.</p>
0
<ul dir="auto"> <li>VSCode Version: alpha</li> <li>OS Version: Windows 10</li> </ul> <p dir="auto">See screen shot:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1931590/15473456/76156f88-2100-11e6-8649-7b9e12283809.png"><img src="https://cloud.githubusercontent.com/assets/1931590/15473456/76156f88-2100-11e6-8649-7b9e12283809.png" alt="capture" style="max-width: 100%;"></a></p>
<p dir="auto">See attached screen shot, I have many snippets defined and they are the only entries that show up when I auto complete inside an object literal, which is weird imho:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/900690/11789872/1c19940e-a299-11e5-9ce8-d36a5289feb3.png"><img width="512" alt="screen shot 2015-12-14 at 19 29 35" src="https://cloud.githubusercontent.com/assets/900690/11789872/1c19940e-a299-11e5-9ce8-d36a5289feb3.png" style="max-width: 100%;"></a></p>
1
<p dir="auto">Extracted from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="143513623" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/23491" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/23491/hovercard?comment_id=251777767&amp;comment_type=issue_comment" href="https://github.com/kubernetes/kubernetes/pull/23491#issuecomment-251777767">#23491 (comment)</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="This appears to be leaking journalctl processes originating here: https://github.com/kubernetes/kubernetes/blob/master/vendor/github.com/google/cadvisor/utils/oomparser/oomparser.go#L169"><pre class="notranslate"><code class="notranslate">This appears to be leaking journalctl processes originating here: https://github.com/kubernetes/kubernetes/blob/master/vendor/github.com/google/cadvisor/utils/oomparser/oomparser.go#L169 </code></pre></div> <p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="143513623" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/23491" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/23491/hovercard" href="https://github.com/kubernetes/kubernetes/pull/23491">#23491</a> set kubelet unit files to restart just the kubelet process and this ends up orphaning and leaking <code class="notranslate">journalctl</code> processes launched by cAdvisor.<br> AFAIK, this behavior can leak many other processes like <code class="notranslate">du</code>, <code class="notranslate">ls</code>, <code class="notranslate">mount</code>, etc.</p> <p dir="auto">@kubernetes/sig-node we need to fix this.</p> <p dir="auto">I recommend reverting <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="143513623" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/23491" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/23491/hovercard" href="https://github.com/kubernetes/kubernetes/pull/23491">#23491</a> to begin with as suggested by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/wwwtyro/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/wwwtyro">@wwwtyro</a></p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):<br> Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.10", GitCommit:"c3e367ec9eae7338ac4e2a57f293634891319b7c", GitTreeState:"clean", BuildDate:"2016-10-31T21:25:43Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}<br> Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.3", GitCommit:"4957b090e9a4f6a68b4a40375408fdc74a212260", GitTreeState:"clean", BuildDate:"1970-01-01T00:00:00Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"linux/amd64"}</p> <p dir="auto"><strong>Environment</strong>:<br> NAME=Fedora<br> VERSION="22 (Twenty Two)"<br> ID=fedora<br> VERSION_ID=22<br> PRETTY_NAME="Fedora 22 (Twenty Two)"<br> ANSI_COLOR="0;34"<br> CPE_NAME="cpe:/o:fedoraproject:fedora:22"<br> HOME_URL="<a href="https://fedoraproject.org/" rel="nofollow">https://fedoraproject.org/</a>"<br> BUG_REPORT_URL="<a href="https://bugzilla.redhat.com/" rel="nofollow">https://bugzilla.redhat.com/</a>"<br> REDHAT_BUGZILLA_PRODUCT="Fedora"<br> REDHAT_BUGZILLA_PRODUCT_VERSION=22<br> REDHAT_SUPPORT_PRODUCT="Fedora"<br> REDHAT_SUPPORT_PRODUCT_VERSION=22<br> PRIVACY_POLICY_URL=<a href="https://fedoraproject.org/wiki/Legal:PrivacyPolicy" rel="nofollow">https://fedoraproject.org/wiki/Legal:PrivacyPolicy</a><br> VARIANT="Workstation Edition"<br> VARIANT_ID=workstation</p> <p dir="auto">Linux mori.mattharris.org 4.4.14-200.fc22.x86_64 <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35192559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/1/hovercard" href="https://github.com/kubernetes/kubernetes/issues/1">#1</a> SMP Fri Jun 24 21:19:33 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux</p> <p dir="auto">minikube version: v0.12.2</p> <p dir="auto"><strong>What happened</strong>:<br> Merged two configs together and ran kubectl create -f newmergedfile.yml, did not error on validation when missing --- between a service and a deployment</p> <p dir="auto"><strong>What you expected to happen</strong>:<br> to create the correct pieces and error on the invalid</p> <p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="kind: Service metadata: name: kong-app spec: type: NodePort ports: - port: 8000 targetPort: 8000 name: http - port: 8001 targetPort: 8001 name: admin selector: name: kong-app --- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: kong-app spec: template: metadata: labels: name: kong-app tier: development spec: containers: - name: kong-app image: kong env: - name: KONG_DATABASE value: cassandra - name: KONG_CASSANDRA_CONTACT_POINTS value: kong-database ports: - containerPort: 8000 - containerPort: 8001 - containerPort: 7946 - containerPort: 7946 protocol: UDP apiVersion: v1 kind: Service metadata: name: kong-database spec: type: NodePort ports: - port: 9042 targetPort: 9042 nodePort: 30042 selector: name: kong-database --- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: kong-database spec: template: metadata: labels: name: kong-database tier: development spec: containers: - name: kong-database image: cassandra:2.2 ports: - containerPort: 9042"><pre lang="apiVersion:" class="notranslate"><code class="notranslate">kind: Service metadata: name: kong-app spec: type: NodePort ports: - port: 8000 targetPort: 8000 name: http - port: 8001 targetPort: 8001 name: admin selector: name: kong-app --- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: kong-app spec: template: metadata: labels: name: kong-app tier: development spec: containers: - name: kong-app image: kong env: - name: KONG_DATABASE value: cassandra - name: KONG_CASSANDRA_CONTACT_POINTS value: kong-database ports: - containerPort: 8000 - containerPort: 8001 - containerPort: 7946 - containerPort: 7946 protocol: UDP apiVersion: v1 kind: Service metadata: name: kong-database spec: type: NodePort ports: - port: 9042 targetPort: 9042 nodePort: 30042 selector: name: kong-database --- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: kong-database spec: template: metadata: labels: name: kong-database tier: development spec: containers: - name: kong-database image: cassandra:2.2 ports: - containerPort: 9042 </code></pre></div> <p dir="auto">and run create</p> <p dir="auto"><strong>Anything else do we need to know</strong>:<br> nope</p>
0
<p dir="auto">Illustration of root cause (mentioned in neighbour branch by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/robertlugg/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/robertlugg">@robertlugg</a>).<br> Debug output is added to class methods:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class ProgbarLogger(Callback): &quot;&quot;&quot;Callback that prints metrics to stdout. # Arguments count_mode: One of &quot;steps&quot; or &quot;samples&quot;. Whether the progress bar should count samples seen or steps (batches) seen. stateful_metrics: Iterable of string names of metrics that should *not* be averaged over an epoch. Metrics in this list will be logged as-is. All others will be averaged over time (e.g. loss, etc). # Raises ValueError: In case of invalid `count_mode`. &quot;&quot;&quot; def __init__(self, count_mode='samples', stateful_metrics=None): super(ProgbarLogger, self).__init__() if count_mode == 'samples': self.use_steps = False elif count_mode == 'steps': self.use_steps = True else: raise ValueError('Unknown `count_mode`: ' + str(count_mode)) if stateful_metrics: self.stateful_metrics = set(stateful_metrics) else: self.stateful_metrics = set() def on_train_begin(self, logs=None): print('train begin') self.verbose = self.params['verbose'] self.epochs = self.params['epochs'] def on_epoch_begin(self, epoch, logs=None): print('epoch begin') if self.verbose: print('Epoch %d/%d' % (epoch + 1, self.epochs)) if self.use_steps: target = self.params['steps'] else: target = self.params['samples'] print('Progbar initialization (target property is initially assigned here)') self.target = target self.progbar = Progbar(target=self.target, verbose=self.verbose, stateful_metrics=self.stateful_metrics) self.seen = 0 def on_batch_begin(self, batch, logs=None): print('batch begin') if self.seen &lt; self.target: self.log_values = [] def on_batch_end(self, batch, logs=None): print('batch end') logs = logs or {} batch_size = logs.get('size', 0) if self.use_steps: self.seen += 1 else: self.seen += batch_size for k in self.params['metrics']: if k in logs: self.log_values.append((k, logs[k])) # Skip progbar update for the last batch; # will be handled by on_epoch_end. if self.verbose and self.seen &lt; self.target: self.progbar.update(self.seen, self.log_values) def on_epoch_end(self, epoch, logs=None): print('epoch end') logs = logs or {} for k in self.params['metrics']: if k in logs: self.log_values.append((k, logs[k])) if self.verbose: self.progbar.update(self.seen, self.log_values)"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">ProgbarLogger</span>(<span class="pl-v">Callback</span>): <span class="pl-s">"""Callback that prints metrics to stdout.</span> <span class="pl-s"></span> <span class="pl-s"> # Arguments</span> <span class="pl-s"> count_mode: One of "steps" or "samples".</span> <span class="pl-s"> Whether the progress bar should</span> <span class="pl-s"> count samples seen or steps (batches) seen.</span> <span class="pl-s"> stateful_metrics: Iterable of string names of metrics that</span> <span class="pl-s"> should *not* be averaged over an epoch.</span> <span class="pl-s"> Metrics in this list will be logged as-is.</span> <span class="pl-s"> All others will be averaged over time (e.g. loss, etc).</span> <span class="pl-s"></span> <span class="pl-s"> # Raises</span> <span class="pl-s"> ValueError: In case of invalid `count_mode`.</span> <span class="pl-s"> """</span> <span class="pl-k">def</span> <span class="pl-en">__init__</span>(<span class="pl-s1">self</span>, <span class="pl-s1">count_mode</span><span class="pl-c1">=</span><span class="pl-s">'samples'</span>, <span class="pl-s1">stateful_metrics</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-en">super</span>(<span class="pl-v">ProgbarLogger</span>, <span class="pl-s1">self</span>).<span class="pl-en">__init__</span>() <span class="pl-k">if</span> <span class="pl-s1">count_mode</span> <span class="pl-c1">==</span> <span class="pl-s">'samples'</span>: <span class="pl-s1">self</span>.<span class="pl-s1">use_steps</span> <span class="pl-c1">=</span> <span class="pl-c1">False</span> <span class="pl-k">elif</span> <span class="pl-s1">count_mode</span> <span class="pl-c1">==</span> <span class="pl-s">'steps'</span>: <span class="pl-s1">self</span>.<span class="pl-s1">use_steps</span> <span class="pl-c1">=</span> <span class="pl-c1">True</span> <span class="pl-k">else</span>: <span class="pl-k">raise</span> <span class="pl-v">ValueError</span>(<span class="pl-s">'Unknown `count_mode`: '</span> <span class="pl-c1">+</span> <span class="pl-en">str</span>(<span class="pl-s1">count_mode</span>)) <span class="pl-k">if</span> <span class="pl-s1">stateful_metrics</span>: <span class="pl-s1">self</span>.<span class="pl-s1">stateful_metrics</span> <span class="pl-c1">=</span> <span class="pl-en">set</span>(<span class="pl-s1">stateful_metrics</span>) <span class="pl-k">else</span>: <span class="pl-s1">self</span>.<span class="pl-s1">stateful_metrics</span> <span class="pl-c1">=</span> <span class="pl-en">set</span>() <span class="pl-k">def</span> <span class="pl-en">on_train_begin</span>(<span class="pl-s1">self</span>, <span class="pl-s1">logs</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-en">print</span>(<span class="pl-s">'train begin'</span>) <span class="pl-s1">self</span>.<span class="pl-s1">verbose</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">params</span>[<span class="pl-s">'verbose'</span>] <span class="pl-s1">self</span>.<span class="pl-s1">epochs</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">params</span>[<span class="pl-s">'epochs'</span>] <span class="pl-k">def</span> <span class="pl-en">on_epoch_begin</span>(<span class="pl-s1">self</span>, <span class="pl-s1">epoch</span>, <span class="pl-s1">logs</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-en">print</span>(<span class="pl-s">'epoch begin'</span>) <span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">verbose</span>: <span class="pl-en">print</span>(<span class="pl-s">'Epoch %d/%d'</span> <span class="pl-c1">%</span> (<span class="pl-s1">epoch</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span>, <span class="pl-s1">self</span>.<span class="pl-s1">epochs</span>)) <span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">use_steps</span>: <span class="pl-s1">target</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">params</span>[<span class="pl-s">'steps'</span>] <span class="pl-k">else</span>: <span class="pl-s1">target</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">params</span>[<span class="pl-s">'samples'</span>] <span class="pl-en">print</span>(<span class="pl-s">'Progbar initialization (target property is initially assigned here)'</span>) <span class="pl-s1">self</span>.<span class="pl-s1">target</span> <span class="pl-c1">=</span> <span class="pl-s1">target</span> <span class="pl-s1">self</span>.<span class="pl-s1">progbar</span> <span class="pl-c1">=</span> <span class="pl-v">Progbar</span>(<span class="pl-s1">target</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">target</span>, <span class="pl-s1">verbose</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">verbose</span>, <span class="pl-s1">stateful_metrics</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">stateful_metrics</span>) <span class="pl-s1">self</span>.<span class="pl-s1">seen</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span> <span class="pl-k">def</span> <span class="pl-en">on_batch_begin</span>(<span class="pl-s1">self</span>, <span class="pl-s1">batch</span>, <span class="pl-s1">logs</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-en">print</span>(<span class="pl-s">'batch begin'</span>) <span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">seen</span> <span class="pl-c1">&lt;</span> <span class="pl-s1">self</span>.<span class="pl-s1">target</span>: <span class="pl-s1">self</span>.<span class="pl-s1">log_values</span> <span class="pl-c1">=</span> [] <span class="pl-k">def</span> <span class="pl-en">on_batch_end</span>(<span class="pl-s1">self</span>, <span class="pl-s1">batch</span>, <span class="pl-s1">logs</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-en">print</span>(<span class="pl-s">'batch end'</span>) <span class="pl-s1">logs</span> <span class="pl-c1">=</span> <span class="pl-s1">logs</span> <span class="pl-c1">or</span> {} <span class="pl-s1">batch_size</span> <span class="pl-c1">=</span> <span class="pl-s1">logs</span>.<span class="pl-en">get</span>(<span class="pl-s">'size'</span>, <span class="pl-c1">0</span>) <span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">use_steps</span>: <span class="pl-s1">self</span>.<span class="pl-s1">seen</span> <span class="pl-c1">+=</span> <span class="pl-c1">1</span> <span class="pl-k">else</span>: <span class="pl-s1">self</span>.<span class="pl-s1">seen</span> <span class="pl-c1">+=</span> <span class="pl-s1">batch_size</span> <span class="pl-k">for</span> <span class="pl-s1">k</span> <span class="pl-c1">in</span> <span class="pl-s1">self</span>.<span class="pl-s1">params</span>[<span class="pl-s">'metrics'</span>]: <span class="pl-k">if</span> <span class="pl-s1">k</span> <span class="pl-c1">in</span> <span class="pl-s1">logs</span>: <span class="pl-s1">self</span>.<span class="pl-s1">log_values</span>.<span class="pl-en">append</span>((<span class="pl-s1">k</span>, <span class="pl-s1">logs</span>[<span class="pl-s1">k</span>])) <span class="pl-c"># Skip progbar update for the last batch;</span> <span class="pl-c"># will be handled by on_epoch_end.</span> <span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">verbose</span> <span class="pl-c1">and</span> <span class="pl-s1">self</span>.<span class="pl-s1">seen</span> <span class="pl-c1">&lt;</span> <span class="pl-s1">self</span>.<span class="pl-s1">target</span>: <span class="pl-s1">self</span>.<span class="pl-s1">progbar</span>.<span class="pl-en">update</span>(<span class="pl-s1">self</span>.<span class="pl-s1">seen</span>, <span class="pl-s1">self</span>.<span class="pl-s1">log_values</span>) <span class="pl-k">def</span> <span class="pl-en">on_epoch_end</span>(<span class="pl-s1">self</span>, <span class="pl-s1">epoch</span>, <span class="pl-s1">logs</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-en">print</span>(<span class="pl-s">'epoch end'</span>) <span class="pl-s1">logs</span> <span class="pl-c1">=</span> <span class="pl-s1">logs</span> <span class="pl-c1">or</span> {} <span class="pl-k">for</span> <span class="pl-s1">k</span> <span class="pl-c1">in</span> <span class="pl-s1">self</span>.<span class="pl-s1">params</span>[<span class="pl-s">'metrics'</span>]: <span class="pl-k">if</span> <span class="pl-s1">k</span> <span class="pl-c1">in</span> <span class="pl-s1">logs</span>: <span class="pl-s1">self</span>.<span class="pl-s1">log_values</span>.<span class="pl-en">append</span>((<span class="pl-s1">k</span>, <span class="pl-s1">logs</span>[<span class="pl-s1">k</span>])) <span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">verbose</span>: <span class="pl-s1">self</span>.<span class="pl-s1">progbar</span>.<span class="pl-en">update</span>(<span class="pl-s1">self</span>.<span class="pl-s1">seen</span>, <span class="pl-s1">self</span>.<span class="pl-s1">log_values</span>)</pre></div> <p dir="auto">Caller code example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="model.fit( np.ndarray(shape=(13, 2,)), np.ndarray(shape=(13, 2,)), batch_size=batch_size, validation_data=( np.ndarray(shape=(13, 2)), np.ndarray(shape=(13, 2)), ), callbacks=[callbacks.ProgbarLogger(count_mode='samples')], epochs=13, verbose=0) # &lt;&lt;&lt;"><pre class="notranslate"><span class="pl-s1">model</span>.<span class="pl-en">fit</span>( <span class="pl-s1">np</span>.<span class="pl-en">ndarray</span>(<span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">13</span>, <span class="pl-c1">2</span>,)), <span class="pl-s1">np</span>.<span class="pl-en">ndarray</span>(<span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">13</span>, <span class="pl-c1">2</span>,)), <span class="pl-s1">batch_size</span><span class="pl-c1">=</span><span class="pl-s1">batch_size</span>, <span class="pl-s1">validation_data</span><span class="pl-c1">=</span>( <span class="pl-s1">np</span>.<span class="pl-en">ndarray</span>(<span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">13</span>, <span class="pl-c1">2</span>)), <span class="pl-s1">np</span>.<span class="pl-en">ndarray</span>(<span class="pl-s1">shape</span><span class="pl-c1">=</span>(<span class="pl-c1">13</span>, <span class="pl-c1">2</span>)), ), <span class="pl-s1">callbacks</span><span class="pl-c1">=</span>[<span class="pl-s1">callbacks</span>.<span class="pl-v">ProgbarLogger</span>(<span class="pl-s1">count_mode</span><span class="pl-c1">=</span><span class="pl-s">'samples'</span>)], <span class="pl-s1">epochs</span><span class="pl-c1">=</span><span class="pl-c1">13</span>, <span class="pl-s1">verbose</span><span class="pl-c1">=</span><span class="pl-c1">0</span>) <span class="pl-c"># &lt;&lt;&lt;</span></pre></div> <p dir="auto">Output for initialisation and training start scenario in silent mode</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="train begin epoch begin batch begin Traceback (most recent call last): File &quot;train_cli.py&quot;, line 398, in &lt;module&gt; start_training() File &quot;train_cli.py&quot;, line 349, in start_training initial_epoch=initial_epoch, File &quot;train_cli.py&quot;, line 234, in fit_model_softmax history_viz_cb, File &quot;/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/engine/training.py&quot;, line 1039, in fit validation_steps=validation_steps) File &quot;/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/engine/training_arrays.py&quot;, line 195, in fit_loop callbacks.on_batch_begin(batch_index, batch_logs) File &quot;/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/callbacks.py&quot;, line 91, in on_batch_begin callback.on_batch_begin(batch, logs) File &quot;/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/callbacks.py&quot;, line 316, in on_batch_begin if self.seen &lt; self.target: AttributeError: 'ProgbarLogger' object has no attribute 'target'"><pre class="notranslate">train begin epoch begin batch begin Traceback (most recent call last): File <span class="pl-s"><span class="pl-pds">"</span>train_cli.py<span class="pl-pds">"</span></span>, line 398, <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> <span class="pl-en">start_training</span>() File <span class="pl-s"><span class="pl-pds">"</span>train_cli.py<span class="pl-pds">"</span></span>, line 349, <span class="pl-k">in</span> start_training initial_epoch=initial_epoch, File <span class="pl-s"><span class="pl-pds">"</span>train_cli.py<span class="pl-pds">"</span></span>, line 234, <span class="pl-k">in</span> fit_model_softmax history_viz_cb, File <span class="pl-s"><span class="pl-pds">"</span>/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/engine/training.py<span class="pl-pds">"</span></span>, line 1039, <span class="pl-k">in</span> fit validation_steps=validation_steps) File <span class="pl-s"><span class="pl-pds">"</span>/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/engine/training_arrays.py<span class="pl-pds">"</span></span>, line 195, <span class="pl-k">in</span> fit_loop callbacks.on_batch_begin(batch_index, batch_logs) File <span class="pl-s"><span class="pl-pds">"</span>/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/callbacks.py<span class="pl-pds">"</span></span>, line 91, <span class="pl-k">in</span> on_batch_begin callback.on_batch_begin(batch, logs) File <span class="pl-s"><span class="pl-pds">"</span>/Users/ilyakutukov/anaconda3/envs/jenv/lib/python3.6/site-packages/keras/callbacks.py<span class="pl-pds">"</span></span>, line 316, <span class="pl-k">in</span> on_batch_begin <span class="pl-k">if</span> self.seen <span class="pl-k">&lt;</span> self.target: AttributeError: <span class="pl-s"><span class="pl-pds">'</span>ProgbarLogger<span class="pl-pds">'</span></span> object has no attribute <span class="pl-s"><span class="pl-pds">'</span>target<span class="pl-pds">'</span></span></pre></div> <p dir="auto">This bug is related to:</p> <ul dir="auto"> <li>AttributeError: 'ProgbarLogger' object has no attribute 'log_values' <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="285415836" data-permission-text="Title is private" data-url="https://github.com/keras-team/keras/issues/8944" data-hovercard-type="issue" data-hovercard-url="/keras-team/keras/issues/8944/hovercard" href="https://github.com/keras-team/keras/issues/8944">#8944</a></li> <li>AttributeError: 'ProgbarLogger' object has no attribute 'log_values' <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="174418941" data-permission-text="Title is private" data-url="https://github.com/keras-team/keras/issues/3657" data-hovercard-type="issue" data-hovercard-url="/keras-team/keras/issues/3657/hovercard" href="https://github.com/keras-team/keras/issues/3657">#3657</a> (duplicate)</li> </ul> <hr> <p dir="auto">Please make sure that the boxes below are checked before you submit your issue. If your issue is an implementation question, please ask your question on <a href="http://stackoverflow.com/questions/tagged/keras" rel="nofollow">StackOverflow</a> or <a href="https://keras-slack-autojoin.herokuapp.com/" rel="nofollow">join the Keras Slack channel</a> and ask there instead of filing a GitHub issue.</p> <p dir="auto">Thank you!</p> <ul class="contains-task-list"> <li class="task-list-item"> <p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check that you are up-to-date with the master branch of Keras. You can update with:<br> pip install git+git://github.com/keras-team/keras.git --upgrade --no-deps</p> </li> <li class="task-list-item"> <p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If running on TensorFlow, check that you are up-to-date with the latest version. The installation instructions can be found <a href="https://www.tensorflow.org/get_started/os_setup" rel="nofollow">here</a>.</p> </li> <li class="task-list-item"> <p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If running on Theano, check that you are up-to-date with the master branch of Theano. You can update with:<br> pip install git+git://github.com/Theano/Theano.git --upgrade --no-deps</p> </li> <li class="task-list-item"> <p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a link to a GitHub Gist of a Python script that can reproduce your issue (or just copy the script here if it is short). (patch with test coverage is provided)</p> </li> </ul>
<p dir="auto"><strong>fit_generator</strong>.</p> <p dir="auto">It does work in:<br> Python 3.6.5<br> Keras 2.1.6</p> <p dir="auto">But doesn't in:<br> Python 3.6.8<br> Keras 2.2.4</p> <p dir="auto">Unless related to version of other modules.</p>
0
<h1 dir="auto">Bug report</h1> <p dir="auto">This is my code. It's a hello world app with Next 9.0.1</p> <p dir="auto">Does not work in docker.</p> <p dir="auto"><code class="notranslate">docker build -t cgcweb .</code></p> <h2 dir="auto">Describe the bug</h2> <p dir="auto">Next 9 does not work in Docker.</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Here is my repo: <a href="https://github.com/WillowHQ/dockerIssue">https://github.com/WillowHQ/dockerIssue</a></p> <p dir="auto"><code class="notranslate">yarn</code><br> <code class="notranslate">yarn run build</code><br> <code class="notranslate">yarn run start</code><br> Works as expected.</p> <p dir="auto"><code class="notranslate">docker build -t cgcweb .</code><br> Sending build context to Docker daemon 1.076MB<br> Step 1/9 : FROM node:8.9.4<br> ---&gt; 672002a50a0b<br> Step 2/9 : COPY . .<br> ---&gt; 930ba71436a7<br> Step 3/9 : RUN rm -rf node_modules<br> ---&gt; Running in 6a02f97d7e04<br> Removing intermediate container 6a02f97d7e04<br> ---&gt; 417bb64d94c6<br> Step 4/9 : RUN rm -rf .next<br> ---&gt; Running in fb08b231ad4c<br> Removing intermediate container fb08b231ad4c<br> ---&gt; 21565ed63d03<br> Step 5/9 : RUN rm yarn.lock<br> ---&gt; Running in 262dd1b4f4a6<br> Removing intermediate container 262dd1b4f4a6<br> ---&gt; d4397a346e97<br> Step 6/9 : RUN yarn install<br> ---&gt; Running in b7432590fedd<br> yarn install v1.3.2<br> warning package.json: No license field<br> info No lockfile found.<br> warning No license field<br> [1/4] Resolving packages...<br> [2/4] Fetching packages...<br> info [email protected]: The platform "linux" is incompatible with this module.<br> info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.<br> [3/4] Linking dependencies...<br> [4/4] Building fresh packages...<br> success Saved lockfile.<br> Done in 14.75s.<br> Removing intermediate container b7432590fedd<br> ---&gt; 1f5bc4dd889f<br> Step 7/9 : RUN yarn run build<br> ---&gt; Running in 4df33457b0f6<br> yarn run v1.3.2<br> warning package.json: No license field<br> $ next build</p> <blockquote> <p dir="auto">Build error occurred<br> { Error: ENOENT: no such file or directory, stat '/dev/fd/10' errno: -2, code: 'ENOENT', syscall: 'stat', path: '/dev/fd/10' }<br> error Command failed with exit code 1.<br> info Visit <a href="https://yarnpkg.com/en/docs/cli/run" rel="nofollow">https://yarnpkg.com/en/docs/cli/run</a> for documentation about this command.<br> The command '/bin/sh -c yarn run build' returned a non-zero code: 1</p> </blockquote> <ol start="2" dir="auto"> <li>Click on '....'</li> <li>Scroll down to '....'</li> <li>See error</li> </ol> <p dir="auto"><code class="notranslate">docker run -p 3000:3000 -it cgcweb</code></p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">A clear and concise description of what you expected to happen.<br> I'd expect Next to work in Docker.</p> <h2 dir="auto">Screenshots</h2> <p dir="auto">If applicable, add screenshots to help explain your problem.</p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: MacOS</li> <li>Node 8.9.4 and 10.13</li> <li>Version of Next.js: [9.0.1]</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">Add any other context about the problem here.</p>
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">I have following code inside server.js</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="server.get('/ar/:id', (req, res) =&gt; { const queryParams = {id: req.params.id}; const pagePath = '/artist'; return ssrCache({req, res, pagePath, queryParams}) });"><pre class="notranslate"><code class="notranslate">server.get('/ar/:id', (req, res) =&gt; { const queryParams = {id: req.params.id}; const pagePath = '/artist'; return ssrCache({req, res, pagePath, queryParams}) }); </code></pre></div> <p dir="auto">And</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;Link as={`/ar/${o.id}`} href={`/artist?id=${o.id}`}&gt;"><pre class="notranslate"><code class="notranslate"> &lt;Link as={`/ar/${o.id}`} href={`/artist?id=${o.id}`}&gt; </code></pre></div> <p dir="auto">in the ./page/artist.js file. It works properly when build and run locally, but will return<br> '404 This page could not be found.' when it is deployed with docker container when trying to refresh the pages.</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">The server.js code is copy paste from ssr-caching example.</p> <h2 dir="auto">Expected behavior</h2> <h2 dir="auto">Screenshots</h2> <p dir="auto">If applicable, add screenshots to help explain your problem.</p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: macOS, Ubuntu 18.04</li> <li>Browser Chrome</li> <li>Version of Next.js: [9.0.1]</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">Add any other context about the problem here.</p>
1
<p dir="auto">In the Find widget, the "Previous match" and "Next match" buttons have labels which include their associated keybindings in parentheses. The "Replace" and "Replace All" buttons in the Replace Input box don't display keyboard shortcuts.</p> <p dir="auto">I looked into this a bit before creating an issue, and the solution isn't the simple "look up keybinding --&gt; add to label" approach that I hoped for. It looks like Replace and Replace All don't actually have keybindings defined. Instead, the keys are hardcoded into the <code class="notranslate">_onReplaceInputKeyDown()</code> method of <a href="https://github.com/Microsoft/vscode/blob/85de39a54d78de5d247b57d1e2c50cc81192212e/src/vs/editor/contrib/find/browser/findWidget.ts#L284-L292">findWidget.ts</a>.</p> <p dir="auto">I would like to see Replace and Replace All get configurable keyboard shortcuts. The defaults would come from the existing hardcoded values, so the core functionality would be unchanged. With configurable keyboard shortcuts it would be easier to display them cleanly on the Replace and Replace All buttons, and we get some flexibility as a free bonus.</p> <p dir="auto">I would like to implement this and submit a PR, but wanted to document and perhaps discuss the issue first to make sure that sort of contribution would be OK. Some comments in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="118194155" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/406" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/406/hovercard" href="https://github.com/microsoft/vscode/issues/406">#406</a> brushed up against what I'm suggesting here, but I didn't find any other potential duplicate issues.</p>
<p dir="auto">Hi there,</p> <p dir="auto">This happens in 10.8, and it also happened in the last one before that.</p> <p dir="auto">How to reproduce;</p> <ul dir="auto"> <li>Create a new extension via "yo code". I went with a TypeScript extension.</li> <li>Replace the command implementation with something like this:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" let disposable = vscode.commands.registerCommand('extension.sayHello', () =&gt; { var editor = vscode.window.activeTextEditor; if(!editor) { return; } var output = vscode.window.createOutputChannel(&quot;regex test&quot;); var count = 0; for(var i=0; i &lt; editor.document.lineCount; i++) { var line = editor.document.lineAt(i).text; if(line.match('vscode')) { console.log('Line matches: ' + line); output.appendLine(line); count++; } } output.show(); vscode.window.showInformationMessage('Found ' + count + ' matches'); }); "><pre class="notranslate"><code class="notranslate"> let disposable = vscode.commands.registerCommand('extension.sayHello', () =&gt; { var editor = vscode.window.activeTextEditor; if(!editor) { return; } var output = vscode.window.createOutputChannel("regex test"); var count = 0; for(var i=0; i &lt; editor.document.lineCount; i++) { var line = editor.document.lineAt(i).text; if(line.match('vscode')) { console.log('Line matches: ' + line); output.appendLine(line); count++; } } output.show(); vscode.window.showInformationMessage('Found ' + count + ' matches'); }); </code></pre></div> <ul dir="auto"> <li>Press F5 to open a new Code window with the extension running as part of it.</li> <li>Paste some text into the window, where some lines will match. I just pasted the source code from the first window into the new one.</li> <li>Run the extension - F1 then hello, and press enter.</li> </ul> <p dir="auto">At least on my machine, this correctly finds the expected lines. The console log output is called only once per line.</p> <p dir="auto">However, in the OutputChannel, I see something strange. Let us for clarity say that this was the expected output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1 2 3 4 5 6 7 8 9"><pre class="notranslate"><code class="notranslate">1 2 3 4 5 6 7 8 9 </code></pre></div> <p dir="auto">Then this would be the actual output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1 2 3 4 5 6 7 8 9 2 3 4 5 6 7 8 9"><pre class="notranslate"><code class="notranslate">1 2 3 4 5 6 7 8 9 2 3 4 5 6 7 8 9 </code></pre></div> <p dir="auto">In other words, it duplicates all the output lines except for the first one.</p> <p dir="auto">I created a new test project to reproduce this and it behaved the same way.</p>
0
<p dir="auto">Add optional <code class="notranslate">filter</code> option to term suggester, that only allows suggest options that match with the filter.</p>
<p dir="auto">When using phrase suggest API to provide "Did you mean ?" corrections it would be nice to include only suggestions that would return results.</p> <p dir="auto">So returned phrase must exist at least in one document in the index.</p>
1
<h3 dir="auto">Description</h3> <p dir="auto">Code to reproduce the issue:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax import jax.random import jax.numpy as jnp def myfun(x, key): n = 20 zeros = jnp.full((n,), 0) ones = jnp.full((n,), 1) maxval = x[ones] - 1 return jax.random.randint(key, (n,), zeros, maxval) key = jax.random.PRNGKey(1) x = jnp.array([0, 2]) y1 = myfun(x, key) y2 = jax.jit(myfun)(x, key) print(y1) print(y2)"><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">jax</span>.<span class="pl-s1">random</span> <span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">jnp</span> <span class="pl-k">def</span> <span class="pl-en">myfun</span>(<span class="pl-s1">x</span>, <span class="pl-s1">key</span>): <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-c1">20</span> <span class="pl-s1">zeros</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">full</span>((<span class="pl-s1">n</span>,), <span class="pl-c1">0</span>) <span class="pl-s1">ones</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">full</span>((<span class="pl-s1">n</span>,), <span class="pl-c1">1</span>) <span class="pl-s1">maxval</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span>[<span class="pl-s1">ones</span>] <span class="pl-c1">-</span> <span class="pl-c1">1</span> <span class="pl-k">return</span> <span class="pl-s1">jax</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-s1">key</span>, (<span class="pl-s1">n</span>,), <span class="pl-s1">zeros</span>, <span class="pl-s1">maxval</span>) <span class="pl-s1">key</span> <span class="pl-c1">=</span> <span class="pl-s1">jax</span>.<span class="pl-s1">random</span>.<span class="pl-v">PRNGKey</span>(<span class="pl-c1">1</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">0</span>, <span class="pl-c1">2</span>]) <span class="pl-s1">y1</span> <span class="pl-c1">=</span> <span class="pl-en">myfun</span>(<span class="pl-s1">x</span>, <span class="pl-s1">key</span>) <span class="pl-s1">y2</span> <span class="pl-c1">=</span> <span class="pl-s1">jax</span>.<span class="pl-en">jit</span>(<span class="pl-s1">myfun</span>)(<span class="pl-s1">x</span>, <span class="pl-s1">key</span>) <span class="pl-en">print</span>(<span class="pl-s1">y1</span>) <span class="pl-en">print</span>(<span class="pl-s1">y2</span>)</pre></div> <p dir="auto">Output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] [0 1 1 0 1 1 0 1 1 1 0 0 1 1 0 1 0 1 1 1]"><pre class="notranslate"><code class="notranslate">[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] [0 1 1 0 1 1 0 1 1 1 0 0 1 1 0 1 0 1 1 1] </code></pre></div> <p dir="auto">Here <code class="notranslate">maxval</code> is an array full of ones, hence <code class="notranslate">randint</code> should produce zeros only. This is the case with non-jitted version of <code class="notranslate">myfun</code>, while jitted <code class="notranslate">myfun</code> incorrectly produces a mixture of ones and zeros.</p> <h3 dir="auto">What jax/jaxlib version are you using?</h3> <p dir="auto">jax 0.3.16, jaxlib 0.3.15</p> <h3 dir="auto">Which accelerator(s) are you using?</h3> <p dir="auto">CPU</p> <h3 dir="auto">Additional System Info</h3> <p dir="auto"><em>No response</em></p>
<p dir="auto">I've come across some confusing randint behavior where it seems like maxval is being treated as inclusive rather than exclusive. I've narrowed it down this snippet of code that repros the issue on CPU and GPU:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@jax.jit def test():   batch = jnp.ones([8, 32])   maxval = batch.shape[1] - jnp.argmax(batch == 1, axis=-1) - 1     seq_crop_first_idx = jax.random.randint(       jax.random.PRNGKey(0),       [batch.shape[0]],       0,       maxval)     return maxval, seq_crop_first_idx test()"><pre class="notranslate"><code class="notranslate">@jax.jit def test():   batch = jnp.ones([8, 32])   maxval = batch.shape[1] - jnp.argmax(batch == 1, axis=-1) - 1     seq_crop_first_idx = jax.random.randint(       jax.random.PRNGKey(0),       [batch.shape[0]],       0,       maxval)     return maxval, seq_crop_first_idx test() </code></pre></div> <p dir="auto">Results in:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(DeviceArray([31, 31, 31, 31, 31, 31, 31, 31], dtype=int32),  DeviceArray([28,  6, 18,  0, 10,  8, 31,  6], dtype=int32))"><pre class="notranslate"><code class="notranslate">(DeviceArray([31, 31, 31, 31, 31, 31, 31, 31], dtype=int32),  DeviceArray([28,  6, 18,  0, 10,  8, 31,  6], dtype=int32)) </code></pre></div> <p dir="auto"><code class="notranslate">maxval</code> is clearly all <code class="notranslate">31</code>, but the second to last output is also <code class="notranslate">31</code>.</p> <p dir="auto">Here's a colab version: <a href="https://colab.research.google.com/drive/1RJ90xhN-VU7PMwecKhPCCVX1XYhH45FQ?usp=sharing" rel="nofollow">https://colab.research.google.com/drive/1RJ90xhN-VU7PMwecKhPCCVX1XYhH45FQ?usp=sharing</a></p>
1
<p dir="auto">Flaked twice on kubernetes-e2e-gke-slow-release-1.2<br> <a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/97" rel="nofollow">kubernetes-e2e-gke-slow-release-1.2/97</a><br> <a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/80" rel="nofollow">kubernetes-e2e-gke-slow-release-1.2/80</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Pod Disks should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession [Slow] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:216 Expected error: &lt;*exec.ExitError | 0xc2082bc5f0&gt;: { ProcessState: { pid: 15037, status: 256, rusage: { Utime: {Sec: 0, Usec: 424000}, Stime: {Sec: 0, Usec: 28000}, Maxrss: 23428, Ixrss: 0, Idrss: 0, Isrss: 0, Minflt: 1473, Majflt: 0, Nswap: 0, Inblock: 0, Oublock: 0, Msgsnd: 0, Msgrcv: 0, Nsignals: 0, Nvcsw: 2742, Nivcsw: 5, }, }, } exit status 1 not to have occurred Pod Disks should schedule a pod w/two RW PDs both mounted to one container, write to PD, verify contents, delete pod, recreate pod, verify contents, and repeat in rapid succession [Slow] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:270 Expected error: &lt;*exec.ExitError | 0xc2083d50f0&gt;: { ProcessState: { pid: 18125, status: 256, rusage: { Utime: {Sec: 0, Usec: 436000}, Stime: {Sec: 0, Usec: 28000}, Maxrss: 23360, Ixrss: 0, Idrss: 0, Isrss: 0, Minflt: 1440, Majflt: 0, Nswap: 0, Inblock: 0, Oublock: 0, Msgsnd: 0, Msgrcv: 0, Nsignals: 0, Nvcsw: 2856, Nivcsw: 3, }, }, } exit status 1 not to have occurred Pod Disks should schedule a pod w/ a RW PD, remove it, then schedule it on another host [Slow] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:121 Expected error: &lt;*exec.ExitError | 0xc2083f8420&gt;: { ProcessState: { pid: 11297, status: 256, rusage: { Utime: {Sec: 0, Usec: 392000}, Stime: {Sec: 0, Usec: 32000}, Maxrss: 23300, Ixrss: 0, Idrss: 0, Isrss: 0, Minflt: 1488, Majflt: 0, Nswap: 0, Inblock: 0, Oublock: 0, Msgsnd: 0, Msgrcv: 0, Nsignals: 0, Nvcsw: 2524, Nivcsw: 8, }, }, } exit status 1 not to have occurred"><pre class="notranslate"><code class="notranslate">Pod Disks should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession [Slow] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:216 Expected error: &lt;*exec.ExitError | 0xc2082bc5f0&gt;: { ProcessState: { pid: 15037, status: 256, rusage: { Utime: {Sec: 0, Usec: 424000}, Stime: {Sec: 0, Usec: 28000}, Maxrss: 23428, Ixrss: 0, Idrss: 0, Isrss: 0, Minflt: 1473, Majflt: 0, Nswap: 0, Inblock: 0, Oublock: 0, Msgsnd: 0, Msgrcv: 0, Nsignals: 0, Nvcsw: 2742, Nivcsw: 5, }, }, } exit status 1 not to have occurred Pod Disks should schedule a pod w/two RW PDs both mounted to one container, write to PD, verify contents, delete pod, recreate pod, verify contents, and repeat in rapid succession [Slow] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:270 Expected error: &lt;*exec.ExitError | 0xc2083d50f0&gt;: { ProcessState: { pid: 18125, status: 256, rusage: { Utime: {Sec: 0, Usec: 436000}, Stime: {Sec: 0, Usec: 28000}, Maxrss: 23360, Ixrss: 0, Idrss: 0, Isrss: 0, Minflt: 1440, Majflt: 0, Nswap: 0, Inblock: 0, Oublock: 0, Msgsnd: 0, Msgrcv: 0, Nsignals: 0, Nvcsw: 2856, Nivcsw: 3, }, }, } exit status 1 not to have occurred Pod Disks should schedule a pod w/ a RW PD, remove it, then schedule it on another host [Slow] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/pd.go:121 Expected error: &lt;*exec.ExitError | 0xc2083f8420&gt;: { ProcessState: { pid: 11297, status: 256, rusage: { Utime: {Sec: 0, Usec: 392000}, Stime: {Sec: 0, Usec: 32000}, Maxrss: 23300, Ixrss: 0, Idrss: 0, Isrss: 0, Minflt: 1488, Majflt: 0, Nswap: 0, Inblock: 0, Oublock: 0, Msgsnd: 0, Msgrcv: 0, Nsignals: 0, Nvcsw: 2524, Nivcsw: 8, }, }, } exit status 1 not to have occurred </code></pre></div>
<p dir="auto"><strong>KubeProxy should test kube-proxy [Slow]</strong></p> <p dir="auto">_/go/src/k8s.io/kubernetes/<em>output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubeproxy.go:105 Expected error: &lt;errors.errorString | 0xc208554840&gt;: { s: "Error running &amp;{/jenkins-master-data/jobs/kubernetes-e2e-gke-slow-release-1.2/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.154.105.26 --kubeconfig=/var/lib/jenkins/jobs/kubernetes-e2e-gke-slow-release-1.2/workspace/.kube/config exec --namespace=e2e-tests-e2e-kubeproxy-dtjqf host-test-container-pod -- /bin/sh -c for i in $(seq 1 5); do echo 'hostName' | timeout -t 3 nc -w 1 -u 10.180.0.5 8081; echo; sleep 1s; done | grep -v '^\s*$' |sort | uniq -c | wc -l] [] Error from server: No SSH tunnels currently open. Were the targets able to accept an ssh-key for user "gke-c5d9e45b81848219014b"?\n [] 0xc2084e48e0 exit status 1 true [0xc2083e82c0 0xc2083e82e8 0xc2083e8308] [0xc2083e82c0 0xc2083e82e8 0xc2083e8308] [0xc2083e82e0 0xc2083e8300] [0x95de00 0x95de00] 0xc2083d5f20}:\nCommand stdout:\n\nstderr:\nError from server: No SSH tunnels currently open. Were the targets able to accept an ssh-key for user "gke-c5d9e45b81848219014b"?\n\nerror:\nexit status 1\n", } Error running &amp;{/jenkins-master-data/jobs/kubernetes-e2e-gke-slow-release-1.2/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.154.105.26 --kubeconfig=/var/lib/jenkins/jobs/kubernetes-e2e-gke-slow-release-1.2/workspace/.kube/config exec --namespace=e2e-tests-e2e-kubeproxy-dtjqf host-test-container-pod -- /bin/sh -c for i in $(seq 1 5); do echo 'hostName' | timeout -t 3 nc -w 1 -u 10.180.0.5 8081; echo; sleep 1s; done | grep -v '^\s*$' |sort | uniq -c | wc -l] [] Error from server: No SSH tunnels currently open. Were the targets able to accept an ssh-key for user "gke-c5d9e45b81848219014b"? [] 0xc2084e48e0 exit status 1 true [0xc2083e82c0 0xc2083e82e8 0xc2083e8308] [0xc2083e82c0 0xc2083e82e8 0xc2083e8308] [0xc2083e82e0 0xc2083e8300] [0x95de00 0x95de00] 0xc2083d5f20}: Command stdout: stderr: Error from server: No SSH tunnels currently open. Were the targets able to accept an ssh-key for user "gke-c5d9e45b81848219014b"? error: exit status 1 not to have occurred</em></p> <p dir="auto">e.g.:</p> <ul dir="auto"> <li><a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/97" rel="nofollow">https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/97</a></li> <li><a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/80" rel="nofollow">https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/80</a></li> <li><a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/55" rel="nofollow">https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/55</a></li> <li><a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/46" rel="nofollow">https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/46</a></li> <li><a href="https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/14" rel="nofollow">https://storage.cloud.google.com/kubernetes-jenkins/logs/kubernetes-e2e-gke-slow-release-1.2/14</a></li> </ul>
1
<p dir="auto">When using iter_lines with chunk_size other than None, it can generate an extra blank line if the end of a chunk lands on a delimiter.</p> <h2 dir="auto">Reproduction Steps</h2> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import StringIO import requests def getTestFile(): f = StringIO.StringIO() f.write('a-b') f.seek(0) return f r = requests.Response() r.raw = getTestFile() print [l for l in r.iter_lines(delimiter='-')] r = requests.Response() r.raw = getTestFile() print [l for l in r.iter_lines(delimiter='-', chunk_size=2)]"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">StringIO</span> <span class="pl-k">import</span> <span class="pl-s1">requests</span> <span class="pl-k">def</span> <span class="pl-en">getTestFile</span>(): <span class="pl-s1">f</span> <span class="pl-c1">=</span> <span class="pl-v">StringIO</span>.<span class="pl-v">StringIO</span>() <span class="pl-s1">f</span>.<span class="pl-en">write</span>(<span class="pl-s">'a-b'</span>) <span class="pl-s1">f</span>.<span class="pl-en">seek</span>(<span class="pl-c1">0</span>) <span class="pl-k">return</span> <span class="pl-s1">f</span> <span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-s1">requests</span>.<span class="pl-v">Response</span>() <span class="pl-s1">r</span>.<span class="pl-s1">raw</span> <span class="pl-c1">=</span> <span class="pl-en">getTestFile</span>() <span class="pl-s1">print</span> [<span class="pl-s1">l</span> <span class="pl-s1">for</span> <span class="pl-s1">l</span> <span class="pl-c1">in</span> <span class="pl-s1">r</span>.<span class="pl-en">iter_lines</span>(<span class="pl-s1">delimiter</span><span class="pl-c1">=</span><span class="pl-s">'-'</span>)] <span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-s1">requests</span>.<span class="pl-v">Response</span>() <span class="pl-s1">r</span>.<span class="pl-s1">raw</span> <span class="pl-c1">=</span> <span class="pl-en">getTestFile</span>() <span class="pl-s1">print</span> [<span class="pl-s1">l</span> <span class="pl-s1">for</span> <span class="pl-s1">l</span> <span class="pl-c1">in</span> <span class="pl-s1">r</span>.<span class="pl-en">iter_lines</span>(<span class="pl-s1">delimiter</span><span class="pl-c1">=</span><span class="pl-s">'-'</span>, <span class="pl-s1">chunk_size</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)]</pre></div> <h2 dir="auto">Expected Result</h2> <p dir="auto">['a', 'b']<br> ['a', 'b']</p> <h2 dir="auto">Actual Result</h2> <p dir="auto">['a', 'b']<br> ['a', '', 'b']</p> <h2 dir="auto">Proposed Fix</h2> <p dir="auto">I modified iter_lines as follows, and the above test passes:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" def iter_lines(self, chunk_size=ITER_CHUNK_SIZE, decode_unicode=None, delimiter=None): &quot;&quot;&quot;Iterates over the response data, one line at a time. When stream=True is set on the request, this avoids reading the content at once into memory for large responses. .. note:: This method is not reentrant safe. &quot;&quot;&quot; pending = None for chunk in self.iter_content(chunk_size=chunk_size, decode_unicode=decode_unicode): if pending is not None: chunk = pending + chunk if delimiter: lines = chunk.split(delimiter) else: lines = chunk.splitlines() if lines and lines[-1] and chunk and lines[-1][-1] == chunk[-1]: pending = lines.pop() elif lines and lines[-1] == '': pending = lines.pop() else: pending = None for line in lines: yield line if pending is not None: yield pending"><pre class="notranslate"> <span class="pl-k">def</span> <span class="pl-en">iter_lines</span>(<span class="pl-s1">self</span>, <span class="pl-s1">chunk_size</span><span class="pl-c1">=</span><span class="pl-v">ITER_CHUNK_SIZE</span>, <span class="pl-s1">decode_unicode</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">delimiter</span><span class="pl-c1">=</span><span class="pl-c1">None</span>): <span class="pl-s">"""Iterates over the response data, one line at a time. When</span> <span class="pl-s"> stream=True is set on the request, this avoids reading the</span> <span class="pl-s"> content at once into memory for large responses.</span> <span class="pl-s"></span> <span class="pl-s"> .. note:: This method is not reentrant safe.</span> <span class="pl-s"> """</span> <span class="pl-s1">pending</span> <span class="pl-c1">=</span> <span class="pl-c1">None</span> <span class="pl-k">for</span> <span class="pl-s1">chunk</span> <span class="pl-c1">in</span> <span class="pl-s1">self</span>.<span class="pl-en">iter_content</span>(<span class="pl-s1">chunk_size</span><span class="pl-c1">=</span><span class="pl-s1">chunk_size</span>, <span class="pl-s1">decode_unicode</span><span class="pl-c1">=</span><span class="pl-s1">decode_unicode</span>): <span class="pl-k">if</span> <span class="pl-s1">pending</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-c1">None</span>: <span class="pl-s1">chunk</span> <span class="pl-c1">=</span> <span class="pl-s1">pending</span> <span class="pl-c1">+</span> <span class="pl-s1">chunk</span> <span class="pl-k">if</span> <span class="pl-s1">delimiter</span>: <span class="pl-s1">lines</span> <span class="pl-c1">=</span> <span class="pl-s1">chunk</span>.<span class="pl-en">split</span>(<span class="pl-s1">delimiter</span>) <span class="pl-k">else</span>: <span class="pl-s1">lines</span> <span class="pl-c1">=</span> <span class="pl-s1">chunk</span>.<span class="pl-en">splitlines</span>() <span class="pl-k">if</span> <span class="pl-s1">lines</span> <span class="pl-c1">and</span> <span class="pl-s1">lines</span>[<span class="pl-c1">-</span><span class="pl-c1">1</span>] <span class="pl-c1">and</span> <span class="pl-s1">chunk</span> <span class="pl-c1">and</span> <span class="pl-s1">lines</span>[<span class="pl-c1">-</span><span class="pl-c1">1</span>][<span class="pl-c1">-</span><span class="pl-c1">1</span>] <span class="pl-c1">==</span> <span class="pl-s1">chunk</span>[<span class="pl-c1">-</span><span class="pl-c1">1</span>]: <span class="pl-s1">pending</span> <span class="pl-c1">=</span> <span class="pl-s1">lines</span>.<span class="pl-en">pop</span>() <span class="pl-k">elif</span> <span class="pl-s1">lines</span> <span class="pl-c1">and</span> <span class="pl-s1">lines</span>[<span class="pl-c1">-</span><span class="pl-c1">1</span>] <span class="pl-c1">==</span> <span class="pl-s">''</span>: <span class="pl-s1">pending</span> <span class="pl-c1">=</span> <span class="pl-s1">lines</span>.<span class="pl-en">pop</span>() <span class="pl-k">else</span>: <span class="pl-s1">pending</span> <span class="pl-c1">=</span> <span class="pl-c1">None</span> <span class="pl-k">for</span> <span class="pl-s1">line</span> <span class="pl-c1">in</span> <span class="pl-s1">lines</span>: <span class="pl-k">yield</span> <span class="pl-s1">line</span> <span class="pl-k">if</span> <span class="pl-s1">pending</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-c1">None</span>: <span class="pl-k">yield</span> <span class="pl-s1">pending</span></pre></div> <h2 dir="auto">System Information</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python -m requests.help"><pre class="notranslate"><code class="notranslate">$ python -m requests.help </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;chardet&quot;: { &quot;version&quot;: &quot;3.0.3&quot; }, &quot;cryptography&quot;: { &quot;version&quot;: &quot;&quot; }, &quot;implementation&quot;: { &quot;name&quot;: &quot;CPython&quot;, &quot;version&quot;: &quot;2.7.13&quot; }, &quot;platform&quot;: { &quot;release&quot;: &quot;16.6.0&quot;, &quot;system&quot;: &quot;Darwin&quot; }, &quot;pyOpenSSL&quot;: { &quot;openssl_version&quot;: &quot;&quot;, &quot;version&quot;: null }, &quot;requests&quot;: { &quot;version&quot;: &quot;2.17.3&quot; }, &quot;system_ssl&quot;: { &quot;version&quot;: &quot;100020bf&quot; }, &quot;urllib3&quot;: { &quot;version&quot;: &quot;1.21.1&quot; }, &quot;using_pyopenssl&quot;: false }"><pre class="notranslate"><code class="notranslate">{ "chardet": { "version": "3.0.3" }, "cryptography": { "version": "" }, "implementation": { "name": "CPython", "version": "2.7.13" }, "platform": { "release": "16.6.0", "system": "Darwin" }, "pyOpenSSL": { "openssl_version": "", "version": null }, "requests": { "version": "2.17.3" }, "system_ssl": { "version": "100020bf" }, "urllib3": { "version": "1.21.1" }, "using_pyopenssl": false } </code></pre></div> <p dir="auto">This command is only available on Requests v2.16.4 and greater. Otherwise,<br> please provide some basic information about your system (Python version,<br> operating system, &amp;c).</p>
<p dir="auto">Here is a small test program to demonstrate the bug:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import requests url = &quot;http://lohas.pixnet.net/blog&quot; r = requests.get(url) iter_lines = [line for line in r.iter_lines(chunk_size=7, decode_unicode=False)] split_lines = r.content.splitlines() for index, (iline, sline) in enumerate(zip(iter_lines, split_lines)): if iline != sline: print(&quot;line {} is broken&quot;.format(index)) print(iline, len(iline)) print(sline, len(sline)) break"><pre class="notranslate"><code class="notranslate">import requests url = "http://lohas.pixnet.net/blog" r = requests.get(url) iter_lines = [line for line in r.iter_lines(chunk_size=7, decode_unicode=False)] split_lines = r.content.splitlines() for index, (iline, sline) in enumerate(zip(iter_lines, split_lines)): if iline != sline: print("line {} is broken".format(index)) print(iline, len(iline)) print(sline, len(sline)) break </code></pre></div> <p dir="auto">Expected behavior:<br> r.iter_lines() should give the same result as r.content.splitlines()</p> <p dir="auto">Actual behavior:<br> The test program generates the following output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="line 275 is broken b'' 0 b'\t\t\t&lt;tbody&gt;' 10"><pre class="notranslate"><code class="notranslate">line 275 is broken b'' 0 b'\t\t\t&lt;tbody&gt;' 10 </code></pre></div> <p dir="auto">Changing chunk_size can break different lines.</p>
1
<h2 dir="auto">Overview</h2> <p dir="auto">This is implementation of BottomBar with multiple Navigation stack to archive multi-workspace UX, as explained in <a href="https://stackoverflow.com/questions/46483949/how-to-get-current-route-path-in-flutter" rel="nofollow">here</a>.</p> <h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Run this flutter app</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" import 'package:flutter/material.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( home: new MyHomePage(), ); } } class SecurePage extends StatelessWidget { final int index; SecurePage(this.index); Widget build(BuildContext context) { return new Column( children: &lt;Widget&gt;[ new AppBar( title: new Text('Secure'), ), new Text('No $index'), new Padding( padding: const EdgeInsets.symmetric(horizontal: 16.0), child: new TextField( autofocus: index % 2 == 1, decoration: const InputDecoration( hintText: 'Search', ), ), ), new IconButton( icon: new Icon(Icons.verified_user), onPressed: () { Navigator.of(context).push( new MaterialPageRoute( builder: (BuildContext context) { return new VerifiedPage(index + 1); }, ), ); }, ), ], ); } } class VerifiedPage extends StatelessWidget { final int index; VerifiedPage(this.index); Widget build(BuildContext context) { return new Column( children: &lt;Widget&gt;[ new AppBar( title: new Text('Verity'), ), new Text('No $index'), new Padding( padding: const EdgeInsets.symmetric(horizontal: 16.0), child: new TextField( autofocus: index % 2 == 1, decoration: const InputDecoration( hintText: 'Search', ), ), ), new IconButton( icon: new Icon(Icons.security), onPressed: () { Navigator.of(context).push( new MaterialPageRoute( builder: (BuildContext context) { return new SecurePage(index + 1); }, ), ); }, ), ], ); } } class MyHomePage extends StatefulWidget { @override State createState() =&gt; new MyHomePageState(); } class MyHomePageState extends State&lt;MyHomePage&gt; { int _page = 0; List&lt;Widget&gt; initialWidgets = &lt;Widget&gt;[ new SecurePage(0), new VerifiedPage(0), ]; Widget build(BuildContext context) { return new Scaffold( body: new Stack( children: new List&lt;Widget&gt;.generate(initialWidgets.length, (int index) { return new IgnorePointer( ignoring: index != _page, child: new Opacity( opacity: _page == index ? 1.0 : 0.0, child: new Navigator( onGenerateRoute: (RouteSettings settings) { return new MaterialPageRoute( builder: (_) =&gt; initialWidgets[index], ); }, ), ), ); }), ), bottomNavigationBar: new BottomNavigationBar( currentIndex: _page, onTap: (int index) { setState(() { _page = index; }); }, items: &lt;BottomNavigationBarItem&gt;[ new BottomNavigationBarItem( icon: new Icon(Icons.security), title: new Text('Secure'), ), new BottomNavigationBarItem( icon: new Icon(Icons.verified_user), title: new Text('Verified'), ), ], ), ); } }"><pre class="notranslate"> import <span class="pl-s">'package:flutter/material.dart'</span>; <span class="pl-k">void</span> <span class="pl-en">main</span>() { <span class="pl-en">runApp</span>(<span class="pl-k">new</span> <span class="pl-c1">MyApp</span>()); } <span class="pl-k">class</span> <span class="pl-c1">MyApp</span> <span class="pl-k">extends</span> <span class="pl-c1">StatelessWidget</span> { <span class="pl-k">@override</span> <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">MaterialApp</span>( home<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">MyHomePage</span>(), ); } } <span class="pl-k">class</span> <span class="pl-c1">SecurePage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatelessWidget</span> { <span class="pl-k">final</span> <span class="pl-c1">int</span> index; <span class="pl-c1">SecurePage</span>(<span class="pl-c1">this</span>.index); <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">Column</span>( children<span class="pl-k">:</span> <span class="pl-k">&lt;</span><span class="pl-c1">Widget</span><span class="pl-k">&gt;</span>[ <span class="pl-k">new</span> <span class="pl-c1">AppBar</span>( title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Secure'</span>), ), <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'No $<span class="pl-v">index</span>'</span>), <span class="pl-k">new</span> <span class="pl-c1">Padding</span>( padding<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">EdgeInsets</span>.<span class="pl-en">symmetric</span>(horizontal<span class="pl-k">:</span> <span class="pl-c1">16.0</span>), child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TextField</span>( autofocus<span class="pl-k">:</span> index <span class="pl-k">%</span> <span class="pl-c1">2</span> <span class="pl-k">==</span> <span class="pl-c1">1</span>, decoration<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">InputDecoration</span>( hintText<span class="pl-k">:</span> <span class="pl-s">'Search'</span>, ), ), ), <span class="pl-k">new</span> <span class="pl-c1">IconButton</span>( icon<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.verified_user), onPressed<span class="pl-k">:</span> () { <span class="pl-c1">Navigator</span>.<span class="pl-en">of</span>(context).<span class="pl-en">push</span>( <span class="pl-k">new</span> <span class="pl-c1">MaterialPageRoute</span>( builder<span class="pl-k">:</span> (<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">VerifiedPage</span>(index <span class="pl-k">+</span> <span class="pl-c1">1</span>); }, ), ); }, ), ], ); } } <span class="pl-k">class</span> <span class="pl-c1">VerifiedPage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatelessWidget</span> { <span class="pl-k">final</span> <span class="pl-c1">int</span> index; <span class="pl-c1">VerifiedPage</span>(<span class="pl-c1">this</span>.index); <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">Column</span>( children<span class="pl-k">:</span> <span class="pl-k">&lt;</span><span class="pl-c1">Widget</span><span class="pl-k">&gt;</span>[ <span class="pl-k">new</span> <span class="pl-c1">AppBar</span>( title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Verity'</span>), ), <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'No $<span class="pl-v">index</span>'</span>), <span class="pl-k">new</span> <span class="pl-c1">Padding</span>( padding<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">EdgeInsets</span>.<span class="pl-en">symmetric</span>(horizontal<span class="pl-k">:</span> <span class="pl-c1">16.0</span>), child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TextField</span>( autofocus<span class="pl-k">:</span> index <span class="pl-k">%</span> <span class="pl-c1">2</span> <span class="pl-k">==</span> <span class="pl-c1">1</span>, decoration<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">InputDecoration</span>( hintText<span class="pl-k">:</span> <span class="pl-s">'Search'</span>, ), ), ), <span class="pl-k">new</span> <span class="pl-c1">IconButton</span>( icon<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.security), onPressed<span class="pl-k">:</span> () { <span class="pl-c1">Navigator</span>.<span class="pl-en">of</span>(context).<span class="pl-en">push</span>( <span class="pl-k">new</span> <span class="pl-c1">MaterialPageRoute</span>( builder<span class="pl-k">:</span> (<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">SecurePage</span>(index <span class="pl-k">+</span> <span class="pl-c1">1</span>); }, ), ); }, ), ], ); } } <span class="pl-k">class</span> <span class="pl-c1">MyHomePage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatefulWidget</span> { <span class="pl-k">@override</span> <span class="pl-c1">State</span> <span class="pl-en">createState</span>() <span class="pl-k">=&gt;</span> <span class="pl-k">new</span> <span class="pl-c1">MyHomePageState</span>(); } <span class="pl-k">class</span> <span class="pl-c1">MyHomePageState</span> <span class="pl-k">extends</span> <span class="pl-c1">State</span>&lt;<span class="pl-c1">MyHomePage</span>&gt; { <span class="pl-c1">int</span> _page <span class="pl-k">=</span> <span class="pl-c1">0</span>; <span class="pl-c1">List</span>&lt;<span class="pl-c1">Widget</span>&gt; initialWidgets <span class="pl-k">=</span> <span class="pl-k">&lt;</span><span class="pl-c1">Widget</span><span class="pl-k">&gt;</span>[ <span class="pl-k">new</span> <span class="pl-c1">SecurePage</span>(<span class="pl-c1">0</span>), <span class="pl-k">new</span> <span class="pl-c1">VerifiedPage</span>(<span class="pl-c1">0</span>), ]; <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">Scaffold</span>( body<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Stack</span>( children<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">List</span>&lt;<span class="pl-c1">Widget</span>&gt;.<span class="pl-en">generate</span>(initialWidgets.length, (<span class="pl-c1">int</span> index) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">IgnorePointer</span>( ignoring<span class="pl-k">:</span> index <span class="pl-k">!=</span> _page, child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Opacity</span>( opacity<span class="pl-k">:</span> _page <span class="pl-k">==</span> index <span class="pl-k">?</span> <span class="pl-c1">1.0</span> <span class="pl-k">:</span> <span class="pl-c1">0.0</span>, child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Navigator</span>( onGenerateRoute<span class="pl-k">:</span> (<span class="pl-c1">RouteSettings</span> settings) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">MaterialPageRoute</span>( builder<span class="pl-k">:</span> (_) <span class="pl-k">=&gt;</span> initialWidgets[index], ); }, ), ), ); }), ), bottomNavigationBar<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">BottomNavigationBar</span>( currentIndex<span class="pl-k">:</span> _page, onTap<span class="pl-k">:</span> (<span class="pl-c1">int</span> index) { <span class="pl-en">setState</span>(() { _page <span class="pl-k">=</span> index; }); }, items<span class="pl-k">:</span> <span class="pl-k">&lt;</span><span class="pl-c1">BottomNavigationBarItem</span><span class="pl-k">&gt;</span>[ <span class="pl-k">new</span> <span class="pl-c1">BottomNavigationBarItem</span>( icon<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.security), title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Secure'</span>), ), <span class="pl-k">new</span> <span class="pl-c1">BottomNavigationBarItem</span>( icon<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.verified_user), title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Verified'</span>), ), ], ), ); } }</pre></div> <h2 dir="auto">What is wrong</h2> <p dir="auto">Keyboard is not coming up in the first view ('Secure'), although it received keyboard input. Note, IconButton is working fine.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2137932/31050452-bd4bbbfc-a67c-11e7-8e96-ddb47c996936.gif"><img src="https://user-images.githubusercontent.com/2137932/31050452-bd4bbbfc-a67c-11e7-8e96-ddb47c996936.gif" alt="xvc8eh0st0" data-animated-image="" style="max-width: 100%;"></a></p> <h2 dir="auto">Expected</h2> <p dir="auto">TextField should work in both Secure and Verfity pages.</p>
<p dir="auto">Steps To Reproduce</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class HomePage extends StatefulWidget { @override _HomePageState createState() =&gt; _HomePageState(); } class _HomePageState extends State&lt;HomePage&gt; { final int _pageCount = 2; int _pageIndex = 0; @override Widget build(BuildContext context) { return Scaffold( body: _body(), bottomNavigationBar: _bottomNavigationBar(), ); } Widget _body() { return Stack( children: List&lt;Widget&gt;.generate(_pageCount, (int index) { return IgnorePointer( ignoring: index != _pageIndex, child: Opacity( opacity: _pageIndex == index ? 1.0 : 0.0, child: Navigator( onGenerateRoute: (RouteSettings settings) { return new MaterialPageRoute( builder: (_) =&gt; _page(index), settings: settings, ); }, ), ), ); }), ); } Widget _page(int index) { switch (index) { case 0: return Page1(); case 1: return Page2(); } throw &quot;Invalid index $index&quot;; } BottomNavigationBar _bottomNavigationBar() { final theme = Theme.of(context); return new BottomNavigationBar( fixedColor: theme.accentColor, currentIndex: _pageIndex, items: [ BottomNavigationBarItem( icon: Icon(Icons.list), title: Text(&quot;Page 1&quot;), ), BottomNavigationBarItem( icon: Icon(Icons.account_circle), title: Text(&quot;Page 2&quot;), ), ], onTap: (int index) { setState(() { _pageIndex = index; }); }, ); } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-c1">HomePage</span> <span class="pl-k">extends</span> <span class="pl-c1">StatefulWidget</span> { <span class="pl-k">@override</span> <span class="pl-c1">_HomePageState</span> <span class="pl-en">createState</span>() <span class="pl-k">=&gt;</span> <span class="pl-c1">_HomePageState</span>(); } <span class="pl-k">class</span> <span class="pl-c1">_HomePageState</span> <span class="pl-k">extends</span> <span class="pl-c1">State</span>&lt;<span class="pl-c1">HomePage</span>&gt; { <span class="pl-k">final</span> <span class="pl-c1">int</span> _pageCount <span class="pl-k">=</span> <span class="pl-c1">2</span>; <span class="pl-c1">int</span> _pageIndex <span class="pl-k">=</span> <span class="pl-c1">0</span>; <span class="pl-k">@override</span> <span class="pl-c1">Widget</span> <span class="pl-en">build</span>(<span class="pl-c1">BuildContext</span> context) { <span class="pl-k">return</span> <span class="pl-c1">Scaffold</span>( body<span class="pl-k">:</span> <span class="pl-en">_body</span>(), bottomNavigationBar<span class="pl-k">:</span> <span class="pl-en">_bottomNavigationBar</span>(), ); } <span class="pl-c1">Widget</span> <span class="pl-en">_body</span>() { <span class="pl-k">return</span> <span class="pl-c1">Stack</span>( children<span class="pl-k">:</span> <span class="pl-c1">List</span>&lt;<span class="pl-c1">Widget</span>&gt;.<span class="pl-en">generate</span>(_pageCount, (<span class="pl-c1">int</span> index) { <span class="pl-k">return</span> <span class="pl-c1">IgnorePointer</span>( ignoring<span class="pl-k">:</span> index <span class="pl-k">!=</span> _pageIndex, child<span class="pl-k">:</span> <span class="pl-c1">Opacity</span>( opacity<span class="pl-k">:</span> _pageIndex <span class="pl-k">==</span> index <span class="pl-k">?</span> <span class="pl-c1">1.0</span> <span class="pl-k">:</span> <span class="pl-c1">0.0</span>, child<span class="pl-k">:</span> <span class="pl-c1">Navigator</span>( onGenerateRoute<span class="pl-k">:</span> (<span class="pl-c1">RouteSettings</span> settings) { <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">MaterialPageRoute</span>( builder<span class="pl-k">:</span> (_) <span class="pl-k">=&gt;</span> <span class="pl-en">_page</span>(index), settings<span class="pl-k">:</span> settings, ); }, ), ), ); }), ); } <span class="pl-c1">Widget</span> <span class="pl-en">_page</span>(<span class="pl-c1">int</span> index) { <span class="pl-k">switch</span> (index) { <span class="pl-k">case</span> <span class="pl-c1">0</span><span class="pl-k">:</span> <span class="pl-k">return</span> <span class="pl-c1">Page1</span>(); <span class="pl-k">case</span> <span class="pl-c1">1</span><span class="pl-k">:</span> <span class="pl-k">return</span> <span class="pl-c1">Page2</span>(); } <span class="pl-k">throw</span> <span class="pl-s">"Invalid index $<span class="pl-v">index</span>"</span>; } <span class="pl-c1">BottomNavigationBar</span> <span class="pl-en">_bottomNavigationBar</span>() { <span class="pl-k">final</span> theme <span class="pl-k">=</span> <span class="pl-c1">Theme</span>.<span class="pl-en">of</span>(context); <span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">BottomNavigationBar</span>( fixedColor<span class="pl-k">:</span> theme.accentColor, currentIndex<span class="pl-k">:</span> _pageIndex, items<span class="pl-k">:</span> [ <span class="pl-c1">BottomNavigationBarItem</span>( icon<span class="pl-k">:</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.list), title<span class="pl-k">:</span> <span class="pl-c1">Text</span>(<span class="pl-s">"Page 1"</span>), ), <span class="pl-c1">BottomNavigationBarItem</span>( icon<span class="pl-k">:</span> <span class="pl-c1">Icon</span>(<span class="pl-c1">Icons</span>.account_circle), title<span class="pl-k">:</span> <span class="pl-c1">Text</span>(<span class="pl-s">"Page 2"</span>), ), ], onTap<span class="pl-k">:</span> (<span class="pl-c1">int</span> index) { <span class="pl-en">setState</span>(() { _pageIndex <span class="pl-k">=</span> index; }); }, ); } }</pre></div> <p dir="auto">In the above code If one Of the Page has a <code class="notranslate">TextInputfield</code> And i am currently on the active page, but i am not able to tap the text input all other buttons are working, the keyboard doesn't show up, or i don't thinks it's being clicked.<br> In the attached i am not able to tap on write message text box, i have moved its position also the issue still persist.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1706515/51431777-f6345980-1c53-11e9-8c31-bb6d0ed92091.png"><img width="267" alt="screen shot 2019-01-20 at 1 37 04 am" src="https://user-images.githubusercontent.com/1706515/51431777-f6345980-1c53-11e9-8c31-bb6d0ed92091.png" style="max-width: 100%;"></a></p>
1
<p dir="auto">Julia v1.3.0 on OSX v10.15.4</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="a = Array[] append!(a, &quot;foo&quot;) &gt; ERROR: MethodError: Cannot `convert` an object of type Char to an object of type String push!(a, &quot;bar&quot;) &gt; 4-element Array{String,1}: #undef #undef #undef &quot;bar&quot;"><pre class="notranslate"><code class="notranslate">a = Array[] append!(a, "foo") &gt; ERROR: MethodError: Cannot `convert` an object of type Char to an object of type String push!(a, "bar") &gt; 4-element Array{String,1}: #undef #undef #undef "bar" </code></pre></div>
<p dir="auto">Consider the following code demonstrating the bug in <code class="notranslate">append!</code></p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; a = Int64[] 0-element Array{Int64,1} julia&gt; append!(a, [1.1, 2.2]) ERROR: InexactError() in copy! at abstractarray.jl:344 in append! at array.jl:447 julia&gt; a 2-element Array{Int64,1}: 13128344792 4521590816"><pre class="notranslate">julia<span class="pl-k">&gt;</span> a <span class="pl-k">=</span> Int64[] <span class="pl-c1">0</span><span class="pl-k">-</span>element Array{Int64,<span class="pl-c1">1</span>} julia<span class="pl-k">&gt;</span> <span class="pl-c1">append!</span>(a, [<span class="pl-c1">1.1</span>, <span class="pl-c1">2.2</span>]) ERROR<span class="pl-k">:</span> <span class="pl-c1">InexactError</span>() <span class="pl-k">in</span> copy! at abstractarray<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">344</span> <span class="pl-k">in</span> append! at array<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">447</span> julia<span class="pl-k">&gt;</span> a <span class="pl-c1">2</span><span class="pl-k">-</span>element Array{Int64,<span class="pl-c1">1</span>}<span class="pl-k">:</span> <span class="pl-c1">13128344792</span> <span class="pl-c1">4521590816</span></pre></div> <p dir="auto">Now, in this case the program terminates with an error, but if the append statement is within a try/catch block the growth of the array can go unnoticed.</p> <p dir="auto">I actually discovered this bug in testing code, where I was testing that some code involving an <code class="notranslate">append!</code> raised an appropriate error. As soon as I added this test, all other tests in my code started to fail miserably.</p>
1
<p dir="auto"><code class="notranslate">const</code> cannot be applied to instance variables, but it would be nice if we can declare immutable instance variables (with <code class="notranslate">final</code> keyword, for example).</p> <p dir="auto">Will there be support for this functionality?</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Foo { private final str = 'str'; private final num: number; constructor(private final bool: boolean) { this.num = 0; } doSomething() { // The below codes raise compilation errors this.str = ''; this.num = 0; this.bool = false; } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span> <span class="pl-k">private</span> <span class="pl-c1">final</span> <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-s">'str'</span><span class="pl-kos">;</span> <span class="pl-k">private</span> <span class="pl-c1">final</span> <span class="pl-s1">num</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-k">private</span> <span class="pl-s1">final</span> <span class="pl-s1">bool</span>: <span class="pl-smi">boolean</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">num</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-en">doSomething</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-c">// The below codes raise compilation errors</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">str</span> <span class="pl-c1">=</span> <span class="pl-s">''</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">num</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">bool</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div>
<p dir="auto">Some properties in JavaScript are actually read-only, i.e. writes to them either fail silently or cause an exception. These should be modelable in TypeScript.</p> <p dir="auto">Previous attempts to design this have run into problems. A brief exploration:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface Point { x: number; y: number; } interface ImmutablePoint { readonly x: number; readonly y: number; } var pt: ImmutablePoint = { x: 4, y: 5 }; // OK, can convert mutable to non-mutable pt.x = 5; // Error, 'pt.x' is not a valid target of assignment var pt2: Point = pt; // Error, cannot convert readonly 'x' to mutable 'x' // Possibly bad behavior var pt3: Point = { x: 1, y: 1 }; var pt4: ImmutablePoint = pt3; // OK pt3.x = 5; // pt4.x is also changed? // Really bad behavior /** This function was written in TypeScript 1.0 **/ function magnitudeSquared(v: { x: number; y: number }) { return v.x * v.x + v.y * v.y; } // Now try to use it with ImmutablePoint console.log(magnitudeSquared(pt)); // Error, cannot use readonly object in non-readonly call"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">Point</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c1">y</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">interface</span> <span class="pl-smi">ImmutablePoint</span> <span class="pl-kos">{</span> <span class="pl-k">readonly</span> <span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-k">readonly</span> <span class="pl-c1">y</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">var</span> <span class="pl-s1">pt</span>: <span class="pl-smi">ImmutablePoint</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">5</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-c">// OK, can convert mutable to non-mutable</span> <span class="pl-s1">pt</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span><span class="pl-kos">;</span> <span class="pl-c">// Error, 'pt.x' is not a valid target of assignment</span> <span class="pl-k">var</span> <span class="pl-s1">pt2</span>: <span class="pl-smi">Point</span> <span class="pl-c1">=</span> <span class="pl-s1">pt</span><span class="pl-kos">;</span> <span class="pl-c">// Error, cannot convert readonly 'x' to mutable 'x'</span> <span class="pl-c">// Possibly bad behavior</span> <span class="pl-k">var</span> <span class="pl-s1">pt3</span>: <span class="pl-smi">Point</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">1</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">pt4</span>: <span class="pl-smi">ImmutablePoint</span> <span class="pl-c1">=</span> <span class="pl-s1">pt3</span><span class="pl-kos">;</span> <span class="pl-c">// OK</span> <span class="pl-s1">pt3</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span><span class="pl-kos">;</span> <span class="pl-c">// pt4.x is also changed?</span> <span class="pl-c">// Really bad behavior</span> <span class="pl-c">/** This function was written in TypeScript 1.0 **/</span> <span class="pl-k">function</span> <span class="pl-en">magnitudeSquared</span><span class="pl-kos">(</span><span class="pl-s1">v</span>: <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c1">y</span>: <span class="pl-smi">number</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">v</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">*</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">y</span> <span class="pl-c1">*</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">y</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c">// Now try to use it with ImmutablePoint</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-en">magnitudeSquared</span><span class="pl-kos">(</span><span class="pl-s1">pt</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Error, cannot use readonly object in non-readonly call</span></pre></div> <p dir="auto">Possible solutions?</p> <ul dir="auto"> <li>Allow bivariance of mutability: this is very unsound</li> <li>Something else clever? C++ did not do well with const contamination</li> </ul>
1
<p dir="auto">I use the following script to remove the 2 inputs from a siamese network and the output (a cosine distance layer).</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#!/usr/bin/env python from dir.model import load_siamese_network import sys def load_siamese_network(filepath, include_distance=True): custom_objects = { 'contrastive_loss': contrastive_loss } model = load_model(filepath, custom_objects=custom_objects) if not include_distance: # layer 0 and 1 are inputs tuned_model = model.layers[2] return tuned_model return model src = sys.argv[1] dst = sys.argv[2] model = load_siamese_network(src, include_distance=False) model.save(dst)"><pre class="notranslate"><span class="pl-c">#!/usr/bin/env python</span> <span class="pl-k">from</span> <span class="pl-s1">dir</span>.<span class="pl-s1">model</span> <span class="pl-k">import</span> <span class="pl-s1">load_siamese_network</span> <span class="pl-k">import</span> <span class="pl-s1">sys</span> <span class="pl-k">def</span> <span class="pl-en">load_siamese_network</span>(<span class="pl-s1">filepath</span>, <span class="pl-s1">include_distance</span><span class="pl-c1">=</span><span class="pl-c1">True</span>): <span class="pl-s1">custom_objects</span> <span class="pl-c1">=</span> { <span class="pl-s">'contrastive_loss'</span>: <span class="pl-s1">contrastive_loss</span> } <span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-en">load_model</span>(<span class="pl-s1">filepath</span>, <span class="pl-s1">custom_objects</span><span class="pl-c1">=</span><span class="pl-s1">custom_objects</span>) <span class="pl-k">if</span> <span class="pl-c1">not</span> <span class="pl-s1">include_distance</span>: <span class="pl-c"># layer 0 and 1 are inputs</span> <span class="pl-s1">tuned_model</span> <span class="pl-c1">=</span> <span class="pl-s1">model</span>.<span class="pl-s1">layers</span>[<span class="pl-c1">2</span>] <span class="pl-k">return</span> <span class="pl-s1">tuned_model</span> <span class="pl-k">return</span> <span class="pl-s1">model</span> <span class="pl-s1">src</span> <span class="pl-c1">=</span> <span class="pl-s1">sys</span>.<span class="pl-s1">argv</span>[<span class="pl-c1">1</span>] <span class="pl-s1">dst</span> <span class="pl-c1">=</span> <span class="pl-s1">sys</span>.<span class="pl-s1">argv</span>[<span class="pl-c1">2</span>] <span class="pl-s1">model</span> <span class="pl-c1">=</span> <span class="pl-en">load_siamese_network</span>(<span class="pl-s1">src</span>, <span class="pl-s1">include_distance</span><span class="pl-c1">=</span><span class="pl-c1">False</span>) <span class="pl-s1">model</span>.<span class="pl-en">save</span>(<span class="pl-s1">dst</span>)</pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/416585/32200140-5bfca3e8-bd8d-11e7-86b8-f5fad6471f89.png"><img width="392" alt="screen shot 2017-10-30 at 16 13 53" src="https://user-images.githubusercontent.com/416585/32200140-5bfca3e8-bd8d-11e7-86b8-f5fad6471f89.png" style="max-width: 100%;"></a></p> <p dir="auto">Here's the code I use to generate the siamese network from a base network: <a href="https://gist.github.com/aeec5b2a6efb1090375d4211aabbed6f">https://gist.github.com/aeec5b2a6efb1090375d4211aabbed6f</a></p> <p dir="auto">It appears to be working as expected but I was surprised to see that the saved file is twice smaller than the original one (90MB instead of 180MB). How could removing 2 inputs and a distance layer with no weights so dramatically reduce the file size?</p> <p dir="auto">Since this is a siamese network, both inputs share the same network + weights so removing an input shouldn't really affect the file size that much. That being said, it's possible that Keras isn't that smart about saving the model to disk and is duplicating the network weights for each input although they really are shared.</p> <p dir="auto">Is this what is happening? Or did I setup the siamese network wrong?</p>
<p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>Have I written custom code (as opposed to using example directory):</li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): CentOS Linux release 7.2.1511 (Core)</li> <li>TensorFlow backend (yes / no): YES</li> <li>TensorFlow version: v1.12.3-0-g41e0a4f56c 1.12.3</li> <li>Keras version: 2.1.6-tf</li> <li>Python version: python 3.6.5</li> <li>CUDA/cuDNN version: 9.0.176/7.6.3.30</li> <li>GPU model and memory: Tesla P100-PCIE 16GB x4</li> </ul> <p dir="auto">My model is shown below, with many BN layers.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def DnCNN(depth, filters=64, image_channels=1, use_bnorm=True): layer_count = 0 inpt = Input(shape=(None, None, image_channels), name='input' + str(layer_count)) # 1st layer, Conv+relu layer_count += 1 x = Conv2D(filters=filters, kernel_size=(3, 3), strides=(1, 1), kernel_initializer='Orthogonal', padding='same', name='conv' + str(layer_count))(inpt) layer_count += 1 x = Activation('relu', name='relu' + str(layer_count))(x) # depth-2 layers, Conv+BN+relu for i in range(depth - 2): layer_count += 1 x = Conv2D(filters=filters, kernel_size=(3, 3), strides=(1, 1), kernel_initializer='Orthogonal', padding='same', use_bias=False, name='conv' + str(layer_count))(x) if use_bnorm: layer_count += 1 # x = BatchNormalization(axis=3, momentum=0.1,epsilon=0.0001, name = 'bn'+str(layer_count))(x) x = BatchNormalization(axis=3, momentum=0.0, epsilon=0.0001, name='bn' + str(layer_count))(x) layer_count += 1 x = Activation('relu', name='relu' + str(layer_count))(x) # last layer, Conv layer_count += 1 x = Conv2D(filters=image_channels, kernel_size=(3, 3), strides=(1, 1), kernel_initializer='Orthogonal', padding='same', use_bias=False, name='conv' + str(layer_count))(x) layer_count += 1 x = Subtract(name='subtract' + str(layer_count))([inpt, x]) # input - noise model = Model(inputs=inpt, outputs=x) return model "><pre class="notranslate"><code class="notranslate"> def DnCNN(depth, filters=64, image_channels=1, use_bnorm=True): layer_count = 0 inpt = Input(shape=(None, None, image_channels), name='input' + str(layer_count)) # 1st layer, Conv+relu layer_count += 1 x = Conv2D(filters=filters, kernel_size=(3, 3), strides=(1, 1), kernel_initializer='Orthogonal', padding='same', name='conv' + str(layer_count))(inpt) layer_count += 1 x = Activation('relu', name='relu' + str(layer_count))(x) # depth-2 layers, Conv+BN+relu for i in range(depth - 2): layer_count += 1 x = Conv2D(filters=filters, kernel_size=(3, 3), strides=(1, 1), kernel_initializer='Orthogonal', padding='same', use_bias=False, name='conv' + str(layer_count))(x) if use_bnorm: layer_count += 1 # x = BatchNormalization(axis=3, momentum=0.1,epsilon=0.0001, name = 'bn'+str(layer_count))(x) x = BatchNormalization(axis=3, momentum=0.0, epsilon=0.0001, name='bn' + str(layer_count))(x) layer_count += 1 x = Activation('relu', name='relu' + str(layer_count))(x) # last layer, Conv layer_count += 1 x = Conv2D(filters=image_channels, kernel_size=(3, 3), strides=(1, 1), kernel_initializer='Orthogonal', padding='same', use_bias=False, name='conv' + str(layer_count))(x) layer_count += 1 x = Subtract(name='subtract' + str(layer_count))([inpt, x]) # input - noise model = Model(inputs=inpt, outputs=x) return model </code></pre></div> <p dir="auto">My test set is (128 * n, 40, 40, 1), batch_size = 128<br> It's normal for me to run my code on a single GPU<br> However, when I use multiple GPUs(multi_gpu_num), the weight of the BN layer becomes NAN.<br> Strangely, this seems to be related only to GPU_NUM :<br> When GPU_NUM = 2, the weights become Nan at the 129th step of training,<br> When GPU_NUM = 4, the weights become Nan at the 65th step of training,<br> Whether I change the batch_size to 64, 128, or 512, the above behaviors still exist</p> <p dir="auto">code:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if __name__ == '__main__': # model selection # with tf.device('/cpu:0'): # model = DnCNN(depth=17, filters=64, image_channels=1, use_bnorm=True) model = DnCNN(depth=17, filters=64, image_channels=1, use_bnorm=True) model.summary() # for reproducibility np.random.seed(seed=10) # load the last model in matconvnet style initial_epoch = findLastCheckpoint(save_dir=save_dir) if initial_epoch &gt; 0: print('resuming by loading epoch %03d' % initial_epoch) model = load_model(os.path.join(save_dir, 'model_%03d.hdf5' % initial_epoch), compile=False) # compile the model gpu_num = 2 print(&quot;[INFO] training with {} GPUs...&quot;.format(gpu_num)) # model = DnCNN(depth=17, filters=64, image_channels=1, use_bnorm=True) parallel_model = multi_gpu_model(model, gpus=gpu_num) # model.compile(optimizer=Adam(0.001), loss=sum_squared_error) parallel_model.compile(optimizer=Adam(0.001), loss=sum_squared_error) # use call back functions args.train_data = r'data/Train400' #train set args.batch_size = 512 args.epoch = 2 checkpointer = ModelCheckpoint(os.path.join(save_dir, 'model_{epoch:03d}.hdf5'), verbose=1, save_weights_only=False, period=args.save_every) csv_logger = CSVLogger(os.path.join(save_dir, 'log.csv'), append=True, separator=',') lr_scheduler = LearningRateScheduler(lr_schedule) data = train_datagen(batch_size=args.batch_size, data_dir=args.train_data) # history = model.fit_generator(data, # steps_per_epoch=2000, epochs=args.epoch, verbose=1, initial_epoch=initial_epoch, # callbacks=[checkpointer, csv_logger, lr_scheduler]) history = parallel_model.fit_generator(data, steps_per_epoch=2000,epochs=args.epoch, verbose=1, initial_epoch=initial_epoch, callbacks=[csv_logger, lr_scheduler]) model.save('test.h5') parallel_model.save('testpa.h5') "><pre class="notranslate"><code class="notranslate">if __name__ == '__main__': # model selection # with tf.device('/cpu:0'): # model = DnCNN(depth=17, filters=64, image_channels=1, use_bnorm=True) model = DnCNN(depth=17, filters=64, image_channels=1, use_bnorm=True) model.summary() # for reproducibility np.random.seed(seed=10) # load the last model in matconvnet style initial_epoch = findLastCheckpoint(save_dir=save_dir) if initial_epoch &gt; 0: print('resuming by loading epoch %03d' % initial_epoch) model = load_model(os.path.join(save_dir, 'model_%03d.hdf5' % initial_epoch), compile=False) # compile the model gpu_num = 2 print("[INFO] training with {} GPUs...".format(gpu_num)) # model = DnCNN(depth=17, filters=64, image_channels=1, use_bnorm=True) parallel_model = multi_gpu_model(model, gpus=gpu_num) # model.compile(optimizer=Adam(0.001), loss=sum_squared_error) parallel_model.compile(optimizer=Adam(0.001), loss=sum_squared_error) # use call back functions args.train_data = r'data/Train400' #train set args.batch_size = 512 args.epoch = 2 checkpointer = ModelCheckpoint(os.path.join(save_dir, 'model_{epoch:03d}.hdf5'), verbose=1, save_weights_only=False, period=args.save_every) csv_logger = CSVLogger(os.path.join(save_dir, 'log.csv'), append=True, separator=',') lr_scheduler = LearningRateScheduler(lr_schedule) data = train_datagen(batch_size=args.batch_size, data_dir=args.train_data) # history = model.fit_generator(data, # steps_per_epoch=2000, epochs=args.epoch, verbose=1, initial_epoch=initial_epoch, # callbacks=[checkpointer, csv_logger, lr_scheduler]) history = parallel_model.fit_generator(data, steps_per_epoch=2000,epochs=args.epoch, verbose=1, initial_epoch=initial_epoch, callbacks=[csv_logger, lr_scheduler]) model.save('test.h5') parallel_model.save('testpa.h5') </code></pre></div> <p dir="auto">How can I solve this problem?</p>
0
<p dir="auto">It would be nice to have a feature for <code class="notranslate">page.selectOption</code> that is similar to what was done in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="736364890" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/4342" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/playwright/pull/4342/hovercard" href="https://github.com/microsoft/playwright/pull/4342">#4342</a>. It would allow us to target a <code class="notranslate">&lt;select&gt;</code> based on the accompanying label.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;label for=&quot;my-select&quot;&gt;Choose a color&lt;/label&gt; &lt;select id=&quot;my-select&quot;&gt; &lt;option value=&quot;red&quot;&gt;Red&lt;/option&gt; &lt;option value=&quot;blue&quot;&gt;Blue&lt;/option&gt; &lt;/select&gt; await page.selectOption('text=&quot;Choose a color&quot;', 'blue');"><pre class="notranslate"><code class="notranslate">&lt;label for="my-select"&gt;Choose a color&lt;/label&gt; &lt;select id="my-select"&gt; &lt;option value="red"&gt;Red&lt;/option&gt; &lt;option value="blue"&gt;Blue&lt;/option&gt; &lt;/select&gt; await page.selectOption('text="Choose a color"', 'blue'); </code></pre></div>
<p dir="auto">It would be amazing to have something similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="678933999" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/3466" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/3466/hovercard" href="https://github.com/microsoft/playwright/issues/3466">#3466</a> but for <code class="notranslate">&lt;select&gt;</code> elements.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;label for=&quot;pet-select&quot;&gt;Choose a pet&lt;/label&gt; &lt;select id=&quot;pet-select&quot;&gt; &lt;option value=&quot;dog&quot;&gt;Dog&lt;/option&gt; &lt;option value=&quot;cat&quot;&gt;Cat&lt;/option&gt; &lt;/select&gt;"><pre class="notranslate"><code class="notranslate">&lt;label for="pet-select"&gt;Choose a pet&lt;/label&gt; &lt;select id="pet-select"&gt; &lt;option value="dog"&gt;Dog&lt;/option&gt; &lt;option value="cat"&gt;Cat&lt;/option&gt; &lt;/select&gt; </code></pre></div> <p dir="auto">Then allow using <code class="notranslate">await page.selectOption('text=Choose a pet', 'dog')</code></p>
1
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.1.0</li> <li>Operating System / Platform =&gt; Windows 64 Bit</li> <li>Compiler =&gt; Visual Studio 2017</li> <li>Gpu Model-&gt; RTX 2080 - 2 and 3 Devices tested</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">Running minmax on multiple gpus will cause GPU shared memory allocation to increase until out of memory error occurs.<br> The problem occurs on driver version 441.22, but not on driver version 431.60.<br> A number of other methods were tested and only minmax produces a shared memory leak.</p> <h5 dir="auto">Steps to reproduce</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="```.cpp"><pre class="notranslate"><code class="notranslate">```.cpp </code></pre></div> <p dir="auto">#include <br> #include "opencv2/imgproc.hpp"<br> #include "opencv2/cudafilters.hpp"<br> #include "opencv2/cudaimgproc.hpp"<br> #include "opencv2/cudaarithm.hpp"</p> <p dir="auto">using namespace std;<br> using namespace cv;</p> <p dir="auto">int main()<br> {<br> double min = 0;<br> double max = 0;<br> int numDevices = cuda::getCudaEnabledDeviceCount();<br> cuda::GpuMat * img = new cuda::GpuMat[numDevices];</p> <p dir="auto">for (int i = 0; i &lt; numDevices; i++)<br> {<br> cuda::setDevice(i);<br> img[i] = cuda::GpuMat(500, 500, CV_32F);<br> cuda::printShortCudaDeviceInfo(i);<br> }</p> <p dir="auto">for (int i = 0; ; i++)<br> {<br> cuda::setDevice(i % numDevices);<br> cuda::minMax(img[i%numDevices], &amp;min, &amp;max);<br> }<br> }</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>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt;3.2</li> <li>Operating System / Platform =&gt; Windows 64 Bit</li> <li>Compiler =&gt; Visual Studio 2017</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">the shape of outputs of <code class="notranslate">RegionLayer</code> is computed as following:<br> </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/opencv/opencv/blob/76eb38976103c86610f73d87e46b7cb5a74f0017/modules/dnn/src/layers/region_layer.cpp#L94">opencv/modules/dnn/src/layers/region_layer.cpp</a> </p> <p class="mb-0 color-fg-muted"> Line 94 in <a data-pjax="true" class="commit-tease-sha" href="/opencv/opencv/commit/76eb38976103c86610f73d87e46b7cb5a74f0017">76eb389</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="L94" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="94"></td> <td id="LC94" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> outputs = std::vector&lt;MatShape&gt;(<span class="pl-c1">1</span>, <span class="pl-c1">shape</span>(inputs[<span class="pl-c1">0</span>][<span class="pl-c1">1</span>] * inputs[<span class="pl-c1">0</span>][<span class="pl-c1">2</span>] * anchors, inputs[<span class="pl-c1">0</span>][<span class="pl-c1">3</span>] / anchors)); </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">that's does not matter if we input only one image using <code class="notranslate">blobFromImage</code>, but if we input multiple images using <code class="notranslate">blobFromImages</code> then the shape of outputs is not right, and it should changed to</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="outputs = std::vector&lt;MatShape&gt;(1, shape(inputs[0][0], inputs[0][1] * inputs[0][2] * anchors, inputs[0][3] / anchors));"><pre class="notranslate">outputs = std::vector&lt;MatShape&gt;(<span class="pl-c1">1</span>, shape(inputs[<span class="pl-c1">0</span>][<span class="pl-c1">0</span>], inputs[<span class="pl-c1">0</span>][<span class="pl-c1">1</span>] * inputs[<span class="pl-c1">0</span>][<span class="pl-c1">2</span>] * anchors, inputs[<span class="pl-c1">0</span>][<span class="pl-c1">3</span>] / anchors));</pre></div> <p dir="auto">when forward this layer, we should also forward all inputs:<br> </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/opencv/opencv/blob/76eb38976103c86610f73d87e46b7cb5a74f0017/modules/dnn/src/layers/region_layer.cpp#L218-L222">opencv/modules/dnn/src/layers/region_layer.cpp</a> </p> <p class="mb-0 color-fg-muted"> Lines 218 to 222 in <a data-pjax="true" class="commit-tease-sha" href="/opencv/opencv/commit/76eb38976103c86610f73d87e46b7cb5a74f0017">76eb389</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="L218" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="218"></td> <td id="LC218" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">const</span> <span class="pl-k">float</span> *srcData = inpBlob.<span class="pl-smi">ptr</span>&lt;<span class="pl-k">float</span>&gt;(); </td> </tr> <tr class="border-0"> <td id="L219" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="219"></td> <td id="LC219" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">float</span> *dstData = outBlob.<span class="pl-smi">ptr</span>&lt;<span class="pl-k">float</span>&gt;(); </td> </tr> <tr class="border-0"> <td id="L220" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="220"></td> <td id="LC220" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> </td> </tr> <tr class="border-0"> <td id="L221" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="221"></td> <td id="LC221" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">//</span> logistic activation for t0, for each grid cell (X x Y x Anchor-index)</span> </td> </tr> <tr class="border-0"> <td id="L222" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="222"></td> <td id="LC222" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">for</span> (<span class="pl-k">int</span> i = <span class="pl-c1">0</span>; i &lt; rows*cols*anchors; ++i) { </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">should change to</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" const float *srcData = inpBlob.ptr&lt;float&gt;(); float *dstData = outBlob.ptr&lt;float&gt;(); CV_Assert(inpBlob.size[0] == outBlob.size[0]); for (int n = 0; n &lt; inpBlob.size[0]; n++) { // logistic activation for t0, for each grid cell (X x Y x Anchor-index) for (int i = 0; i &lt; rows * cols * anchors; ++i) { ...... srcData += inpBlob.step1(0); dstData += outBlob.step1(0); }"><pre class="notranslate"> <span class="pl-k">const</span> <span class="pl-k">float</span> *srcData = inpBlob.ptr&lt;<span class="pl-k">float</span>&gt;(); <span class="pl-k">float</span> *dstData = outBlob.ptr&lt;<span class="pl-k">float</span>&gt;(); <span class="pl-en">CV_Assert</span>(inpBlob.size[<span class="pl-c1">0</span>] == outBlob.size[<span class="pl-c1">0</span>]); <span class="pl-k">for</span> (<span class="pl-k">int</span> n = <span class="pl-c1">0</span>; n &lt; inpBlob.size[<span class="pl-c1">0</span>]; n++) { <span class="pl-c"><span class="pl-c">//</span> logistic activation for t0, for each grid cell (X x Y x Anchor-index)</span> <span class="pl-k">for</span> (<span class="pl-k">int</span> i = <span class="pl-c1">0</span>; i &lt; rows * cols * anchors; ++i) { ...... srcData += inpBlob.<span class="pl-c1">step1</span>(<span class="pl-c1">0</span>); dstData += outBlob.<span class="pl-c1">step1</span>(<span class="pl-c1">0</span>); }</pre></div>
0
<h2 dir="auto">ℹ Computer information</h2> <ul dir="auto"> <li>PowerToys version: 0.20.1</li> <li>PowerToy Utility: Keyboard Manager</li> <li>Running PowerToys as Admin: yes</li> <li>Windows build number: 19.041.423</li> </ul> <h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide detailed reproduction steps (if any)</h2> <ol dir="auto"> <li>Assign any key in Keyboard Manager to behave as 'Sleep'</li> <li>Press that key</li> </ol> <h3 dir="auto"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">✔️</g-emoji> Expected result</h3> <p dir="auto">Computer goes in the sleep mode.</p> <h3 dir="auto"><g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> Actual result</h3> <p dir="auto">Literally nothing happens. Other commands work fine.</p> <h2 dir="auto"><g-emoji class="g-emoji" alias="camera" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4f7.png">📷</g-emoji> Screenshots</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/37851576/90480622-306c2280-e139-11ea-8154-f4062b09813d.png"><img src="https://user-images.githubusercontent.com/37851576/90480622-306c2280-e139-11ea-8154-f4062b09813d.png" alt="screenshot of enabled settings" style="max-width: 100%;"></a></p>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">So currently the search function as we open it and search for files everything seems to be doing right but the issue I have is this and I'm not sure if it's a bug or something that can be improved on. So what exactly is this issue is that every time I open the search and search a file/program let say and then till this point is good but then when I open up the search again whatever that I type previously is still around which makes me have to delete them and retype in what is the new file/program that I'm looking for and aside from that the text cursor is not active which makes me have to go an extra step to get my mouse to click on the search to have the cursor active and then delete the text previously keyed and then type in the new text to look for the file/program and I feel like this is something small that can be improved and help in the long run in things.</p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">What I proposed is this.</p> <ul dir="auto"> <li>when we open up the search again after the initial what can be done is whatever that was previously keyed can stay put but make it highlighted and have the text cursor active so that with a click of delete we can straight away type in something new to move on to the next thing.<br> or</li> <li>simply make the text cursor active instead of what is currently available which the text cursor is not active and many steps have to be taken to just retype something in the search to look for something new.</li> </ul>
0
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">i have a route like : <a href="http://localhost:4200/customers/50/invoices" rel="nofollow">http://localhost:4200/customers/50/invoices</a></p> <p dir="auto">customers - is a lazy loaded module<br> 50 - is the :id parameter<br> invoices is the :module parameter</p> <p dir="auto">i have resolvers for the 50, and invoices routes.<br> if i use imperative navigation, to change to : <a href="http://localhost:4200/customers/60/invoices" rel="nofollow">http://localhost:4200/customers/60/invoices</a><br> only the resolver for the :id route is being called. the child resolver for :module is not called.</p> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">when a route is changed, we might consider to run the resolvers of it's child routes, similar to Guards (??)</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> here is the route definition for the customers lazy loaded module:</p> <p dir="auto">const routes: Routes = [<br> { path: '',<br> component: CustomersComponent,<br> children: [<br> { path: '', component: CustomersListComponent },<br> { path: ':id', component: CustomersDetailsComponent,<br> resolve: {<br> xxx1: CustomerResolve1<br> }<br> ,children: [<br> { path: ':module', component: CustomersModuleDetailsComponent,<br> resolve: {<br> xxx2: CustomerResolve2<br> }<br> }<br> ] }<br> ]<br> }<br> ];</p> <p dir="auto">the resolvers just output to the console.</p> <p dir="auto">if i enter the following url in the browser:</p> <p dir="auto"><a href="http://localhost:4200/customers/45/invoices" rel="nofollow">http://localhost:4200/customers/45/invoices</a><br> the 2 resolvers are executed.</p> <p dir="auto">if i press a button on the page that executes the following in my ts:</p> <p dir="auto">this.router.navigate(['customers','100','invoices']);<br> only the first resolver is executed !</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <p dir="auto">win10, vscode, angular-cli</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.X</li> </ul> <p dir="auto">2.3.1</p> <ul dir="auto"> <li><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]</li> </ul> <p dir="auto">Chrome</p>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">Resolvers are not called when an upstream route param changes. This is wrong as the parent route param may obviously have significance. e.g<br> company/1/employee/2<br> company/2/employee/2<br> Employee 2 is not the same employee even though the param is 2 in both cases.</p> <p dir="auto"><strong>Expected behavior</strong></p> <p dir="auto">The resolver would be called and could fetch the proper data which would then be made available to component as route data</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p> <p dir="auto">See <a href="https://github.com/slubowsky/resolve-issue">https://github.com/slubowsky/resolve-issue</a><br> Run the app (ng serve). Click on the links to navigate. Going to / from "1 and 1" to / from either of the others results in resolver being called and message being logged to the console. Going between "1 and 2" and "2 and 2" does not. Resolver is never called. Component would not be updated.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto">Its currently broken. Cant keep component current with route using a resolver and route.data.</p> <p dir="auto">Thinking about this a bit more, can it be that the design is such that resolvers are only meant to be called before a component is shown for the first time (to prevent "blank" component), but once a component is showing, the resolver and route.data are never meant to be called and updated even if the route changes?<br> If this is the case, then I need to handle the exact same thing, getting route params and fetching the appropriate data, in two places. First get the params and fetch the data in the resolver and subscribe to ActivatedRoute.data for the first update, and then do the same thing again whenever the route changes.</p> <p dir="auto">Bigger problem is that I have no way of knowing the route changed (ActivatedRoute.params is not updated either). I suppose we could subscribe to router events and get snapshot or something on NavigationEnd but things are getting very messy, multiple paths instead of one, cut and pasted code, etc... I hope this is just a bug...</p> <p dir="auto">Plus it does seem to be called when this route segments parameters change so things are really getting strange. Lots of different scenarios that all should be exactly the same but instead are all different...</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <p dir="auto">Windows 10, Visual Studio Code, Angular-cli 1.0.0-beta.20-4</p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.X</li> </ul> <p dir="auto">2.2.0</p> <ul dir="auto"> <li><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]</li> </ul> <p dir="auto">Only tried Chrome</p> <ul dir="auto"> <li> <p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br> Typescript 2.0.10</p> </li> <li> <p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</p> </li> </ul>
1
<p dir="auto">I can import numpy in the Python console, but cannot import it in an embedded python C++ application that used the same Python version with the same folders. I have only this Python version on my PC. Importing other packages from the application works.</p> <p dir="auto">The application sets Py_SetPythonHome() to my Python folder:<br> C:\Users\MyName\AppData\Local\Programs\Python\Python37-32</p> <p dir="auto">print(os.<strong>file</strong>) prints the correct file.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Py_SetProgramName(Py_DecodeLocale(ProgramName,0)); Py_SetPythonHome(Py_DecodeLocale(&quot;C:\\Users\\Richard\\AppData\\Local\\Programs\\Python\\Python37-32&quot;,0)); Py_Initialize(); PyModuleMain = PyImport_AddModule(&quot;__main__&quot;); PyGlobalDict = PyModule_GetDict(PyModuleMain); const char *Content = &quot;import os; print(os.__file__)\nimport numpy&quot;; PyRun_SimpleString(Content);"><pre class="notranslate"><span class="pl-en">Py_SetProgramName</span>(Py_DecodeLocale(ProgramName,<span class="pl-c1">0</span>)); <span class="pl-en">Py_SetPythonHome</span>(Py_DecodeLocale(<span class="pl-s"><span class="pl-pds">"</span>C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>Richard<span class="pl-cce">\\</span>AppData<span class="pl-cce">\\</span>Local<span class="pl-cce">\\</span>Programs<span class="pl-cce">\\</span>Python<span class="pl-cce">\\</span>Python37-32<span class="pl-pds">"</span></span>,<span class="pl-c1">0</span>)); <span class="pl-en">Py_Initialize</span>(); PyModuleMain = PyImport_AddModule(<span class="pl-s"><span class="pl-pds">"</span>__main__<span class="pl-pds">"</span></span>); PyGlobalDict = PyModule_GetDict(PyModuleMain); <span class="pl-k">const</span> <span class="pl-k">char</span> *Content = <span class="pl-s"><span class="pl-pds">"</span>import os; print(os.__file__)<span class="pl-cce">\n</span>import numpy<span class="pl-pds">"</span></span>; <span class="pl-en">PyRun_SimpleString</span>(Content);</pre></div> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import os; print(os.__file__) import numpy"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">os</span>; <span class="pl-en">print</span>(<span class="pl-s1">os</span>.<span class="pl-s1">__file__</span>) <span class="pl-k">import</span> <span class="pl-s1">numpy</span></pre></div> <h3 dir="auto">Error message:</h3> <p dir="auto">Traceback (most recent call last):<br> File "C:\Users\Richard\AppData\Local\Programs\Python\Python37-32\lib\site-packages\numpy\core_<em>init</em>_.py", line 40, in <br> from . import multiarray<br> File "C:\Users\Richard\AppData\Local\Programs\Python\Python37-32\lib\site-packages\numpy\core\multiarray.py", line 12, in <br> from . import overrides<br> File "C:\Users\Richard\AppData\Local\Programs\Python\Python37-32\lib\site-packages\numpy\core\overrides.py", line 6, in <br> from numpy.core._multiarray_umath import (<br> ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'</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 2, in <br> File "C:\Users\Richard\AppData\Local\Programs\Python\Python37-32\lib\site-packages\numpy_<em>init</em>_.py", line 142, in <br> from . import core<br> File "C:\Users\Richard\AppData\Local\Programs\Python\Python37-32\lib\site-packages\numpy\core_<em>init</em>_.py", line 71, in <br> raise ImportError(msg)<br> ImportError:<br> ...</p> <h3 dir="auto">Numpy/Python version information:</h3> <p dir="auto">1.16.2, 3.7 32 bit Windows</p>
<p dir="auto">I recently wanted to use the same way to construct a <code class="notranslate">linspace</code> as I did with an <code class="notranslate">mgrid</code>, i.e</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="T_size = slice(2, 30, 1) P_size = slice(0, 80, 2) grid = np.mgrid[T_size, P_size] .... linspace = np.linspace(T_size) # BOOM... exception"><pre class="notranslate"><code class="notranslate">T_size = slice(2, 30, 1) P_size = slice(0, 80, 2) grid = np.mgrid[T_size, P_size] .... linspace = np.linspace(T_size) # BOOM... exception </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TypeError: _linspace_dispatcher() missing 1 required positional argument: 'stop'"><pre class="notranslate"><code class="notranslate">TypeError: _linspace_dispatcher() missing 1 required positional argument: 'stop' </code></pre></div> <p dir="auto">I think that interoperability here would be great.</p>
0
<p dir="auto">I referred create-react-app sample and added more pages, but everytime I click on router link, I throws below error</p> <blockquote> <p dir="auto">Warning: Material-UI: You can only instantiate one class name generator on the client side.<br> If you do otherwise, you take the risk to have conflicting class names in production.</p> </blockquote> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">I should not be getting the above warning</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Everytime you click on route link it throws warning</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><a href="https://codesandbox.io/s/6z2jn1xyrw" rel="nofollow">https://codesandbox.io/s/6z2jn1xyrw</a></p> <h2 dir="auto">Your Environment</h2> <p dir="auto">See codesandbox.io link for more details</p> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>v1.0.0-beta.12</td> </tr> <tr> <td>React</td> <td>16</td> </tr> </tbody> </table>
<p dir="auto">Fresh problem with last beta 26 in Select component. See steps for reproduce.</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">On blur event the label MUST be moved above the field.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">On blur event the label return back to select field and mixed w/ selected items context</p> <p dir="auto"><strong>onFocus</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/814184/34521305-2355ac12-f09e-11e7-949c-f3a460cc2f54.png"><img src="https://user-images.githubusercontent.com/814184/34521305-2355ac12-f09e-11e7-949c-f3a460cc2f54.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><strong>onBlur</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/814184/34521315-2d049480-f09e-11e7-86cd-cd7fbdb8ad78.png"><img src="https://user-images.githubusercontent.com/814184/34521315-2d049480-f09e-11e7-86cd-cd7fbdb8ad78.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Absolutely the same problem on your demo site <a href="https://material-ui.com/demos/selects/#multiple-select" rel="nofollow">https://material-ui.com/demos/selects/#multiple-select</a></p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Going to <a href="https://material-ui.com/demos/selects/#multiple-select" rel="nofollow">https://material-ui.com/demos/selects/#multiple-select</a></li> <li>Select some items in multiple select example</li> <li>Click on any space on page</li> <li>See how label mixed with selected variants on field</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/814184/34524270-ec20258e-f0ab-11e7-82c2-8e800fb5515c.png"><img src="https://user-images.githubusercontent.com/814184/34524270-ec20258e-f0ab-11e7-82c2-8e800fb5515c.png" alt="image" style="max-width: 100%;"></a></p> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.26</td> </tr> <tr> <td>React</td> <td>15.6.2</td> </tr> <tr> <td>browser</td> <td>Chrome 63.0.3239.84 for Mac</td> </tr> </tbody> </table>
0
<p dir="auto">When the "Auto Hide Menu Bar" is enabled in the settings, some of the keyboard combinations to bring it up do not work, because they seem to conflict with other assignments eg Alt + f and Alt + h</p> <p dir="auto">To reproduce:</p> <ol dir="auto"> <li>Check "Auto Hide Menu Bar" in settings</li> <li>Have a file opened</li> <li>Clicking Alt + f will behave like Ctrl + Right arrow, instead of opening the "File" popup from the menu bar</li> </ol>
<p dir="auto">The normal Windows <code class="notranslate">Alt+{letter}</code> menu shortcuts don't work in Atom. Holding <code class="notranslate">Alt</code> highlights the relevant letter in each menu name, but then pressing the letter doesn't open the menu. For example, <code class="notranslate">Alt+F</code> should open the File menu, but instead the Key Binding Resolver shows it invoking the following:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="editor:move-to-end-of-word atom-text-editor resources\app\keymaps\emacs.json"><pre class="notranslate"><code class="notranslate">editor:move-to-end-of-word atom-text-editor resources\app\keymaps\emacs.json </code></pre></div> <p dir="auto">This is a vanilla install of Atom 0.141.0 in Windows 7 Home Premium x64. I haven't opted in to enabling anything Emacs related.</p> <p dir="auto">Pressing Alt also doesn't focus the menu bar and allow it to be navigated by arrow keys like it normally does in Windows.</p> <p dir="auto">I'm reporting this per <a href="https://discuss.atom.io/t/alt-key-menu-bar-interaction-overrides-shortuts/9192/5" rel="nofollow">this suggestion</a></p>
1
<h3 dir="auto">Website or app</h3> <p dir="auto">website for development</p> <h3 dir="auto">Repro steps</h3> <p dir="auto">Uncaught Error: Could not inspect element with id 192</p> <h3 dir="auto">How often does this bug happen?</h3> <p dir="auto">Every time</p> <h3 dir="auto">DevTools package (automated)</h3> <p dir="auto">react-devtools-extensions</p> <h3 dir="auto">DevTools version (automated)</h3> <p dir="auto">4.13.5-0ae5290b54</p> <h3 dir="auto">Error message (automated)</h3> <p dir="auto">Could not inspect element with id 192</p> <h3 dir="auto">Error call stack (automated)</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Error component stack (automated)</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="at InspectedElementContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:31392:3) at Suspense at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at div at InspectedElementErrorBoundaryWrapper (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30176:3) at NativeStyleContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32661:3) at div at div at OwnersListContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28268:3) at SettingsModalContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28709:3) at Components_Components (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34512:52) at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at PortaledContent (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30147:5) at div at div at ProfilerContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34138:3) at TreeContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:24945:3) at SettingsContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:25548:3) at ModalDialogContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30234:3) at DevTools_DevTools (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:37241:3)"><pre lang="text" class="notranslate"><code class="notranslate">at InspectedElementContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:31392:3) at Suspense at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at div at InspectedElementErrorBoundaryWrapper (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30176:3) at NativeStyleContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32661:3) at div at div at OwnersListContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28268:3) at SettingsModalContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28709:3) at Components_Components (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34512:52) at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at PortaledContent (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30147:5) at div at div at ProfilerContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34138:3) at TreeContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:24945:3) at SettingsContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:25548:3) at ModalDialogContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30234:3) at DevTools_DevTools (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:37241:3) </code></pre></div> <h3 dir="auto">GitHub query string (automated)</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="https://api.github.com/search/issues?q=Could not inspect element with id 192 in:title is:issue is:open is:public label:&quot;Component: Developer Tools&quot; repo:facebook/react"><pre lang="text" class="notranslate"><code class="notranslate">https://api.github.com/search/issues?q=Could not inspect element with id 192 in:title is:issue is:open is:public label:"Component: Developer Tools" repo:facebook/react </code></pre></div>
<h3 dir="auto">Website or app</h3> <p dir="auto"><a href="https://github.com/Agustin-A-Aubete-Cristiani/BUG-in-React/tree/master">https://github.com/Agustin-A-Aubete-Cristiani/BUG-in-React/tree/master</a></p> <h3 dir="auto">Repro steps</h3> <p dir="auto">i was using hooks for make an controlled input, i don'treally know how it happend, sorry.</p> <h3 dir="auto">How often does this bug happen?</h3> <p dir="auto">Only once</p> <h3 dir="auto">DevTools package (automated)</h3> <p dir="auto">react-devtools-extensions</p> <h3 dir="auto">DevTools version (automated)</h3> <p dir="auto">4.13.5-0ae5290b54</p> <h3 dir="auto">Error message (automated)</h3> <p dir="auto">Could not inspect element with id 4</p> <h3 dir="auto">Error call stack (automated)</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Error component stack (automated)</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="at InspectedElementContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:31392:3) at Suspense at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at div at InspectedElementErrorBoundaryWrapper (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30176:3) at NativeStyleContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32661:3) at div at div at OwnersListContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28268:3) at SettingsModalContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28709:3) at Components_Components (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34512:52) at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at PortaledContent (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30147:5) at div at div at ProfilerContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34138:3) at TreeContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:24945:3) at SettingsContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:25548:3) at ModalDialogContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30234:3) at DevTools_DevTools (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:37241:3)"><pre lang="text" class="notranslate"><code class="notranslate">at InspectedElementContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:31392:3) at Suspense at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at div at InspectedElementErrorBoundaryWrapper (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30176:3) at NativeStyleContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32661:3) at div at div at OwnersListContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28268:3) at SettingsModalContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:28709:3) at Components_Components (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34512:52) at ErrorBoundary_ErrorBoundary (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30033:5) at PortaledContent (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30147:5) at div at div at ProfilerContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:34138:3) at TreeContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:24945:3) at SettingsContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:25548:3) at ModalDialogContextController (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:30234:3) at DevTools_DevTools (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:37241:3) </code></pre></div> <h3 dir="auto">GitHub query string (automated)</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="https://api.github.com/search/issues?q=Could not inspect element with id 4 in:title is:issue is:open is:public label:&quot;Component: Developer Tools&quot; repo:facebook/react"><pre lang="text" class="notranslate"><code class="notranslate">https://api.github.com/search/issues?q=Could not inspect element with id 4 in:title is:issue is:open is:public label:"Component: Developer Tools" repo:facebook/react </code></pre></div>
1
<h5 dir="auto">Issue Type:</h5> <p dir="auto">Bug Report</p> <h5 dir="auto">Ansible Version:</h5> <p dir="auto">v1.6.7+, devel</p> <h5 dir="auto">Environment:</h5> <p dir="auto">Debian, Ubuntu</p> <h5 dir="auto">Summary:</h5> <p dir="auto">Recent <a href="https://github.com/ansible/ansible/commit/62a1295a3e08cb6c3e9f1b2a1e6e5dcaeab32527">security fix</a> prevents me from using Jinja2 <code class="notranslate">{% if %}{% else %}{% endif %}</code> syntax in a task. This prevents me from creating more flexible roles that can be easily customized using inventory lists. Basically 80% of my playbook is based around this... :-(</p> <h5 dir="auto">Steps To Reproduce:</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" --- # An example play which lets you customize the directory names using variables from inventory - hosts: all vars: dir_list: - name: 'directory' prefix: 'my_' - name: 'other_directory' tasks: - name: Create example directories file: state=directory {% if item.prefix is defined and item.prefix %} dest=/tmp/{{ item.prefix + item.name }} {% else %} dest=/tmp/{{ item.name }} {% endif %} with_items: dir_list"><pre class="notranslate"><code class="notranslate"> --- # An example play which lets you customize the directory names using variables from inventory - hosts: all vars: dir_list: - name: 'directory' prefix: 'my_' - name: 'other_directory' tasks: - name: Create example directories file: state=directory {% if item.prefix is defined and item.prefix %} dest=/tmp/{{ item.prefix + item.name }} {% else %} dest=/tmp/{{ item.name }} {% endif %} with_items: dir_list </code></pre></div> <h5 dir="auto">Expected Results:</h5> <p dir="auto">Two directories are created, <code class="notranslate">/tmp/my_directory/</code> and <code class="notranslate">/tmp/other_directory/</code>.</p> <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: [winterfell] TASK: [Create example directories] ******************************************** fatal: [winterfell] =&gt; a duplicate parameter was found in the argument string (dest) FATAL: all hosts have already failed -- aborting PLAY RECAP ******************************************************************** to retry, use: --limit @/home/drybjed/test_dest.retry winterfell : ok=1 changed=0 unreachable=1 failed=0 "><pre class="notranslate"><code class="notranslate">PLAY [all] ******************************************************************** GATHERING FACTS *************************************************************** ok: [winterfell] TASK: [Create example directories] ******************************************** fatal: [winterfell] =&gt; a duplicate parameter was found in the argument string (dest) FATAL: all hosts have already failed -- aborting PLAY RECAP ******************************************************************** to retry, use: --limit @/home/drybjed/test_dest.retry winterfell : ok=1 changed=0 unreachable=1 failed=0 </code></pre></div>
<p dir="auto">Hi! Let's have a playbook like these:</p> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- hosts: all sudo: yes tasks: - name: Reproduce items bug yum: name=nagios-plugins-{{ item }} state=present with_items: - dhcp - disc - dummy"><pre class="notranslate">- <span class="pl-ent">hosts</span>: <span class="pl-s">all</span> <span class="pl-ent">sudo</span>: <span class="pl-s">yes</span> <span class="pl-ent">tasks</span>: - <span class="pl-ent">name</span>: <span class="pl-s">Reproduce items bug</span> <span class="pl-ent">yum</span>: <span class="pl-s">name=nagios-plugins-{{ item }} state=present</span> <span class="pl-ent">with_items</span>: - <span class="pl-s">dhcp</span> - <span class="pl-s">disc</span> - <span class="pl-s">dummy</span></pre></div> <p dir="auto">and if you run this playbook, you can see an error:</p> <blockquote> <p dir="auto">failed: [mylovelyhost] =&gt; (item=dhcp,disc,dummy) =&gt; {"changed": false, "failed": true, "item": "dhcp,disc,dummy", "rc": 0, "results": ["nagios-plugins-dhcp-1.4.16-10.fc20.x86_64 providing nagios-plugins-dhcp is already installed"]}<br> msg: No Package matching 'disc' found available, installed or updated</p> </blockquote> <p dir="auto">So, string concatenation with {{ item }} variable in with_items cycle will only work for the first step. For next steps only pure {{ item }} will sended.</p>
0
<p dir="auto">The current web profiler displays all the dispatched listeners ordered by its executions. Some times I need to attach a listener in a specific priority in order to be dispatched before or after another listener. Would be good if the web profiler displays the listener priorities also. That way I don't need to inspect the source code of that listener to see which priority was assigned to it.</p>
<p dir="auto">it would be really useful if we could have the weight of listeners in the profiler panel, eks:</p> <table role="table"> <thead> <tr> <th>Event name</th> <th>Listener</th> <th>Weight</th> </tr> </thead> <tbody> <tr> <td>kernel.request</td> <td>ErrorsLoggerListener::injectLogger</td> <td>xxx</td> </tr> </tbody> </table>
1
<p dir="auto">Hello folks, I have a really irritating bug in Visual Studio 2015 Update 2 using TypeScript. The auto complete dialog in combination with generics works a little bit fuzzy. It treats it like a greater than comparison. Look at the code below.</p> <p dir="auto"><strong>TypeScript Version:</strong></p> <p dir="auto">1.8.30.0</p> <p dir="auto"><strong>Code</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Function declaration function invoke&lt;T&gt;(methodName: string, ...args: any[]) { } // Call the function, Type first letter of the generic T. invoke&lt;M // Auto complete window pops up, which is expected. // I choose Model from the auto complete window using &quot;enter&quot;. invoke &lt; Model // Notice the inserted spaces, the compiler thinks its a greater than comparison. While its actually a generic."><pre class="notranslate"><span class="pl-c">// Function declaration</span> <span class="pl-k">function</span> <span class="pl-en">invoke</span><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span><span class="pl-kos">(</span><span class="pl-s1">methodName</span>: <span class="pl-smi">string</span><span class="pl-kos">,</span> ...<span class="pl-s1">args</span>: <span class="pl-smi">any</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-c">// Call the function, Type first letter of the generic T.</span> <span class="pl-s1">invoke</span><span class="pl-c1">&lt;</span><span class="pl-smi">M</span> <span class="pl-c">// Auto complete window pops up, which is expected.</span> <span class="pl-c">// I choose Model from the auto complete window using "enter".</span> <span class="pl-s1">invoke</span> <span class="pl-c1">&lt;</span> <span class="pl-smi">Model</span> <span class="pl-c">// Notice the inserted spaces, the compiler thinks its a greater than comparison. While its actually a generic.</span></pre></div> <p dir="auto"><strong>Expected behavior:</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// I expect Model to be inserted without spaces. this.invoke&lt;Model"><pre class="notranslate"><span class="pl-c">// I expect Model to be inserted without spaces.</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">invoke</span><span class="pl-c1">&lt;</span><span class="pl-smi">Model</span></pre></div> <p dir="auto"><strong>Actual behavior:</strong></p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// I actually inserts it with spaces. this.invoke &lt; Model"><pre class="notranslate"><span class="pl-c">// I actually inserts it with spaces.</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">invoke</span> <span class="pl-c1">&lt;</span> <span class="pl-smi">Model</span></pre></div>
<p dir="auto">Input <code class="notranslate">&gt;</code> key on a following code.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;T"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-smi">T</span></pre></div> <p dir="auto">expected:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;T&gt;"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-smi">T</span><span class="pl-c1">&gt;</span></pre></div> <p dir="auto">actual:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;TemplateStringsArray&gt;"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-smi">TemplateStringsArray</span><span class="pl-c1">&gt;</span></pre></div> <p dir="auto">experience:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// writing an arrow function with generics let f = &lt;TemplateStringsArray&gt;"><pre class="notranslate"><span class="pl-c">// writing an arrow function with generics</span> <span class="pl-k">let</span> <span class="pl-s1">f</span> <span class="pl-c1">=</span> <span class="pl-c1">&lt;</span><span class="pl-smi">TemplateStringsArray</span><span class="pl-c1">&gt;</span></pre></div>
1
<p dir="auto">I include a bash script that recreates the situation.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#!/bin/sh curl -XDELETE &quot;http://localhost:9200/test&quot; curl -XPUT &quot;http://localhost:9200/test&quot; echo curl -XPUT &quot;http://localhost:9200/test/foo/_mapping&quot; -d '{ &quot;foo&quot; : { &quot;properties&quot; : { &quot;id&quot;: { &quot;type&quot; : &quot;multi_field&quot;, &quot;path&quot;: &quot;full&quot;, &quot;fields&quot; : { &quot;foo_id_in_another_field&quot; : {&quot;type&quot; : &quot;long&quot;, include_in_all:false }, &quot;id&quot; : {&quot;type&quot; : &quot;long&quot;} } } } } }' echo #foo is a basically a duplicate of the foo document to support search use cases curl -XPUT &quot;http://localhost:9200/test/bar/_mapping&quot; -d '{ &quot;bar&quot; : { &quot;properties&quot; : { &quot;id&quot;: { &quot;type&quot; : &quot;multi_field&quot;, &quot;path&quot;: &quot;full&quot;, &quot;fields&quot; : { &quot;bar_id_in_another_field&quot; : {&quot;type&quot; : &quot;long&quot;, include_in_all:false }, &quot;id&quot; : {&quot;type&quot; : &quot;long&quot;} } }, &quot;foo&quot;: { &quot;properties&quot;: { &quot;id&quot;: { &quot;type&quot; : &quot;multi_field&quot;, &quot;path&quot;: &quot;full&quot;, &quot;fields&quot; : { &quot;foo_id_in_another_field&quot; : {&quot;type&quot; : &quot;long&quot;, include_in_all:false }, &quot;id&quot; : {&quot;type&quot; : &quot;long&quot;} } } } } } } }' echo curl -XPUT &quot;http://localhost:9200/test/foo/1?refresh=true&quot; -d '{ &quot;foo&quot;: { &quot;id&quot;: 1 } }' echo #failure case appears even when not including the following JSON # &quot;bar&quot;: { # &quot;id&quot;: 2, # &quot;foo&quot;: { # &quot;id&quot;: 3 # } # } curl -XPUT &quot;http://localhost:9200/test/bar/2?refresh=true&quot; -d '{ &quot;bar&quot;: { &quot;id&quot;: 2 } }' echo #expect two results, get one (FAIL) curl -XPOST &quot;http://localhost:9200/test/foo,bar/_search?pretty=true&quot; -d '{ &quot;size&quot;: 10, &quot;query&quot;: { &quot;query_string&quot;: { &quot;query&quot;: &quot;foo.id:1 OR bar.id:2&quot; } } }' echo #except one result, get one (PASS) curl -XPOST &quot;http://localhost:9200/test/bar/_search?pretty=true&quot; -d '{ &quot;size&quot;: 10, &quot;query&quot;: { &quot;query_string&quot;: { &quot;query&quot;: &quot;foo.id:1 OR bar.id:2&quot; } } }' echo #expect one result, get one result (PASS) curl -XPOST &quot;http://localhost:9200/test/foo/_search?pretty=true&quot; -d '{ &quot;size&quot;: 10, &quot;query&quot;: { &quot;query_string&quot;: { &quot;query&quot;: &quot;foo.id:1 OR bar.id:2&quot; } } }' echo #expect two results, get tow results (PASS) curl -XPOST &quot;http://localhost:9200/test/_search?pretty=true&quot; -d '{ &quot;size&quot;: 10, &quot;query&quot;: { &quot;query_string&quot;: { &quot;query&quot;: &quot;foo.id:1 OR bar.id:2&quot; } } }'"><pre class="notranslate"><code class="notranslate">#!/bin/sh curl -XDELETE "http://localhost:9200/test" curl -XPUT "http://localhost:9200/test" echo curl -XPUT "http://localhost:9200/test/foo/_mapping" -d '{ "foo" : { "properties" : { "id": { "type" : "multi_field", "path": "full", "fields" : { "foo_id_in_another_field" : {"type" : "long", include_in_all:false }, "id" : {"type" : "long"} } } } } }' echo #foo is a basically a duplicate of the foo document to support search use cases curl -XPUT "http://localhost:9200/test/bar/_mapping" -d '{ "bar" : { "properties" : { "id": { "type" : "multi_field", "path": "full", "fields" : { "bar_id_in_another_field" : {"type" : "long", include_in_all:false }, "id" : {"type" : "long"} } }, "foo": { "properties": { "id": { "type" : "multi_field", "path": "full", "fields" : { "foo_id_in_another_field" : {"type" : "long", include_in_all:false }, "id" : {"type" : "long"} } } } } } } }' echo curl -XPUT "http://localhost:9200/test/foo/1?refresh=true" -d '{ "foo": { "id": 1 } }' echo #failure case appears even when not including the following JSON # "bar": { # "id": 2, # "foo": { # "id": 3 # } # } curl -XPUT "http://localhost:9200/test/bar/2?refresh=true" -d '{ "bar": { "id": 2 } }' echo #expect two results, get one (FAIL) curl -XPOST "http://localhost:9200/test/foo,bar/_search?pretty=true" -d '{ "size": 10, "query": { "query_string": { "query": "foo.id:1 OR bar.id:2" } } }' echo #except one result, get one (PASS) curl -XPOST "http://localhost:9200/test/bar/_search?pretty=true" -d '{ "size": 10, "query": { "query_string": { "query": "foo.id:1 OR bar.id:2" } } }' echo #expect one result, get one result (PASS) curl -XPOST "http://localhost:9200/test/foo/_search?pretty=true" -d '{ "size": 10, "query": { "query_string": { "query": "foo.id:1 OR bar.id:2" } } }' echo #expect two results, get tow results (PASS) curl -XPOST "http://localhost:9200/test/_search?pretty=true" -d '{ "size": 10, "query": { "query_string": { "query": "foo.id:1 OR bar.id:2" } } }' </code></pre></div>
<p dir="auto">Feature request:<br> Aggregations that can count only parent documents with matching children documents.</p> <p dir="auto">I've been working on a BI system with ES 0.90 and we needed count "users" which have certain attributes, for instance let's say gender and star sign. A user is a parent-level document and the attributes are child documents.</p> <p dir="auto">From the sample above, we were doing so by creating a query for each combination of male / female and the star signs and querying individually, as one can imagine, this was slow, but the results are exactly what we want. We could run this in roughly 2 minutes.</p> <p dir="auto">We considered using the msearch query to get these results in a single query and we ended up with something similar to this: <a href="https://gist.github.com/chaos-generator/9133118">https://gist.github.com/chaos-generator/9133118</a><br> The sample above runs in 40 seconds give or take.</p> <p dir="auto">And along came elastic search 1.0.0 and now we have aggregations, so we simplified our query to this: <a href="https://gist.github.com/chaos-generator/9133139">https://gist.github.com/chaos-generator/9133139</a><br> This runs lightning fast and we get the results in 200ms on average, which is ideal for us, BUT we get the total number of documents with the attributes, rather than the count on the parent documents.</p> <p dir="auto">Our problem, as you can see in the msearch gist, is that we have a parent level document and child documents, which would only be updated if another document with the exact same attributes came in, this means that a parent level user document can have three child documents that will have gender and star sign, but I only want to count the parent document, rather than each individual child document.</p> <p dir="auto">As we don't know in advance the attributes our users will be searching, we cannot use a script in index time to help us do this aggregation. We tried to use a script in search time like this: <a href="https://gist.github.com/chaos-generator/9133321">https://gist.github.com/chaos-generator/9133321</a> , but it didn't work as we wanted too:</p> <p dir="auto">You can use this gist to simulate the issue we have: <a href="https://gist.github.com/chaos-generator/9143655">https://gist.github.com/chaos-generator/9143655</a></p>
0
<p dir="auto">I'm observing the following behaviour with <code class="notranslate">workspace()</code> on julia v0.3.0+6 on Ubuntu 14.04</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; eval(parse(&quot;1+1&quot;)) 2 julia&gt; workspace() julia&gt; eval(parse(&quot;1+1&quot;)) ERROR: eval not defined"><pre class="notranslate"><code class="notranslate">julia&gt; eval(parse("1+1")) 2 julia&gt; workspace() julia&gt; eval(parse("1+1")) ERROR: eval not defined </code></pre></div> <p dir="auto">I opened a <a href="https://groups.google.com/forum/#!topic/julia-users/veyPQyPzFvI" rel="nofollow">thread</a> on julia-users and was advised the behaviour was probably a bug and to report it here.</p> <p dir="auto">-Colin</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; eval eval julia&gt; workspace() julia&gt; eval ERROR: eval not defined julia&gt; LastMain.eval eval julia&gt; versioninfo() Julia Version 0.3.0 Commit 7681878 (2014-08-20 20:43 UTC) Platform Info: System: Windows (x86_64-w64-mingw32) CPU: Intel(R) Core(TM) i7-2720QM CPU @ 2.20GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Sandybridge) LAPACK: libopenblas LIBM: libopenlibm LLVM: libLLVM-3.3"><pre class="notranslate"><code class="notranslate">julia&gt; eval eval julia&gt; workspace() julia&gt; eval ERROR: eval not defined julia&gt; LastMain.eval eval julia&gt; versioninfo() Julia Version 0.3.0 Commit 7681878 (2014-08-20 20:43 UTC) Platform Info: System: Windows (x86_64-w64-mingw32) CPU: Intel(R) Core(TM) i7-2720QM CPU @ 2.20GHz WORD_SIZE: 64 BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Sandybridge) LAPACK: libopenblas LIBM: libopenlibm LLVM: libLLVM-3.3 </code></pre></div>
1
<p dir="auto">If I have created a geometry and then I update all vertex coordinates over time.</p> <p dir="auto">What´s the best way to get those changes to show in my mesh?<br> (trying to do vertex animation)</p>
<p dir="auto">Moved the discussion from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51043523" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/5728" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/5728/hovercard" href="https://github.com/mrdoob/three.js/issues/5728">#5728</a> to a separate issue.</p> <p dir="auto">The idea is to add <code class="notranslate">THREE.Image</code> as an additional class which is used by <code class="notranslate">THREE.Texture</code>. An instance of <code class="notranslate">THREE.Image</code> is directly mapped to an instance of <code class="notranslate">WebGLTexture</code> (the raw WebGL texture object). That means multiple textures can refer to the same instance of <code class="notranslate">THREE.Image</code> and not causing redundant texture uploads anymore (related issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="51043523" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/5728" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/5728/hovercard" href="https://github.com/mrdoob/three.js/issues/5728">#5728</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="52951011" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/5821" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/5821/hovercard" href="https://github.com/mrdoob/three.js/issues/5821">#5821</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="107932567" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/7223" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/7223/hovercard" href="https://github.com/mrdoob/three.js/issues/7223">#7223</a>)</p> <p dir="auto">Ideally, <code class="notranslate">THREE.Image</code> will make the handling of image objects transparent (e.g. the difference in <code class="notranslate">HTMLImageElement</code>, <code class="notranslate">ImageBitmap</code> or the image stub in <code class="notranslate">DataTexture</code> is encapsulated in this new class).</p>
0
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have 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" checked=""> 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" checked=""> 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> <p dir="auto">This proposes Celery package to provide a generic <code class="notranslate">delay(func, *args, **kwargs)</code> that wraps any func or method thrown at it.</p> <h1 dir="auto">Design</h1> <p dir="auto">Historically, to make a function "able" to be delayed via Celery you need to wrap it in a decorator at least. This can be ok for own code, but not for 3rd-party code. Also makes your code coupled with Celery or at least with Celery API for jobs.</p> <p dir="auto">"Modern" Python versions can natively pickle functions, so this is no more needed for simpler uses. If Celery provides a shared task that receives a function and its arguments, no custom code is needed for standard user code.</p> <p dir="auto">Example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# mymodule.py import requests def ping_website(url): requests.get(url) # main.py from celery.contrib import delay from .mymodule import ping_website from .myothermodule import greet delay(ping_website, 'http://www.google.com.br') delay(greet)"><pre class="notranslate"><span class="pl-c"># mymodule.py</span> <span class="pl-k">import</span> <span class="pl-s1">requests</span> <span class="pl-k">def</span> <span class="pl-en">ping_website</span>(<span class="pl-s1">url</span>): <span class="pl-s1">requests</span>.<span class="pl-en">get</span>(<span class="pl-s1">url</span>) <span class="pl-c"># main.py</span> <span class="pl-k">from</span> <span class="pl-s1">celery</span>.<span class="pl-s1">contrib</span> <span class="pl-k">import</span> <span class="pl-s1">delay</span> <span class="pl-k">from</span> .<span class="pl-s1">mymodule</span> <span class="pl-k">import</span> <span class="pl-s1">ping_website</span> <span class="pl-k">from</span> .<span class="pl-s1">myothermodule</span> <span class="pl-k">import</span> <span class="pl-s1">greet</span> <span class="pl-en">delay</span>(<span class="pl-s1">ping_website</span>, <span class="pl-s">'http://www.google.com.br'</span>) <span class="pl-en">delay</span>(<span class="pl-s1">greet</span>)</pre></div> <p dir="auto">Note how the Celery dependent part occur only on the main module, not on each of function definitions. Even better, as we do not care about the response, such call could be wrote as:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="delay(requests.get, 'http://www.google.com.br')"><pre class="notranslate"><span class="pl-en">delay</span>(<span class="pl-s1">requests</span>.<span class="pl-s1">get</span>, <span class="pl-s">'http://www.google.com.br'</span>)</pre></div> <p dir="auto">This is not possible with today's prescription of "create a Task to be able to .delay it", you need to import the 3rd-party funcs and code in a task that wraps it to be able to send to Celery.</p> <h2 dir="auto">Architectural Considerations</h2> <p dir="auto">Code <code class="notranslate">delay()</code>ed can be considered more convenient. Yet could potentially carry more data than needed or more data than the former way of calling. People can optimize by writing in the former way if needed.</p> <p dir="auto">Methods carry the whole <code class="notranslate">self</code> when serialized and this should be informed to the user, as they can consider if is acceptable to pay the cost to do so. Also is needed to inform that such feature needs pickle and reproduce the notice about the danger of accepting pickled jobs.</p> <h2 dir="auto">Proposed Behavior</h2> <p dir="auto">I propose some code along the following to be included on Celery release and the usage to be featured on Quickstart as the simpler way to sideload your code via Celery</p> <p dir="auto">Code to be included:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# celery/contrib.py @shared_task(serializer='pickle') def _call(func, *args, **kwargs): return func(*args, **kwargs) def delay(func, *args, **kwargs) -&gt; celery.result.AsyncResult: &quot;&quot;&quot; Defer a call of func(*args, **kwargs) to a Celery worker &quot;&quot;&quot; return _call.delay(func, *args, **kwargs)"><pre class="notranslate"><span class="pl-c"># celery/contrib.py</span> <span class="pl-en">@<span class="pl-en">shared_task</span>(<span class="pl-s1">serializer</span><span class="pl-c1">=</span><span class="pl-s">'pickle'</span>)</span> <span class="pl-k">def</span> <span class="pl-en">_call</span>(<span class="pl-s1">func</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-k">return</span> <span class="pl-en">func</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-k">def</span> <span class="pl-en">delay</span>(<span class="pl-s1">func</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-c1">-&gt;</span> <span class="pl-s1">celery</span>.<span class="pl-s1">result</span>.<span class="pl-v">AsyncResult</span>: <span class="pl-s">"""</span> <span class="pl-s"> Defer a call of func(*args, **kwargs) to a Celery worker</span> <span class="pl-s"> """</span> <span class="pl-k">return</span> <span class="pl-s1">_call</span>.<span class="pl-en">delay</span>(<span class="pl-s1">func</span>, <span class="pl-c1">*</span><span class="pl-s1">args</span>, <span class="pl-c1">**</span><span class="pl-s1">kwargs</span>)</pre></div> <p dir="auto">Example to be included in docs:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from celery.contrib import delay # synchronous version: my_slow_procedure(3, 4, spam='eggs') # sideloaded version: delay(my_slow_procedure, 3, 4, spam='eggs')"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">celery</span>.<span class="pl-s1">contrib</span> <span class="pl-k">import</span> <span class="pl-s1">delay</span> <span class="pl-c"># synchronous version:</span> <span class="pl-en">my_slow_procedure</span>(<span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-s1">spam</span><span class="pl-c1">=</span><span class="pl-s">'eggs'</span>) <span class="pl-c"># sideloaded version:</span> <span class="pl-en">delay</span>(<span class="pl-s1">my_slow_procedure</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-s1">spam</span><span class="pl-c1">=</span><span class="pl-s">'eggs'</span>)</pre></div> <h2 dir="auto">Proposed UI/UX</h2> <p dir="auto">The simpler usage is to <code class="notranslate">delay(fn, *args, **kwargs)</code> arbitrary functions/methods.</p> <p dir="auto">Anything more advanced than this could be considered advanced enough to honor the today's way of do it.</p> <h2 dir="auto">Diagrams</h2> <p dir="auto">N/A</p> <h2 dir="auto">Alternatives</h2> <p dir="auto">None</p>
<p dir="auto">Hi,<br> I am trying to update celery from 2.5.5 to 3.0.7, I am using redis as broker and latest kombu.<br> What I notice is that when I switch the workers to 3.0.7 redis open files count goes up a lot.<br> I noticed that because it hits the max open file user limit setting (is running on ubuntu) and kills redis when all workers are up and running :(</p> <p dir="auto">Looking at strace -p redis_pid I see that redis is trying to open /var/log/redis/daemon.log (defined in redis.conf as the logfile value) but fails because of the too many open files limit.</p> <p dir="auto">Looking at the logfile I see no output when running 1 single worker @3.0.7</p> <p dir="auto">I did this 3 times, moving the same amount of workers (approx 5 workers with concurrency = 20) and when moving from 2.5.5 to 3.0.1 always produce this situation.</p> <p dir="auto">I know I can fix this by set higher limits on the redis server but first I would like to know if this is normal behaviour or a side effect of some change.</p> <p dir="auto">A [maybe] useful note about this problem:<br> I was one of the user affected by the empty poll bug <a href="https://github.com/celery/celery/issues/940" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/940/hovercard">940</a>, when running 3.0.6 with same settings and amount of workers as now I did not experienced this problem (and it run for few hours).</p>
0
<p dir="auto">The Codecov number on <a href="https://github.com/scipy/scipy">https://github.com/scipy/scipy</a> is 76%. There are a number of issues with this:</p> <ul dir="auto"> <li><code class="notranslate">setup.py</code> files are measured, they should be excluded</li> <li><code class="notranslate">test_*</code> files should probably be excluded</li> <li>There may be other random files that should be excluded, e.g. <code class="notranslate">scipy/special/_precompute/*</code>.</li> <li>The number is low because of parts of vendored C and Fortran libraries that we simply don't use but did not remove. Not sure what the best solution is there, perhaps more trouble than it's worth. Would be good to have a Python-only coverage number though, to see where there are actual gaps.</li> </ul>
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1262" rel="nofollow">http://projects.scipy.org/scipy/ticket/1262</a> on 2010-08-13 by trac user pozharski, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pv">@pv</a>.</em></p> <p dir="auto">The problem is clear from the summary. I get</p> <p dir="auto">scipy.stats.maxwell.ppf(0.2499999999999999) = 1.1011507176793141</p> <p dir="auto">scipy.stats.maxwell.ppf(0.25) = 0.0</p> <p dir="auto">scipy.stats.maxwell.ppf(0.2500000000000001) = 1.1011507176793145</p> <p dir="auto">I looked in the distributions.py and scipy.stats.maxwell.ppf is calculated used scipy.special.gammaincinv, which shows the same behavior of returning zero when the argument is exactly 0.25.</p> <p dir="auto">I found this bug report</p> <p dir="auto">[http://projects.scipy.org/scipy/ticket/299]</p> <p dir="auto">which says</p> <p dir="auto">''This should be fixed in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/scipy/scipy/commit/a32d4345a330788e9d09c0935f07df332658c613/hovercard" href="https://github.com/scipy/scipy/commit/a32d4345a330788e9d09c0935f07df332658c613"><tt>a32d434</tt></a>. I use false position to find the root of gammainc(a,x)-y=0 for y &lt; 0.25.<br> ''</p> <p dir="auto">This led me to scipy/special/c_misc/gammaincinv.c which produces the artifact. With y=0.25 you get fhi=0.0 which results in false_position returning FSOLVE_NOT_BRACKET and the return value of gammaincinv being set to 0.0.</p> <p dir="auto">I guess the remedy would be to change line 28 to this</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" if (a &lt;= 0.0 || y &lt;= 0.0 || y &gt;= 0.25) {"><pre class="notranslate"><code class="notranslate"> if (a &lt;= 0.0 || y &lt;= 0.0 || y &gt;= 0.25) { </code></pre></div> <p dir="auto">It is also possible that false_position harbors a bug in line 63. If f1*f2==0, shouldn't it return the solution (either left or right side of the interval depending on which of f1 and f2 is zero). It seems that gammaincinv/maxwell bug wouldn't exist if false_position were to exhibit such (presumably correct) behavior.</p>
0