text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<p dir="auto">I'm trying to test that a user with the wrong permissions sees the correct response when visting a page that has a csrf token in the path.</p>
<p dir="auto">I've added a Behat context step to create a csrf token using the 'security.csrf.token_manager', however then visit the page with this token in the path, I get a "Cannot set session ID after the session has started" 500 error.</p>
<p dir="auto">Can anyone advise what I'm doing wrong, or how I work around this, please?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" /**
* @When /^I go to the application admin archive page for "(?P<status>[^"]*)" application (?P<number>\d+) with a valid token$/
*
* @param string $status
* @param int $number
*/
public function iGoToTheApplicationAdminArchivePageForApplicationWithAValidToken($status, $number)
{
$tokenManager = $this->kernel->getContainer()->get('security.csrf.token_manager');
$token = $tokenManager->getToken(ApplicationAdminController::CSRF_ARCHIVE);
var_dump($token);
$this->visitAdminPage('archive', $status, $number, ['token' => $token]);
}"><pre class="notranslate"><code class="notranslate"> /**
* @When /^I go to the application admin archive page for "(?P<status>[^"]*)" application (?P<number>\d+) with a valid token$/
*
* @param string $status
* @param int $number
*/
public function iGoToTheApplicationAdminArchivePageForApplicationWithAValidToken($status, $number)
{
$tokenManager = $this->kernel->getContainer()->get('security.csrf.token_manager');
$token = $tokenManager->getToken(ApplicationAdminController::CSRF_ARCHIVE);
var_dump($token);
$this->visitAdminPage('archive', $status, $number, ['token' => $token]);
}
</code></pre></div> | <p dir="auto">Hi guys!</p>
<p dir="auto">Currently, in service definition, we can set <code class="notranslate">parent</code> of service. Setting <code class="notranslate">parent</code> means that arguments, method calls, property sets and some other things copied from parent definition and (possibly) replaced by concrete definition. How about new feature, that allows to set <em>multiple</em> parents? It is more like <em>mixin</em>, or <em>trait</em> for service. It would be something like this:</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="service:
class: stdClass
arguments: [@kernel]
mixins:
- mixin_service_1
- mixin_service_2"><pre class="notranslate"><span class="pl-ent">service</span>:
<span class="pl-ent">class</span>: <span class="pl-s">stdClass</span>
<span class="pl-ent">arguments</span>: <span class="pl-s">[@kernel]</span>
<span class="pl-ent">mixins</span>:
- <span class="pl-s">mixin_service_1</span>
- <span class="pl-s">mixin_service_2</span></pre></div>
<p dir="auto">What do you think about this?</p> | 0 |
<p dir="auto">I find it difficult to read hovers: the font is the same as the underlying text and the hover text does not stand out from the underlying text. And the fixed width font makes hovers wider than necessary.</p>
<p dir="auto">Look here: where is the hover?<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1898161/13196972/746a61bc-d7df-11e5-883a-1a926573f05b.png"><img src="https://cloud.githubusercontent.com/assets/1898161/13196972/746a61bc-d7df-11e5-883a-1a926573f05b.png" alt="2016-02-20 14-33-36" style="max-width: 100%;"></a></p> | <p dir="auto">Testing <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="128546969" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/2230" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/2230/hovercard" href="https://github.com/microsoft/vscode/issues/2230">#2230</a></p>
<p dir="auto">The rendering of the documentation in the hover and in Intellisense is inconsistent, different font, font size, font family, and color.<br>
Suggest to align on the way the documentation is rendered in Intellisense. It looks nicer.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/172399/12581794/365ad5dc-c439-11e5-8a96-28296bcabdc4.png"><img src="https://cloud.githubusercontent.com/assets/172399/12581794/365ad5dc-c439-11e5-8a96-28296bcabdc4.png" alt="hover" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/172399/12581796/37c7bc96-c439-11e5-8535-1c30c78f22a9.png"><img src="https://cloud.githubusercontent.com/assets/172399/12581796/37c7bc96-c439-11e5-8535-1c30c78f22a9.png" alt="intellisense" style="max-width: 100%;"></a></p>
<p dir="auto">FYI <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bgashler1/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bgashler1">@bgashler1</a></p>
<h2 dir="auto"></h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Delayed hover</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Diagnostics hover</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Glyph hover
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Debug breakpoint expressions colorisation</li>
</ul>
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> URL click hover</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Suggest widget</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Parameter hints widget</li>
</ul> | 1 |
<h2 dir="auto">System information (version)</h2>
<ul dir="auto">
<li>OpenCV => 4.1.1-pre</li>
<li>Operating System / Platform => Windows 10 64 Bit</li>
<li>Compiler => Visual Studio 2019</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Trying to load <em>cv::cuda::CascadeClassifier</em>, get error on create:</p>
<blockquote>
<p dir="auto">OpenCV(4.1.1-pre) D:\opencv-master\modules\core\include\opencv2/core/private.cuda.hpp:113: error: (-213:The function/feature is not implemented) The called functionality is disabled for current build or platform in function 'throw_no_cuda'</p>
</blockquote>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto"><code class="notranslate">int main() { String path = "absolute_path_to\\haarcascade_frontalface_alt2_cuda.xml"; try { Ptr <cv::cuda::CascadeClassifier> cascade_gpu = cv::cuda::CascadeClassifier::create(path); } catch (Exception& e) { cout << e.msg; } }</code></p>
<p dir="auto">getCudaEnabledDeviceCount() == 0 method return 1<br>
Build info below</p>
<blockquote>
<p dir="auto">General configuration for OpenCV 4.1.1-pre =====================================<br>
Version control: unknown<br>
Extra modules:<br>
Location (extra): D:/opencv_contrib-master/modules<br>
Version control (extra): unknown<br>
Platform:<br>
Timestamp: 2019-06-26T21:39:05Z<br>
Host: Windows 10.0.17763 AMD64<br>
CMake: 3.15.0-rc1<br>
CMake generator: Visual Studio 16 2019<br>
CMake build tool: D:/IDE Files/VS Community 2019/MSBuild/Current/Bin/MSBuild.exe<br>
MSVC: 1921<br>
CPU/HW features:<br>
Baseline: SSE SSE2 SSE3<br>
requested: SSE3<br>
Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX<br>
requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX<br>
SSE4_1 (15 files): + SSSE3 SSE4_1<br>
SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2<br>
FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX<br>
AVX (4 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX<br>
AVX2 (28 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2<br>
AVX512_SKX (4 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_COMMON AVX512_SKX<br>
C/C++:<br>
Built as dynamic libs?: YES<br>
C++ Compiler: D:/IDE Files/VS Community 2019/VC/Tools/MSVC/14.21.27702/bin/Hostx64/x64/cl.exe (ver 19.21.27702.2)<br>
C++ flags (Release): /DWIN32 /D_WINDOWS /W4 /GR /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:precise /EHa /wd4127 /wd4251 /wd4324 /wd4275 /wd4512 /wd4589 /MP8 /MD /O2 /Ob2 /DNDEBUG<br>
C++ flags (Debug): /DWIN32 /D_WINDOWS /W4 /GR /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:precise /EHa /wd4127 /wd4251 /wd4324 /wd4275 /wd4512 /wd4589 /MP8 /MDd /Zi /Ob0 /Od /RTC1<br>
C Compiler: D:/IDE Files/VS Community 2019/VC/Tools/MSVC/14.21.27702/bin/Hostx64/x64/cl.exe<br>
C flags (Release): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:precise /MP8 /MD /O2 /Ob2 /DNDEBUG<br>
C flags (Debug): /DWIN32 /D_WINDOWS /W3 /D _CRT_SECURE_NO_DEPRECATE /D _CRT_NONSTDC_NO_DEPRECATE /D _SCL_SECURE_NO_WARNINGS /Gy /bigobj /Oi /fp:precise /MP8 /MDd /Zi /Ob0 /Od /RTC1<br>
Linker flags (Release): /machine:x64 /INCREMENTAL:NO<br>
Linker flags (Debug): /machine:x64 /debug /INCREMENTAL<br>
ccache: NO<br>
Precompiled headers: YES<br>
Extra dependencies: cudart_static.lib nppc.lib nppial.lib nppicc.lib nppicom.lib nppidei.lib nppif.lib nppig.lib nppim.lib nppist.lib nppisu.lib nppitc.lib npps.lib cublas.lib cufft.lib -LIBPATH:C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.1/lib/x64<br>
3rdparty dependencies:<br>
OpenCV modules:<br>
To be built: aruco bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudacodec cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dpm face features2d flann fuzzy gapi hfs highgui img_hash imgcodecs imgproc line_descriptor ml objdetect optflow phase_unwrapping photo plot quality reg rgbd saliency shape stereo stitching structured_light superres surface_matching tracking ts video videoio videostab xfeatures2d ximgproc xobjdetect xphoto<br>
Disabled: world<br>
Disabled by dependency: dnn_objdetect text<br>
Unavailable: cnn_3dobj cvv dnn freetype hdf java js matlab ovis python2 python3 sfm viz<br>
Applications: tests perf_tests apps<br>
Documentation: NO<br>
Non-free algorithms: NO<br>
Windows RT support: NO<br>
GUI:<br>
Win32 UI: YES<br>
VTK support: NO<br>
Media I/O:<br>
ZLib: build (ver 1.2.11)<br>
JPEG: build-libjpeg-turbo (ver 2.0.2-62)<br>
WEBP: build (ver encoder: 0x020e)<br>
PNG: build (ver 1.6.37)<br>
TIFF: build (ver 42 - 4.0.10)<br>
JPEG 2000: build (ver 1.900.1)<br>
OpenEXR: build (ver 2.3.0)<br>
HDR: YES<br>
SUNRASTER: YES<br>
PXM: YES<br>
PFM: YES<br>
Video I/O:<br>
DC1394: NO<br>
FFMPEG: YES (prebuilt binaries)<br>
avcodec: YES (58.35.100)<br>
avformat: YES (58.20.100)<br>
avutil: YES (56.22.100)<br>
swscale: YES (5.3.100)<br>
avresample: YES (4.0.0)<br>
GStreamer: NO<br>
DirectShow: YES<br>
Media Foundation: YES<br>
DXVA: YES<br>
Parallel framework: Concurrency<br>
Trace: YES (with Intel ITT)<br>
Other third-party libraries:<br>
Intel IPP: 2019.0.0 Gold [2019.0.0]<br>
at: D:/opencv-master/build/3rdparty/ippicv/ippicv_win/icv<br>
Intel IPP IW: sources (2019.0.0)<br>
at: D:/opencv-master/build/3rdparty/ippicv/ippicv_win/iw<br>
Lapack: NO<br>
Eigen: NO<br>
Custom HAL: NO<br>
NVIDIA CUDA: YES (ver 10.1, CUFFT CUBLAS)<br>
NVIDIA GPU arch: 30 35 37 50 52 60 61 70 75<br>
NVIDIA PTX archs:<br>
cuDNN: NO<br>
OpenCL: YES (NVD3D11)<br>
Include path: D:/opencv-master/3rdparty/include/opencl/1.2<br>
Link libraries: Dynamic load<br>
Python (for build): D:/IDE Files/Python3.7/python.exe<br>
Java:<br>
ant: NO<br>
JNI: NO<br>
Java wrappers: NO<br>
Java tests: NO<br>
Install to: D:/opencv-master/build/install</p>
</blockquote>
<hr>
<p dir="auto">CPU CascadeClassifire works well<br>
Can someone help?</p> | <p dir="auto">This PR (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="379219861" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv_contrib/issues/1889" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv_contrib/pull/1889/hovercard" href="https://github.com/opencv/opencv_contrib/pull/1889">#1889</a>) removed objdetect related classes such as cv::cuda::CascadeClassifier. For me, the best part about OpenCV (recently moved to contrib).</p>
<p dir="auto">The pull request states it is obsolete. If so, what is the replacement? I have not seen anything similar. Please do not suggest DNN as it is far slower and not equivalent at all.</p>
<p dir="auto">I am still unable to use OpenCV 4.X due to this PR.</p> | 1 |
<p dir="auto">Hi !</p>
<p dir="auto">I have this kind of code :</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface FooInterface {}
abstract class AbstractBar implements FooInterface{}
class Baz extends AbstractBar {}
$object = new Baz();
$validator->validate($object, null, ['validator_group']);"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-v">FooInterface</span> {}
<span class="pl-k">abstract</span> <span class="pl-k">class</span> <span class="pl-v">AbstractBar</span> <span class="pl-k">implements</span> <span class="pl-v">FooInterface</span>{}
<span class="pl-k">class</span> <span class="pl-v">Baz</span> <span class="pl-k">extends</span> <span class="pl-v">AbstractBar</span> {}
<span class="pl-s1"><span class="pl-c1">$</span>object</span> = <span class="pl-k">new</span> <span class="pl-v">Baz</span>();
<span class="pl-s1"><span class="pl-c1">$</span>validator</span>-><span class="pl-en">validate</span>(<span class="pl-s1"><span class="pl-c1">$</span>object</span>, <span class="pl-c1">null</span>, [<span class="pl-s">'validator_group'</span>]);</pre></div>
<p dir="auto">If i create a constraints validator on AbstractBar, like this :</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="AbstractBar:
constraints:
- MyConstraint:
groups: [validator_group]"><pre class="notranslate"><span class="pl-ent">AbstractBar</span>:
<span class="pl-ent">constraints</span>:
- <span class="pl-ent">MyConstraint</span>:
<span class="pl-ent">groups</span>: <span class="pl-s">[validator_group]</span></pre></div>
<p dir="auto">MyConstraint is called once.</p>
<p dir="auto">But if i just change AbstractBar by FooInterface in config :</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="FooInterface:
constraints:
- MyConstraint:
groups: [validator_group]"><pre class="notranslate"><span class="pl-ent">FooInterface</span>:
<span class="pl-ent">constraints</span>:
- <span class="pl-ent">MyConstraint</span>:
<span class="pl-ent">groups</span>: <span class="pl-s">[validator_group]</span></pre></div>
<p dir="auto">MyConstraint is called twice !</p>
<p dir="auto">I can't search why for now, someone could do it please ?</p> | <p dir="auto">I'm using UniqueEntity validation in a form and it works fine. (master branch)</p>
<p dir="auto">@UniqueEntity(fields={"gateway", "list", "address"})</p>
<p dir="auto">gateway is a relation, the others are scalar fields.</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
/**
* @ORM\ManyToOne(targetEntity="Gateway", inversedBy="access_lists")
* @ORM\JoinColumn(name="gateway_id", referencedColumnName="id", onDelete="CASCADE")
*/
private $gateway;
"><pre class="notranslate"><span class="pl-c">/**</span>
<span class="pl-c"> * @ORM\ManyToOne(targetEntity="Gateway", inversedBy="access_lists")</span>
<span class="pl-c"> * @ORM\JoinColumn(name="gateway_id", referencedColumnName="id", onDelete="CASCADE")</span>
<span class="pl-c"> */</span>
<span class="pl-k">private</span> <span class="pl-s1"><span class="pl-c1">$</span>gateway</span>;</pre></div>
<p dir="auto">BUT when i try to validate manually I get no error. The fields are populated correctly, I checked the values.</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
$validator = $this->get('validator');
$access_list = new AccessList();
$access_list->setGateway($gateway);
$access_list->setList('someval');
$access_list->setAddress('someval');
$errors = $validator->validate($access_list);
if (count($errors) > 0) {
throw new \Exception('duplicate');
}
"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>validator</span> = <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-><span class="pl-en">get</span>(<span class="pl-s">'validator'</span>);
<span class="pl-s1"><span class="pl-c1">$</span>access_list</span> = <span class="pl-k">new</span> <span class="pl-v">AccessList</span>();
<span class="pl-s1"><span class="pl-c1">$</span>access_list</span>-><span class="pl-en">setGateway</span>(<span class="pl-s1"><span class="pl-c1">$</span>gateway</span>);
<span class="pl-s1"><span class="pl-c1">$</span>access_list</span>-><span class="pl-en">setList</span>(<span class="pl-s">'someval'</span>);
<span class="pl-s1"><span class="pl-c1">$</span>access_list</span>-><span class="pl-en">setAddress</span>(<span class="pl-s">'someval'</span>);
<span class="pl-s1"><span class="pl-c1">$</span>errors</span> = <span class="pl-s1"><span class="pl-c1">$</span>validator</span>-><span class="pl-en">validate</span>(<span class="pl-s1"><span class="pl-c1">$</span>access_list</span>);
<span class="pl-k">if</span> (count(<span class="pl-s1"><span class="pl-c1">$</span>errors</span>) > <span class="pl-c1">0</span>) {
<span class="pl-k">throw</span> <span class="pl-k">new</span> \<span class="pl-v">Exception</span>(<span class="pl-s">'duplicate'</span>);
}</pre></div>
<p dir="auto">The validation gives no errors. It accepts duplicate records.</p> | 0 |
<p dir="auto">Opening file from command line with line-column didn't work in Windows (particularly on Windows 8.1 and Atom 1.0.0).</p>
<p dir="auto">Both</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> atom.cmd article.tex:22:10"><pre class="notranslate"><code class="notranslate">> atom.cmd article.tex:22:10
</code></pre></div>
<p dir="auto">and</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> atom.cmd "article.tex:22:10""><pre class="notranslate"><code class="notranslate">> atom.cmd "article.tex:22:10"
</code></pre></div>
<p dir="auto">Didn't work as expected, it open the file <code class="notranslate">article.tex:22:10</code> and not the <code class="notranslate">article.tex</code> on line 22 and column 10.</p> | <p dir="auto">Running <code class="notranslate">atom file.tex:100</code>, Atom will open a file called <code class="notranslate">atom file.tex:100</code> rather than open <code class="notranslate">file.tex</code> at line 100<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6829403/8251122/2392524e-167a-11e5-9b70-d94fb4da6d83.png"><img src="https://cloud.githubusercontent.com/assets/6829403/8251122/2392524e-167a-11e5-9b70-d94fb4da6d83.png" alt="qq 20150619115603" style="max-width: 100%;"></a><br>
.</p> | 1 |
<p dir="auto">Cannot use Chinese input method</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Microsoft Windows [版本 10.0.18362.267]
Windows Terminal version (if applicable):0.3.2142.0"><pre lang="none" class="notranslate"><code class="notranslate">Microsoft Windows [版本 10.0.18362.267]
Windows Terminal version (if applicable):0.3.2142.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>Open the terminal.</li>
<li>Switching CJK input methods.(doesn't work)</li>
<li>Typing.</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Show phrase candidate boxes.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Directly entered English.</p> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">cloud/vmware_guest.py</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/ansible/infra/library', u'/usr/lib/python2.7/site-packages/ara/plugins/modules']
python version = 2.7.5 (default, Sep 15 2016, 22:37:39) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]"><pre class="notranslate"><code class="notranslate">ansible 2.3.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = [u'/home/ansible/infra/library', u'/usr/lib/python2.7/site-packages/ara/plugins/modules']
python version = 2.7.5 (default, Sep 15 2016, 22:37:39) [GCC 4.8.5 20150623 (Red Hat 4.8.5-4)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">N.A.</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">Red Hat Enterprise Linux 7.3<br>
VMware Vsphere 6.0</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">When you try to create a 2-disks vm with each disk on a different datastore, both are created on the datastore specified as the first one.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">Create a playbook with the below example and specify 2 different datastores as the <em>datastore</em> and the <em>disk2_datastore</em> variables.</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- name: Create VM from template
vmware_guest:
name: "{{ inventory_hostname }}"
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_user }}"
password: "{{ vcenter_pass }}"
validate_certs: False
esxi_hostname: "{{ esxhost }}"
datacenter: "{{ datacenter }}"
template: '{{ os_family}}{{ os_vers }}{{os_arch}}-template'
folder: "{{ folder | default('/vm') }}"
hardware:
num_cpus: "{{ vm_cpus }}"
memory_mb: "{{ vm_memory * 1024 | default(1024) }}"
disk:
- size_gb: "{{ disk_size | default(10) }}"
type: thin
datastore: "{{ datastore }}"
autoselect_datastore: False
- size_gb: "{{ disk2_size | default(10) }}"
type: thin
datastore: "{{ disk2_datastore }}"
autoselect_datastore: False
networks:
- name: "{{ vlan }}"
ip: "{{ primary_ip }}"
netmask: "{{ netmask }}"
gateway: "{{ gateway }}"
- name: "{{ nic2_vlan }}"
ip: "{{ nic2_ip }}"
netmask: "{{ nic2_netmask }}"
customization:
domain: "{{ domain }}"
dns_servers: "{{ dns_servers }}"
annotation: "Created with Ansible"
wait_for_ip_address: true
register: newvm
delegate_to: localhost
"><pre class="notranslate">- <span class="pl-ent">name</span>: <span class="pl-s">Create VM from template</span>
<span class="pl-ent">vmware_guest</span>:
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ inventory_hostname }}<span class="pl-pds">"</span></span>
<span class="pl-ent">hostname</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vcenter_hostname }}<span class="pl-pds">"</span></span>
<span class="pl-ent">username</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vcenter_user }}<span class="pl-pds">"</span></span>
<span class="pl-ent">password</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vcenter_pass }}<span class="pl-pds">"</span></span>
<span class="pl-ent">validate_certs</span>: <span class="pl-c1">False</span>
<span class="pl-ent">esxi_hostname</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ esxhost }}<span class="pl-pds">"</span></span>
<span class="pl-ent">datacenter</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ datacenter }}<span class="pl-pds">"</span></span>
<span class="pl-ent">template</span>: <span class="pl-s"><span class="pl-pds">'</span>{{ os_family}}{{ os_vers }}{{os_arch}}-template<span class="pl-pds">'</span></span>
<span class="pl-ent">folder</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ folder | default('/vm') }}<span class="pl-pds">"</span></span>
<span class="pl-ent">hardware</span>:
<span class="pl-ent">num_cpus</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_cpus }}<span class="pl-pds">"</span></span>
<span class="pl-ent">memory_mb</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vm_memory * 1024 | default(1024) }}<span class="pl-pds">"</span></span>
<span class="pl-ent">disk</span>:
- <span class="pl-ent">size_gb</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ disk_size | default(10) }}<span class="pl-pds">"</span></span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ datastore }}<span class="pl-pds">"</span></span>
<span class="pl-ent">autoselect_datastore</span>: <span class="pl-c1">False</span>
- <span class="pl-ent">size_gb</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ disk2_size | default(10) }}<span class="pl-pds">"</span></span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ disk2_datastore }}<span class="pl-pds">"</span></span>
<span class="pl-ent">autoselect_datastore</span>: <span class="pl-c1">False</span>
<span class="pl-ent">networks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ vlan }}<span class="pl-pds">"</span></span>
<span class="pl-ent">ip</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ primary_ip }}<span class="pl-pds">"</span></span>
<span class="pl-ent">netmask</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ netmask }}<span class="pl-pds">"</span></span>
<span class="pl-ent">gateway</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ gateway }}<span class="pl-pds">"</span></span>
- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ nic2_vlan }}<span class="pl-pds">"</span></span>
<span class="pl-ent">ip</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ nic2_ip }}<span class="pl-pds">"</span></span>
<span class="pl-ent">netmask</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ nic2_netmask }}<span class="pl-pds">"</span></span>
<span class="pl-ent">customization</span>:
<span class="pl-ent">domain</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ domain }}<span class="pl-pds">"</span></span>
<span class="pl-ent">dns_servers</span>: <span class="pl-s"><span class="pl-pds">"</span>{{ dns_servers }}<span class="pl-pds">"</span></span>
<span class="pl-ent">annotation</span>: <span class="pl-s"><span class="pl-pds">"</span>Created with Ansible<span class="pl-pds">"</span></span>
<span class="pl-ent">wait_for_ip_address</span>: <span class="pl-c1">true</span>
<span class="pl-ent">register</span>: <span class="pl-s">newvm</span>
<span class="pl-ent">delegate_to</span>: <span class="pl-s">localhost</span>
</pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">The new vm is created with the each disk on the his own datastore</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">The new vm is created with the both disks on the same datastore</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">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">vmware_guest</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.0
config file = /opt/it-infra/ansible.cfg
configured module search path = [u'/opt/it-infra/library']
ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]"><pre class="notranslate"><code class="notranslate">ansible 2.4.0
config file = /opt/it-infra/ansible.cfg
configured module search path = [u'/opt/it-infra/library']
ansible python module location = /usr/local/lib/python2.7/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609]
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">VMware Vsphere 6.5 Cluster<br>
Deploy Windows Server 2016 Template with additional disks,...</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">When a VM gets created from an Template and new Disks getting added on different Datastore<br>
it place the new disks on the Same Datastore, and not on the defined</p>
<p dir="auto">Tryed it with 2.3 and latest devel</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- name: "Test Vsphere"
hosts: fj-v-file1
gather_facts: false
vars:
vsphere_cluster: "{{vsphere_default_cluster}}"
vsphere_datacenter: "{{vsphere_default_datacenter}}"
vsphere_user: "{{vsphere_vmc1_user}}"
vsphere_pw: "{{vsphere_vmc1_password}}"
vsphere_host: "{{vsphere_default_vcenter}}"
VMConfiguration:
name: fj-v-file1
primary_esxhost: "fj-p-vmnode1.vsphere.local"
annotation: "Fileserver for Management and Research"
template: "server2016core-v1"
disk:
# OS Disk
- size_gb: 146
type: thin
datastore: "ds-lun-11-sys1"
autoselect_datastore: false
# Verwaltung/LMTZ File Share = 1000GB * 1,07
- size_gb: 1070
type: thin
datastore: "ds-lun-25-vwfs"
autoselect_datastore: false
# BLT File Shares = 2000GB * 1,07
- size_gb: 2140
type: thin
datastore: "ds-lun-25-vwfs"
autoselect_datastore: false
# JR File Shares = 2000GB * 1,07
- size_gb: 2140
type: thin
datastore: "ds-lun-25-vwfs"
autoselect_datastore: false
hardware:
memory_mb: 4096
networks:
- name: "23-VWResource"
mac: "00:50:56:8E:35:97"
tasks:
- name: "Create VM"
tags: vsphere
delegate_to: 127.0.0.1
vmware_guest:
name: "{{VMConfiguration.name}}"
annotation: "{{VMConfiguration.annotation}}"
hostname: "{{vsphere_host}}"
cluster: "{{vsphere_cluster}}"
datacenter: "{{vsphere_datacenter}}"
template: "{{VMConfiguration.template}}"
username: "{{vsphere_user}}"
password: "{{vsphere_pw}}"
wait_for_ip_address: no
validate_certs: False
state: present
customization:
password: "nothing"
disk: "{{VMConfiguration.disk}}"
hardware: "{{VMConfiguration.hardware}}""><pre class="notranslate">- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>Test Vsphere<span class="pl-pds">"</span></span>
<span class="pl-ent">hosts</span>: <span class="pl-s">fj-v-file1</span>
<span class="pl-ent">gather_facts</span>: <span class="pl-c1">false</span>
<span class="pl-ent">vars</span>:
<span class="pl-ent">vsphere_cluster</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_default_cluster}}<span class="pl-pds">"</span></span>
<span class="pl-ent">vsphere_datacenter</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_default_datacenter}}<span class="pl-pds">"</span></span>
<span class="pl-ent">vsphere_user</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_vmc1_user}}<span class="pl-pds">"</span></span>
<span class="pl-ent">vsphere_pw</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_vmc1_password}}<span class="pl-pds">"</span></span>
<span class="pl-ent">vsphere_host</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_default_vcenter}}<span class="pl-pds">"</span></span>
<span class="pl-ent">VMConfiguration</span>:
<span class="pl-ent">name</span>: <span class="pl-s">fj-v-file1</span>
<span class="pl-ent">primary_esxhost</span>: <span class="pl-s"><span class="pl-pds">"</span>fj-p-vmnode1.vsphere.local<span class="pl-pds">"</span></span>
<span class="pl-ent">annotation</span>: <span class="pl-s"><span class="pl-pds">"</span>Fileserver for Management and Research<span class="pl-pds">"</span></span>
<span class="pl-ent">template</span>: <span class="pl-s"><span class="pl-pds">"</span>server2016core-v1<span class="pl-pds">"</span></span>
<span class="pl-ent">disk</span>:
<span class="pl-c"><span class="pl-c">#</span> OS Disk</span>
- <span class="pl-ent">size_gb</span>: <span class="pl-c1">146</span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>ds-lun-11-sys1<span class="pl-pds">"</span></span>
<span class="pl-ent">autoselect_datastore</span>: <span class="pl-c1">false</span>
<span class="pl-c"><span class="pl-c">#</span> Verwaltung/LMTZ File Share = 1000GB * 1,07</span>
- <span class="pl-ent">size_gb</span>: <span class="pl-c1">1070</span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>ds-lun-25-vwfs<span class="pl-pds">"</span></span>
<span class="pl-ent">autoselect_datastore</span>: <span class="pl-c1">false</span>
<span class="pl-c"><span class="pl-c">#</span> BLT File Shares = 2000GB * 1,07</span>
- <span class="pl-ent">size_gb</span>: <span class="pl-c1">2140</span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>ds-lun-25-vwfs<span class="pl-pds">"</span></span>
<span class="pl-ent">autoselect_datastore</span>: <span class="pl-c1">false</span>
<span class="pl-c"><span class="pl-c">#</span> JR File Shares = 2000GB * 1,07</span>
- <span class="pl-ent">size_gb</span>: <span class="pl-c1">2140</span>
<span class="pl-ent">type</span>: <span class="pl-s">thin</span>
<span class="pl-ent">datastore</span>: <span class="pl-s"><span class="pl-pds">"</span>ds-lun-25-vwfs<span class="pl-pds">"</span></span>
<span class="pl-ent">autoselect_datastore</span>: <span class="pl-c1">false</span>
<span class="pl-ent">hardware</span>:
<span class="pl-ent">memory_mb</span>: <span class="pl-c1">4096</span>
<span class="pl-ent">networks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>23-VWResource<span class="pl-pds">"</span></span>
<span class="pl-ent">mac</span>: <span class="pl-s"><span class="pl-pds">"</span>00:50:56:8E:35:97<span class="pl-pds">"</span></span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>Create VM<span class="pl-pds">"</span></span>
<span class="pl-ent">tags</span>: <span class="pl-s">vsphere</span>
<span class="pl-ent">delegate_to</span>: <span class="pl-s">127.0.0.1</span>
<span class="pl-ent">vmware_guest</span>:
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">"</span>{{VMConfiguration.name}}<span class="pl-pds">"</span></span>
<span class="pl-ent">annotation</span>: <span class="pl-s"><span class="pl-pds">"</span>{{VMConfiguration.annotation}}<span class="pl-pds">"</span></span>
<span class="pl-ent">hostname</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_host}}<span class="pl-pds">"</span></span>
<span class="pl-ent">cluster</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_cluster}}<span class="pl-pds">"</span></span>
<span class="pl-ent">datacenter</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_datacenter}}<span class="pl-pds">"</span></span>
<span class="pl-ent">template</span>: <span class="pl-s"><span class="pl-pds">"</span>{{VMConfiguration.template}}<span class="pl-pds">"</span></span>
<span class="pl-ent">username</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_user}}<span class="pl-pds">"</span></span>
<span class="pl-ent">password</span>: <span class="pl-s"><span class="pl-pds">"</span>{{vsphere_pw}}<span class="pl-pds">"</span></span>
<span class="pl-ent">wait_for_ip_address</span>: <span class="pl-s">no</span>
<span class="pl-ent">validate_certs</span>: <span class="pl-c1">False</span>
<span class="pl-ent">state</span>: <span class="pl-s">present</span>
<span class="pl-ent">customization</span>:
<span class="pl-ent">password</span>: <span class="pl-s"><span class="pl-pds">"</span>nothing<span class="pl-pds">"</span></span>
<span class="pl-ent">disk</span>: <span class="pl-s"><span class="pl-pds">"</span>{{VMConfiguration.disk}}<span class="pl-pds">"</span></span>
<span class="pl-ent">hardware</span>: <span class="pl-s"><span class="pl-pds">"</span>{{VMConfiguration.hardware}}<span class="pl-pds">"</span></span></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">VM gets Created with Disks on the defined datastore</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">All Disks getting placed on the first datastore "ds-lun-11-sys1"</p>
<p dir="auto">Looks like it ignore the defined Datastore</p>
<p dir="auto">Datastore is there (See it in vsphere client and on the Host where the vm gets placed)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="changed: [fj-v-file1 -> 127.0.0.1] => {
"changed": true,
"failed": false,
"instance": {
"annotation": "Fileserver for Management and Research",
"current_snapshot": null,
"customvalues": {},
"guest_tools_status": "guestToolsNotRunning",
"guest_tools_version": "10272",
"hw_guest_full_name": null,
"hw_guest_id": null,
"hw_interfaces": [],
"hw_memtotal_mb": 4096,
"hw_name": "fj-v-file1",
"hw_power_status": "poweredOff",
"hw_processor_count": 2,
"hw_product_uuid": "420ede86-9d81-067f-f0a6-3c57d48938a4",
"ipv4": null,
"ipv6": null,
"module_hw": true,
"snapshots": []
},
"invocation": {
"module_args": {
"annotation": "Fileserver for Management and Research",
"cluster": "vmc1",
"customization": {
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER"
},
"customvalues": [],
"datacenter": "FJ",
"disk": [
{
"autoselect_datastore": false,
"datastore": "ds-lun-11-sys1",
"size_gb": 146,
"type": "thin"
},
{
"autoselect_datastore": false,
"datastore": "ds-lun-25-vwfs",
"size_gb": 1070,
"type": "thin"
},
{
"autoselect_datastore": false,
"datastore": "ds-lun-25-vwfs",
"size_gb": 2140,
"type": "thin"
},
{
"autoselect_datastore": false,
"datastore": "ds-lun-25-vwfs",
"size_gb": 2140,
"type": "thin"
}
],
"esxi_hostname": null,
"folder": "/vm",
"force": false,
"guest_id": null,
"hardware": {
"memory_mb": 4096
},
"hostname": "172.16.125.200",
"is_template": false,
"linked_clone": false,
"name": "fj-v-file1",
"name_match": "first",
"networks": [],
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
"resource_pool": null,
"snapshot_src": null,
"state": "present",
"template": "server2016core-v1",
"template_src": "server2016core-v1",
"username": "[email protected]",
"uuid": null,
"validate_certs": false,
"wait_for_ip_address": false
}
}
}"><pre class="notranslate"><code class="notranslate">changed: [fj-v-file1 -> 127.0.0.1] => {
"changed": true,
"failed": false,
"instance": {
"annotation": "Fileserver for Management and Research",
"current_snapshot": null,
"customvalues": {},
"guest_tools_status": "guestToolsNotRunning",
"guest_tools_version": "10272",
"hw_guest_full_name": null,
"hw_guest_id": null,
"hw_interfaces": [],
"hw_memtotal_mb": 4096,
"hw_name": "fj-v-file1",
"hw_power_status": "poweredOff",
"hw_processor_count": 2,
"hw_product_uuid": "420ede86-9d81-067f-f0a6-3c57d48938a4",
"ipv4": null,
"ipv6": null,
"module_hw": true,
"snapshots": []
},
"invocation": {
"module_args": {
"annotation": "Fileserver for Management and Research",
"cluster": "vmc1",
"customization": {
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER"
},
"customvalues": [],
"datacenter": "FJ",
"disk": [
{
"autoselect_datastore": false,
"datastore": "ds-lun-11-sys1",
"size_gb": 146,
"type": "thin"
},
{
"autoselect_datastore": false,
"datastore": "ds-lun-25-vwfs",
"size_gb": 1070,
"type": "thin"
},
{
"autoselect_datastore": false,
"datastore": "ds-lun-25-vwfs",
"size_gb": 2140,
"type": "thin"
},
{
"autoselect_datastore": false,
"datastore": "ds-lun-25-vwfs",
"size_gb": 2140,
"type": "thin"
}
],
"esxi_hostname": null,
"folder": "/vm",
"force": false,
"guest_id": null,
"hardware": {
"memory_mb": 4096
},
"hostname": "172.16.125.200",
"is_template": false,
"linked_clone": false,
"name": "fj-v-file1",
"name_match": "first",
"networks": [],
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
"resource_pool": null,
"snapshot_src": null,
"state": "present",
"template": "server2016core-v1",
"template_src": "server2016core-v1",
"username": "[email protected]",
"uuid": null,
"validate_certs": false,
"wait_for_ip_address": false
}
}
}
</code></pre></div> | 1 |
<p dir="auto">When basicConfig() from logging (python 2.7.11) is used, tensorflow duplicates output of logger (load logger twice).</p>
<p dir="auto">Example code and output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from logging import basicConfig
import tensorflow as tf
from tensorflow.contrib.learn import Estimator
basicConfig()
tf.logging.set_verbosity(tf.logging.INFO)
def cnn_model_fn(features,labels,mode):
pass
if __name__ == '__main__':
classifier = Estimator(
model_fn=cnn_model_fn)
"><pre class="notranslate"><code class="notranslate">from logging import basicConfig
import tensorflow as tf
from tensorflow.contrib.learn import Estimator
basicConfig()
tf.logging.set_verbosity(tf.logging.INFO)
def cnn_model_fn(features,labels,mode):
pass
if __name__ == '__main__':
classifier = Estimator(
model_fn=cnn_model_fn)
</code></pre></div>
<p dir="auto">output:<br>
WARNING:tensorflow:Using temporary folder as model directory: /var/folders/qn/z_b3zdss1g730kn_mlrwcwnc0000gn/T/tmpEdygBY<br>
WARNING:tensorflow:Using temporary folder as model directory: /var/folders/qn/z_b3zdss1g730kn_mlrwcwnc0000gn/T/tmpEdygBY<br>
INFO:tensorflow:Using default config.<br>
INFO:tensorflow:Using default config.</p> | <p dir="auto">I am trying transform a csv file consisting two columns: short_description, label. Description consists sentences from length 1 to 4 and label is just an integer number. The csv file has a size of 740 MBs however on converting it to TFRecord the size of the new file increased to 1.2GB, which I think is not correct since TFRecord files are supposed to have lesser size.<br>
For <code class="notranslate">short_description</code> (column 1), I am using BytesList and for <code class="notranslate">label</code> (coulmn2) I am using Int64List as was shown here in this <a href="https://www.tensorflow.org/beta/tutorials/load_data/tf_records" rel="nofollow">tutorial</a>. Just to be clear, the data read from the new TFRecord file is fine i.e. no problem. It is just the size of the file. Now I do not understand what the problem is. Please help. Thank you!</p> | 0 |
<pre class="notranslate">With the deprecation notice at <a href="http://golang.org/pkg/net/http/httputil/#NewClientConn" rel="nofollow">http://golang.org/pkg/net/http/httputil/#NewClientConn</a>
it would be good to have client-side HTTP hijack support in a supported way.
Current RoundTripper etc force a request-reply cycle. I'm not sure what the ideal API
would look like; for my current use case, calling a hypothetical Response.Hijack before
reading Response.Body would be enough -- but I can see others arguing they'd like to be
in charge of reading the response headers too.
Related, it would be nice to be able to interact with the connection pool. Imagine
talking a back-and-forth protocol as a consequence of a HTTP request, concluding that
conversation, leaving the connection open, and letting the next HTTP request use it.
This applies both on the client and server side. (Ugly workarounds: a fake Listener for
server-side, that returns the previously-hijacked connections from Accept; for
client-side, a Dialer that does a non-blocking receive on a recycle channel first,
falling back to normal Dial if none are there -- this would duplicate the
connectMethodKey logic in net/http.)</pre> | <p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p>
<pre class="notranslate">Sometimes you use a function to initialize and return a new type, having the type like
private.
In those cases, godoc doesn't shows the documentation of public methods for private
types.
Here[1] you have an example, where the type column is private, but it is used function
Column to get it.
[2]: <a href="https://github.com/kless/go2sql/blob/master/column.go#L23">https://github.com/kless/go2sql/blob/master/column.go#L23</a></pre> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.2.0</li>
<li>Operating System / Platform => Windows 10 64-bit / Python</li>
<li>Compiler => MSC v.1900 64 bit (AMD64)</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Using the VNG demosaicing in cvtColor( ) results in edge artifacts for edges running at orientations of 315 degrees (roughly NW -> SE). You can see these artifacts in the image below created with the OpenCV VNG algorithm (top row), but not in an image created using a reference implementation of the VNG algorithm (in attached code vng.py) (bottom row). Some color artifacts along edges are expected due to the nature of the interpolation, but the artifacts shown here on edges running from upper left to lower right are more severe than expected, and worse than the reference output. Displaying a single channel (such as just the red channel shown on the right) makes it easier to see that pixels far from the edge are being modified in the OpenCV version.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/47040981/60977391-66679200-a2fd-11e9-8e16-ab784eb6d64f.PNG"><img width="702" alt="edges315" src="https://user-images.githubusercontent.com/47040981/60977391-66679200-a2fd-11e9-8e16-ab784eb6d64f.PNG" style="max-width: 100%;"></a></p>
<p dir="auto">For edges running along different orientations, such as 45 degrees (roughly SW -> NE), the OpenCV VNG implementation does not show artifacts, and appears to match the reference VNG implementation, as shown below.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/47040981/60977435-75e6db00-a2fd-11e9-9993-4b32097a91d5.PNG"><img width="705" alt="edges45" src="https://user-images.githubusercontent.com/47040981/60977435-75e6db00-a2fd-11e9-9993-4b32097a91d5.PNG" style="max-width: 100%;"></a></p>
<p dir="auto">Since the VNG algorithm computes gradients in the eight compass directions and there are separate blocks of code for processing each gradient direction, is it possible that there is a pointer error in the code for one of the gradient directions ?</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">The examples above were generated by calling OpenCV from Python inside a Jupyter Notebook.<br>
The input and output images for the examples above are attached, and can be duplicated by running the attached notebook "VNG_bug.ipynb"</p>
<p dir="auto"><a href="https://github.com/opencv/opencv/files/3378154/VNG_bug.zip">VNG_bug.zip</a></p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.3</li>
<li>Operating System / Platform => Ubuntu 16.04 x86-64</li>
<li>Compiler => g++ 5.4.0</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto"><code class="notranslate">CascadeClassifier::detectMultiScale</code> (<a href="https://docs.opencv.org/3.3.0/d1/de5/classcv_1_1CascadeClassifier.html#aaf8181cb63968136476ec4204ffca498" rel="nofollow">https://docs.opencv.org/3.3.0/d1/de5/classcv_1_1CascadeClassifier.html#aaf8181cb63968136476ec4204ffca498</a>) is not <code class="notranslate">const</code>, but it should be, in my opinion.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">In my opinion, it should be possible to build a function like the following, since detection should not alter the internal state of the cascade (as no training is happening):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="static void FindFaces(const Mat &image, /*const*/ CascadeClassifier &classifier, vector<Rect> &faces) //detectMultiScale should be const, but is not
{
classifier.detectMultiScale(image, faces /* optional parameters here */);
}"><pre class="notranslate"><code class="notranslate">static void FindFaces(const Mat &image, /*const*/ CascadeClassifier &classifier, vector<Rect> &faces) //detectMultiScale should be const, but is not
{
classifier.detectMultiScale(image, faces /* optional parameters here */);
}
</code></pre></div>
<p dir="auto">Maybe the method can even be made <code class="notranslate">const</code> even in the base class, <code class="notranslate">BaseCascadeClassifier</code> (<a href="https://docs.opencv.org/3.3.0/da/dd5/classcv_1_1BaseCascadeClassifier.html#a68623391e16daa264f089af99d8d4bbb" rel="nofollow">https://docs.opencv.org/3.3.0/da/dd5/classcv_1_1BaseCascadeClassifier.html#a68623391e16daa264f089af99d8d4bbb</a>)</p> | 0 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gci-gce-reboot-release-1.4/589/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/ci-kubernetes-e2e-gci-gce-reboot-release-1.4/589/</a></p>
<p dir="auto">Failed: BeforeSuite {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:154
Dec 1 05:54:04.228: Error waiting for all pods to be running and ready: Not all pods in namespace "kube-system" are successful within 10m0s
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:124"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:154
Dec 1 05:54:04.228: Error waiting for all pods to be running and ready: Not all pods in namespace "kube-system" are successful within 10m0s
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:124
</code></pre></div>
<p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156417256" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26135" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26135/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26135">#26135</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156638964" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26236" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26236/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26236">#26236</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="161828864" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27920" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27920/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27920">#27920</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163806926" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28492" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28492/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28492">#28492</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="169047628" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/29970" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/29970/hovercard" href="https://github.com/kubernetes/kubernetes/issues/29970">#29970</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="169381353" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/30075" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/30075/hovercard" href="https://github.com/kubernetes/kubernetes/issues/30075">#30075</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177627245" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/32980" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/32980/hovercard" href="https://github.com/kubernetes/kubernetes/issues/32980">#32980</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="178709119" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33313" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33313/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33313">#33313</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="184891893" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/35444" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/35444/hovercard" href="https://github.com/kubernetes/kubernetes/issues/35444">#35444</a></p> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gce-scalability/10992/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gce-scalability/10992/</a></p>
<p dir="auto">Failed: BeforeSuite {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:158
Sep 23 11:26:08.874: Error waiting for all pods to be running and ready: 1 / 418 pods in namespace "kube-system" are NOT in the desired state in 10m0s
POD NODE PHASE GRACE CONDITIONS
node-problem-detector-v0.1-dwpq2 e2e-scalability-minion-group-i5cw Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:12:13 -0700 PDT } {Ready False 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:12:13 -0700 PDT ContainersNotReady containers with unready status: [node-problem-detector]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:16:54 -0700 PDT }]
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:128"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:158
Sep 23 11:26:08.874: Error waiting for all pods to be running and ready: 1 / 418 pods in namespace "kube-system" are NOT in the desired state in 10m0s
POD NODE PHASE GRACE CONDITIONS
node-problem-detector-v0.1-dwpq2 e2e-scalability-minion-group-i5cw Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:12:13 -0700 PDT } {Ready False 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:12:13 -0700 PDT ContainersNotReady containers with unready status: [node-problem-detector]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2016-09-23 11:16:54 -0700 PDT }]
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/e2e.go:128
</code></pre></div>
<p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156417256" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26135" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26135/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26135">#26135</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="156638964" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26236" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26236/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26236">#26236</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="161828864" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/27920" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/27920/hovercard" href="https://github.com/kubernetes/kubernetes/issues/27920">#27920</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163806926" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/28492" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/28492/hovercard" href="https://github.com/kubernetes/kubernetes/issues/28492">#28492</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="169047628" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/29970" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/29970/hovercard" href="https://github.com/kubernetes/kubernetes/issues/29970">#29970</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="169381353" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/30075" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/30075/hovercard" href="https://github.com/kubernetes/kubernetes/issues/30075">#30075</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177627245" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/32980" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/32980/hovercard" href="https://github.com/kubernetes/kubernetes/issues/32980">#32980</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="178709119" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/33313" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/33313/hovercard" href="https://github.com/kubernetes/kubernetes/issues/33313">#33313</a></p> | 1 |
<p dir="auto">In IE8 (8.0.7601.17514), showing a modal then showing a second modal either crashes the browser or causes a "stack overflow on line 0" error.</p>
<p dir="auto">Jsfiddle <a href="http://jsfiddle.net/pBXt8/1/" rel="nofollow">here</a>.</p>
<p dir="auto">(Jsfiddle doesn't work with IE8 though, so to reproduce you will will need to plonk it somewhere local & open in IE8.)</p>
<p dir="auto">Bootstrap: 2.3.1<br>
JQuery: 1.9.1</p> | <p dir="auto"><a href="http://jsfiddle.net/guyong/EUVWC/2/" rel="nofollow">http://jsfiddle.net/guyong/EUVWC/2/</a></p>
<ol dir="auto">
<li>Click the button read 'Click Me'</li>
<li>On the modal dialog click 'Show Another'</li>
<li>Then click the textbox</li>
<li>Firefox will be unresponsive</li>
</ol> | 1 |
<ol dir="auto">
<li>zoom in really far on the middle of a document</li>
<li>select some text</li>
<li>ctrl+wheel zoom out and the selected text scrolls off the screen</li>
</ol>
<p dir="auto">in visual studio and wordpad and prob others it seems to be anchored to the top of the window while zooming so your selection and your 'focus' does not scroll out of view</p>
<p dir="auto">please consider adding something similar</p>
<p dir="auto">thanks</p> | 1 |
|
<p dir="auto">Using <code class="notranslate">1.0.0-beta.21</code>.<br>
I have something like this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" <Dialog
fullScreen
open={this.addProductDialogOpen}
transition={props => <Slide direction="up" {...props} />}
onRequestClose={this.handleAddProductClose}
>
<AppBar className={classes.appBar}>
<Toolbar>
<IconButton
color="contrast"
disableRipple
onClick={this.handleAddProductClose}
>
<CloseIcon />
</IconButton>
<Typography type="title" color="inherit" className={classes.flex}>
Select product
</Typography>
</Toolbar>
</AppBar>
<DialogContent>
<Autocomplete
getOptions={() => options()}
onSuggestionSelected={this.handleAddProduct}
/>
</DialogContent>
</Dialog>"><pre class="notranslate"> <span class="pl-c1"><</span><span class="pl-ent">Dialog</span>
<span class="pl-c1">fullScreen</span>
<span class="pl-c1">open</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">addProductDialogOpen</span><span class="pl-kos">}</span>
<span class="pl-c1">transition</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">props</span> <span class="pl-c1">=></span> <span class="pl-c1"><</span><span class="pl-ent">Slide</span> <span class="pl-c1">direction</span><span class="pl-c1">=</span><span class="pl-s">"up"</span> <span class="pl-kos">{</span>...<span class="pl-s1">props</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">}</span>
<span class="pl-c1">onRequestClose</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleAddProductClose</span><span class="pl-kos">}</span>
<span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">AppBar</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">classes</span><span class="pl-kos">.</span><span class="pl-c1">appBar</span><span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">Toolbar</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">IconButton</span>
<span class="pl-c1">color</span><span class="pl-c1">=</span><span class="pl-s">"contrast"</span>
<span class="pl-c1">disableRipple</span>
<span class="pl-c1">onClick</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleAddProductClose</span><span class="pl-kos">}</span>
<span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">CloseIcon</span> <span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">IconButton</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">Typography</span> <span class="pl-c1">type</span><span class="pl-c1">=</span><span class="pl-s">"title"</span> <span class="pl-c1">color</span><span class="pl-c1">=</span><span class="pl-s">"inherit"</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">classes</span><span class="pl-kos">.</span><span class="pl-c1">flex</span><span class="pl-kos">}</span><span class="pl-c1">></span>
Select product
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Typography</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Toolbar</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">AppBar</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">DialogContent</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">Autocomplete</span>
<span class="pl-c1">getOptions</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-en">options</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">}</span>
<span class="pl-c1">onSuggestionSelected</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">handleAddProduct</span><span class="pl-kos">}</span>
<span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">DialogContent</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Dialog</span><span class="pl-c1">></span></pre></div>
<p dir="auto">When closing the dialog the <code class="notranslate"><div data-mui-portal="true"></code> remains and, although the contents are not visible, it blocks any interaction with the page.<br>
If I remove <code class="notranslate">transition={props => <Slide direction="up" {...props} />}</code> the div is removed on close.</p>
<p dir="auto">I see the same behaviour (div remains attached) with the docs demo but there there's no obstruction.</p>
<p dir="auto">Anything I can do do provide more info ?</p> | <p dir="auto">My app break after updated to latest beta.</p>
<p dir="auto">The dialog always shown. Previous version beta 18 don't have this issue</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" <Drawer
open={false}
type={window.innerWidth < 768 ? 'responsive' : 'persistent'}
anchor="right"
classes={{ paper: classes.paper, docked: classes.docked }}
>
/// content
</Drawer>"><pre class="notranslate"> <span class="pl-c1"><</span><span class="pl-ent">Drawer</span>
<span class="pl-c1">open</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-c1">false</span><span class="pl-kos">}</span>
<span class="pl-c1">type</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">innerWidth</span> <span class="pl-c1"><</span> <span class="pl-c1">768</span> ? <span class="pl-s">'responsive'</span> : <span class="pl-s">'persistent'</span><span class="pl-kos">}</span>
<span class="pl-c1">anchor</span><span class="pl-c1">=</span><span class="pl-s">"right"</span>
<span class="pl-c1">classes</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-kos">{</span> <span class="pl-c1">paper</span>: <span class="pl-s1">classes</span><span class="pl-kos">.</span><span class="pl-c1">paper</span><span class="pl-kos">,</span> <span class="pl-c1">docked</span>: <span class="pl-s1">classes</span><span class="pl-kos">.</span><span class="pl-c1">docked</span> <span class="pl-kos">}</span><span class="pl-kos">}</span>
<span class="pl-c1">></span>
/// content
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Drawer</span><span class="pl-c1">></span></pre></div>
<p dir="auto">I've tried to set open to false still show the drawer.</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-19 beta</td>
</tr>
<tr>
<td>React</td>
<td>16</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome</td>
</tr>
<tr>
<td>etc</td>
<td>Windows 10</td>
</tr>
</tbody>
</table> | 1 |
<h1 dir="auto">Question about Next.js</h1>
<p dir="auto">i am curious about why this warning will occur. now i am using next.js 6.0.0 to develop my client side app. i have never use the 'url' property in my page-level component, for my page -level component is generated by an hoc -- withDvaReduxHoc. never have i used the 'url' properiy, but dispear to me, i think is unreasonable for i have never use the feature my cause warning.</p>
<p dir="auto">or other props have use the 'url' property, when i get that props ? i have use pathname and query in my apps, but i use these props in getInitialProps life-cycle method, not the render method, will these properites cause an warning ? and these props will be deprecated in the future ? if not, i couldn't find out what cause this warning.</p>
<p dir="auto">can u explain these to me?</p> | <p dir="auto">Currently <code class="notranslate">next/link</code> will ignore <code class="notranslate">onClick</code> props set on <code class="notranslate"><Link></code> or contained <code class="notranslate"><a></code> elements:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import Link from 'next/link'
const customHandleClick = () => console.log('Free pizza!')
// Somewhere in render-land
<Link href='/' onClick={customHandleClick}>
<a>No free pizza :(</a>
</Link>
<Link href='/'>
<a onClick={customHandleClick}>No free pizza :/</a>
</Link>"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">Link</span> <span class="pl-k">from</span> <span class="pl-s">'next/link'</span>
<span class="pl-k">const</span> <span class="pl-en">customHandleClick</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Free pizza!'</span><span class="pl-kos">)</span>
<span class="pl-c">// Somewhere in render-land</span>
<span class="pl-c1"><</span><span class="pl-v">Link</span> <span class="pl-s1">href</span><span class="pl-c1">=</span><span class="pl-s">'/'</span> <span class="pl-s1">onClick</span><span class="pl-c1">=</span><span class="pl-kos">{</span>customHandleClick<span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">a</span><span class="pl-c1">></span>No free pizza :(<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">a</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span>Link>
<span class="pl-c1"><</span><span class="pl-ent">Link</span> <span class="pl-c1">href</span><span class="pl-c1">=</span><span class="pl-s">'/'</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">a</span> <span class="pl-c1">onClick</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-en">customHandleClick</span><span class="pl-kos">}</span><span class="pl-c1">></span>No free pizza :/<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">a</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Link</span><span class="pl-c1">></span></pre></div>
<p dir="auto">Clicking either of those two links will not call the <code class="notranslate">customHandleClick</code> function.</p>
<p dir="auto">This is because the <code class="notranslate">onClick</code> handler of the contained <code class="notranslate"><a></code> tag is overridden by the <code class="notranslate">next/link</code> implementation <a href="https://github.com/zeit/next.js/blob/32af8294a7c2b3a39c8b04c6d751fb8a46875077/lib/link.js#L116">here</a>.</p>
<p dir="auto">If this were to be changed a good way would be checking for, and calling, the <code class="notranslate">onClick</code> prop passed to the <code class="notranslate"><Link></code> element as part of its internal click handler. See <a href="https://github.com/ReactTraining/react-router/blob/73feda30b59731bc89a0a419a6be92dd93b6f0a5/packages/react-router-dom/modules/Link.js#L35-L44">react-router’s Link element</a> for inspiration.</p>
<p dir="auto">Why I would consider changing this: <code class="notranslate">onClick</code> handlers on links can be useful for various things, but mostly I didn’t expect that the <code class="notranslate">onClick</code> wasn’t being called at all. I’ve added support for this to my custom <code class="notranslate">Link</code> element, but I think <code class="notranslate">onClick</code> "should just work".</p> | 0 |
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>^12.0.0</li>
</ul>
</li>
<li><strong>Environment:</strong>
<ul dir="auto">
<li>Arch Linux, npm 6.14.11, node v15.10.0</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>^11.0.0</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<script>document.write(process.versions.node)</script>"><pre class="notranslate"><code class="notranslate"><script>document.write(process.versions.node)</script>
</code></pre></div>
<p dir="auto">should not throw an error</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Uncaught ReferenceError: process is not defined</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">index.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const electron = require('electron')
function createWindow () {
if (electron.BrowserWindow.getAllWindows().length) {
return
}
const win = new electron.BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
}
})
win.loadFile('index.html')
win.openDevTools()
}
electron.app.whenReady().then(createWindow)"><pre class="notranslate"><code class="notranslate">const electron = require('electron')
function createWindow () {
if (electron.BrowserWindow.getAllWindows().length) {
return
}
const win = new electron.BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true,
}
})
win.loadFile('index.html')
win.openDevTools()
}
electron.app.whenReady().then(createWindow)
</code></pre></div>
<p dir="auto">index.html</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>."><pre class="notranslate"><code class="notranslate">We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</code></pre></div>
<p dir="auto">package.json</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"name": "fe",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "electron ./index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"electron": "^12.0.0"
}
}"><pre class="notranslate"><code class="notranslate">{
"name": "fe",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "electron ./index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"electron": "^12.0.0"
}
}
</code></pre></div>
<p dir="auto">it works fine with electron ^11.0.0</p> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong><br>
v12.0.0</li>
<li><strong>Operating System:</strong><br>
Windows 10 Enterprise</li>
<li><strong>Last Known Working Electron version:</strong><br>
None</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>."><pre class="notranslate"><code class="notranslate"> We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</code></pre></div>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">We are using node , Chrome , and Electron .</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">npm init -y<br>
npm i --save electron<br>
Copy and paste code from Quick Start Guide into main.js and index.html<br>
npm start</p>
<p dir="auto">And receive the following errors with my app starts</p>
<p dir="auto">Uncaught ReferenceError: process is not defined<br>
at index.html:11<br>
index.html:12 Uncaught ReferenceError: process is not defined<br>
at index.html:12<br>
index.html:13 Uncaught ReferenceError: process is not defined<br>
at index.html:13</p>
<p dir="auto">package.json<br>
{<br>
"name": "mea",<br>
"version": "1.0.0",<br>
"description": "",<br>
"main": "main.js",<br>
"scripts": {<br>
"start": "electron ."<br>
},<br>
"keywords": [],<br>
"author": "",<br>
"license": "ISC",<br>
"devDependencies": {<br>
"electron": "^12.0.0"<br>
}<br>
}</p>
<p dir="auto">main.js<br>
const { app, BrowserWindow } = require('electron')</p>
<p dir="auto">function createWindow () {<br>
const win = new BrowserWindow({<br>
width: 800,<br>
height: 600,<br>
webPreferences: {<br>
nodeIntegration: true,<br>
nodeIntegrationInWorker: true,<br>
enableRemoteModule: true<br>
}<br>
})</p>
<p dir="auto">win.loadFile('index.html')<br>
}</p>
<p dir="auto">app.whenReady().then(createWindow)</p>
<p dir="auto">app.on('window-all-closed', () => {<br>
if (process.platform !== 'darwin') {<br>
app.quit()<br>
}<br>
})</p>
<p dir="auto">app.on('activate', () => {<br>
if (BrowserWindow.getAllWindows().length === 0) {<br>
createWindow()<br>
}<br>
})</p>
<p dir="auto">index.html</p>
<title>Hello World!</title>
<h1 dir="auto">Hello World!</h1>
<p dir="auto">
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/79912980/109645311-a9364780-7b7c-11eb-991e-f970818388de.png"><img src="https://user-images.githubusercontent.com/79912980/109645311-a9364780-7b7c-11eb-991e-f970818388de.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Screenshots</h3>
<h3 dir="auto">Additional Information</h3> | 1 |
<p dir="auto">Dear Fabien,<br>
Thank you for uploading your slides on the symphony hack day in Berlin.<br>
I played around with the expression language and the got the error, that in the router the request is missing.</p>
<p dir="auto">I created a fork of symfony standard to reproduce the problem:<br>
<a href="https://github.com/sebastianblum/symfony-standard/tree/routing-condition">https://github.com/sebastianblum/symfony-standard/tree/routing-condition</a></p>
<p dir="auto">If I add the condition in the routing.yml</p>
<p dir="auto">condition: "request.getMethod() in ['GET', 'POST'] and request.headers.get('User-Agent') matches '/firefox/i'"<br>
see <a href="https://github.com/sebastianblum/symfony-standard/blob/routing-condition/src/Acme/DemoBundle/Resources/config/routing.yml">https://github.com/sebastianblum/symfony-standard/blob/routing-condition/src/Acme/DemoBundle/Resources/config/routing.yml</a></p>
<p dir="auto">then I got the following error:</p>
<p dir="auto">FatalErrorException: Error: Call to a member function getMethod() on a non-object<br>
See complete stack trace <a href="https://gist.github.com/sebastianblum/7417064">https://gist.github.com/sebastianblum/7417064</a></p> | <p dir="auto">I had a problem where i put <code class="notranslate">assetic:</code> twice in <code class="notranslate">config_prod.yml</code> by accident. Because of that it didn't work as i expected. It would be nice if symfony throws a warning for this instead of just overriding/ignoring. Perhaps part of developer experience.</p>
<p dir="auto">Edit: when throwing a warning the parsing can continue</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">with-apollo-client should be called once only per ssr</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">The with-apollo example that uses _app.js initializes twice on the server, this seems to be due to Error being called with _app.js as well as the page.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">Add a console.log(Component) within the getInitialProps of with-apollo-client and see console log two entries. One for your component another for error.</p>
<h2 dir="auto">Context</h2>
<p dir="auto">Performance and possible other side effects.</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>6.0.1</td>
</tr>
</tbody>
</table> | <p dir="auto">Hey all,</p>
<p dir="auto">I'm running into an old Heroku issue that I thought was solved via <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="187345591" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/198" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/198/hovercard" href="https://github.com/vercel/next.js/issues/198">#198</a>.</p>
<p dir="auto">No matter how I approach it, my build is not delivering a webpack-config file as expected.</p>
<h2 dir="auto">Setup:</h2>
<ul dir="auto">
<li>Only using dependencies, no dev-dependencies.</li>
<li>Using heroku-postbuild command in my package.json to trigger a build before starting the server.</li>
<li>Gitignore file ignores .next folder and node-modules folder.</li>
<li>Not using a Procfile. npm start works by default.</li>
</ul>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Build to be performed after install, BUT before npm start is called.</p>
<h2 dir="auto">Attempted Methods Of Solving</h2>
<ul dir="auto">
<li>Used postinstall command in package.json. Same result.</li>
<li>Used Procfile to build, then start server. Same result.</li>
<li>Installed webpack directly and added to package.json. Same result.</li>
</ul>
<p dir="auto">Package.json:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"name": "react-next-seo",
"version": "1.0.0",
"engines": {
"node": "10.15.0",
"npm": "6.8.0"
},
"description": "",
"main": "index.js",
"scripts": {
"dev": "next -p 3001",
"dev:express": "node server.js",
"build": "next build",
"postbuild": "node scripts/sitemap.js",
"start:local": "next start -p 8000",
"start": "node server.js",
"heroku-postbuild": "next build"
},
"author": "",
"license": "ISC",
"dependencies": {
"compression": "1.7.3",
"express": "4.16.4",
"heroku-ssl-redirect": "0.0.4",
"next": "8.0.3",
"preact": "8.4.2",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-lazy-load": "3.0.13",
"webpack": "4.29.5"
}
}"><pre class="notranslate"><code class="notranslate">{
"name": "react-next-seo",
"version": "1.0.0",
"engines": {
"node": "10.15.0",
"npm": "6.8.0"
},
"description": "",
"main": "index.js",
"scripts": {
"dev": "next -p 3001",
"dev:express": "node server.js",
"build": "next build",
"postbuild": "node scripts/sitemap.js",
"start:local": "next start -p 8000",
"start": "node server.js",
"heroku-postbuild": "next build"
},
"author": "",
"license": "ISC",
"dependencies": {
"compression": "1.7.3",
"express": "4.16.4",
"heroku-ssl-redirect": "0.0.4",
"next": "8.0.3",
"preact": "8.4.2",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-lazy-load": "3.0.13",
"webpack": "4.29.5"
}
}
</code></pre></div>
<p dir="auto">Log File From Heroku:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-----> Node.js app detected
-----> Creating runtime environment
NPM_CONFIG_LOGLEVEL=error
NODE_ENV=production
NODE_MODULES_CACHE=true
NODE_VERBOSE=false
-----> Installing binaries
engines.node (package.json): 10.15.0
engines.npm (package.json): 6.8.0
Resolving node version 10.15.0...
Downloading and installing node 10.15.0...
Bootstrapping npm 6.8.0 (replacing 6.4.1)...
npm 6.8.0 installed
-----> Restoring cache
- node_modules is checked into source control and cannot be cached
-----> Building dependencies
Prebuild detected (node_modules already exists)
Rebuilding any native modules
> [email protected] install /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents
> node install
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/next
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/core
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/code-frame
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/highlight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chalk
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-styles
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/color-convert
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/color-name
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/escape-string-regexp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/supports-color
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-flag
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/esutils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/js-tokens
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/generator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/lodash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-fast-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/jsesc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/trim-right
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helpers
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/template
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/parser
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/traverse
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-function-name
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-get-function-arity
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-split-export-declaration
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/traverse/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/globals
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/convert-source-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/safe-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/json5
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/resolve
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-parse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/semver
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-class-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-member-expression-to-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-optimise-call-expression
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-plugin-utils
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-replace-supers
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-class-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-object-rest-spread
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-object-rest-spread
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-dynamic-import
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-commonjs
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-module-transforms
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-module-imports
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-simple-access
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-module-transforms/node_modules/@babel/template
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-runtime/node_modules/resolve
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/preset-env
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-async-generator-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-remap-async-to-generator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-annotate-as-pure
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-wrap-function
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-async-generators
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-json-strings
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-json-strings
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-optional-catch-binding
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-optional-catch-binding
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-unicode-property-regex
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regexpu-core
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerate-unicode-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regjsgen
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regjsparser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regjsparser/node_modules/jsesc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-match-property-ecmascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-canonical-property-names-ecmascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-property-aliases-ecmascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-match-property-value-ecmascript
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-arrow-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-async-to-generator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-block-scoped-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-block-scoping
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-classes
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-define-map
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-computed-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-destructuring
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-dotall-regex
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-duplicate-keys
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-exponentiation-operator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-builder-binary-assignment-operator-visitor
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-explode-assignable-expression
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-for-of
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-function-name
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-literals
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-amd
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-systemjs
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-hoist-variables
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-umd
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-new-target
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-object-super
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-parameters
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-call-delegate
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-regenerator
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerator-transform
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/private
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-shorthand-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-spread
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-sticky-regex
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-template-literals
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-typeof-symbol
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-unicode-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserslist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/caniuse-lite
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/electron-to-chromium
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/node-releases
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/invariant
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/loose-envify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/js-levenshtein
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/preset-react
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-display-name
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-jsx
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-builder-react-jsx
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-jsx
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-jsx-self
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-jsx-source
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerator-runtime
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/runtime-corejs2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/core-js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/autodll-webpack-plugin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/bluebird
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/del
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/globby
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-union
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-uniq
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fs.realpath
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/inflight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/once
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/wrappy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/inherits
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/brace-expansion
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/balanced-match
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/concat-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-is-absolute
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-assign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/globby/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pinkie-promise
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pinkie
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-path-cwd
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-path-in-cwd
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-path-inside
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-is-inside
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/rimraf
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/rimraf/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/find-cache-dir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/commondir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/make-dir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pkg-dir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/find-up
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/locate-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-locate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-limit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-try
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-exists
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/memory-fs
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/errno
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/prr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/readable-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/core-util-is
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/isarray
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/process-nextick-args
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/string_decoder
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/util-deprecate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/read-pkg
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/load-json-file
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/graceful-fs
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/parse-json
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/error-ex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-arrayish
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/load-json-file/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/strip-bom
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/normalize-package-data
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hosted-git-info
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/validate-npm-package-license
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-correct
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-expression-parse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-exceptions
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-license-ids
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-type
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-type/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/tapable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-merge
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-sources
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-list-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-core
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-loader
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/loader-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/big.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/emojis-list
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mkdirp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/util.promisify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-keys
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object.getownpropertydescriptors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/es-abstract
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/es-to-primitive
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-callable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-date-object
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-symbol
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-symbols
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/function-bind
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-plugin-react-require
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-plugin-transform-react-remove-prop-types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cacache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chownr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/figgy-pudding
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cacache/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/lru-cache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/yallist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mississippi
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/concat-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/buffer-from
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/typedarray
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/duplexify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/end-of-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-shift
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/flush-write-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/from2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/parallel-transform
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cyclist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pump
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pumpify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pumpify/node_modules/pump
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-each
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/through2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/xtend
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/move-concurrently
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/aproba
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/copy-concurrently
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fs-write-stream-atomic
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/iferr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/imurmurhash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/run-queue
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/promise-inflight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ssri
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unique-filename
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unique-slug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/y18n
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/case-sensitive-paths-webpack-plugin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cross-spawn
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/shebang-command
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/shebang-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/which
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/isexe
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/event-source-polyfill
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fresh
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hoist-non-react-statics
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/http-status
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/launch-editor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/shell-quote
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-filter
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-reduce
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/jsonify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mkdirp-then
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/any-promise
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/nanoid
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/prop-types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/prop-types-exact
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object.assign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/reflect.ownkeys
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/react-error-overlay
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy/node_modules/del
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy/node_modules/globby
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arrify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/emitter-mixin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/junk
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/maximatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-differ
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/promise
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/asap
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/slash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/schema-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ajv
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fast-deep-equal
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fast-json-stable-stringify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/json-schema-traverse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/uri-js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/punycode
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ajv-errors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ajv-keywords
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/serialize-javascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/strip-ansi
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/styled-jsx
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-plugin-syntax-jsx
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-runtime/node_modules/regenerator-runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-types/node_modules/to-fast-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/styled-jsx/node_modules/source-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/string-hash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stylis
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stylis-rule-sheet
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/terser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/commander
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map-support
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unfetch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/url
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/querystring
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/ast
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-module-context
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-wasm-bytecode
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wast-parser
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/floating-point-hex-parser
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-api-error
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-code-frame
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wast-printer
@xtuc/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@xtuc/long
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-fsm
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-edit
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-buffer
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-wasm-section
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-gen
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/ieee754
@xtuc/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@xtuc/ieee754
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/leb128
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/utf8
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-opt
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-parser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/acorn
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/acorn-dynamic-import
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chrome-trace-event
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/tslib
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/enhanced-resolve
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/eslint-scope
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/esrecurse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/estraverse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/json-parse-better-errors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/loader-runner
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/micromatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arr-diff
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-unique
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/braces
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arr-flatten
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/braces/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-extendable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fill-range
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fill-range/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-number
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-number/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/repeat-string
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-regex-range
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/isobject
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/repeat-element
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cache-base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/collection-visit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/map-visit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-visit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/component-emitter
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/get-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-values
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-values/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/set-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/set-value/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-plain-object
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/split-string
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assign-symbols
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extend-shallow/node_modules/is-extendable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-object-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-object-path/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/union-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arr-union
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/union-value/node_modules/set-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/union-value/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value/node_modules/has-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value/node_modules/has-values
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value/node_modules/has-value/node_modules/isobject
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/class-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/class-utils/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-accessor-descriptor/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-data-descriptor/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-descriptor/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/static-extend
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/static-extend/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-copy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/copy-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-copy/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-copy/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mixin-deep
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/for-in
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mixin-deep/node_modules/is-extendable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pascalcase
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/map-cache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map-resolve
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/atob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/decode-uri-component
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/resolve-url
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map-url
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/urix
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/use
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-util
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-util/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regex-not
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/safe-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ret
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/posix-character-classes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fragment-cache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/nanomatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-windows
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object.pick
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/neo-async
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/node-libs-browser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assert
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assert/node_modules/util
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assert/node_modules/inherits
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-zlib
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pako
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base64-js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ieee754
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/console-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/date-now
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/constants-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/crypto-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-cipher
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-aes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/buffer-xor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cipher-base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/create-hash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/md5.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hash-base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ripemd160
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/sha.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/evp_bytestokey
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-des
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/des.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimalistic-assert
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-sign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/bn.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-rsa
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/randombytes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/create-hmac
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/elliptic
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/brorand
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hash.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hmac-drbg
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimalistic-crypto-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/parse-asn1
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/asn1.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pbkdf2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/create-ecdh
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/diffie-hellman
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/miller-rabin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/public-encrypt
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/randomfill
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/domain-browser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/events
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/https-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/os-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/process
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/querystring-es3
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-http
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/builtin-status-codes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-arraybuffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/timers-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/setimmediate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/tty-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/util
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/vm-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/indexof
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack/node_modules/schema-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/terser-webpack-plugin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/worker-farm
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/watchpack
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chokidar
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/anymatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/normalize-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/async-each
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/glob-parent
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/glob-parent/node_modules/is-glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-extglob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-dirname
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-binary-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/binary-extensions
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/readdirp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/upath
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-dev-middleware
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-dev-middleware/node_modules/mime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/range-parser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-log
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-colors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/uuid
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-hot-middleware
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-html
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/html-entities
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/react-dom
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/scheduler
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/destroy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ee-first
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/encodeurl
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/escape-html
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/etag
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/http-errors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/depd
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/setprototypeof
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/statuses
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/lodash.debounce
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/on-finished
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-to-regexp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pseudomap
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/remove-trailing-separator
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/nan
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send/node_modules/statuses
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/node-pre-gyp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/detect-libc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/mkdirp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minimist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/needle
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/iconv-lite
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/safer-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/sax
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/nopt
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/abbrev
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/osenv
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/os-homedir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/os-tmpdir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/npm-packlist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ignore-walk
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minimatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/brace-expansion
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/balanced-match
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/concat-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/npm-bundled
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/npmlog
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/are-we-there-yet
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/delegates
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/readable-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/core-util-is
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/inherits
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/isarray
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/process-nextick-args
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/safe-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/string_decoder
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/util-deprecate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/console-control-strings
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/gauge
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/aproba
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/has-unicode
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/object-assign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/signal-exit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/string-width
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/code-point-at
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/is-fullwidth-code-point
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/number-is-nan
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/strip-ansi
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ansi-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/wide-align
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/set-blocking
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/rc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/deep-extend
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ini
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/rc/node_modules/minimist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/strip-json-comments
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/rimraf
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/fs.realpath
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/inflight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/once
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/wrappy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/path-is-absolute
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/semver
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/tar
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/chownr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/fs-minipass
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minipass
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/yallist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minizlib
Installing any new modules (package.json)
> [email protected] postinstall /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/preact
> node -e "console.log('\u001b[35m\u001b[1mLove Preact? You can now donate to our open collective:\u001b[22m\u001b[39m\n > \u001b[34mhttps://opencollective.com/preact/donate\u001b[0m')"
Love Preact? You can now donate to our open collective:
> https://opencollective.com/preact/donate
added 96 packages from 95 contributors and audited 6608 packages in 7.591s
found 0 vulnerabilities
Running heroku-postbuild
> [email protected] heroku-postbuild /tmp/build_aba62cec9b0ecc274830e615862f4fe3
> next build
internal/modules/cjs/loader.js:583
throw err;
^
Error: Cannot find module './webpack-config'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
at Function.Module._load (internal/modules/cjs/loader.js:507:25)
at Module.require (internal/modules/cjs/loader.js:637:17)
at require (internal/modules/cjs/helpers.js:22:18)
at Object.<anonymous> (/tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/next/dist/build/index.js:10:42)
at Module._compile (internal/modules/cjs/loader.js:689:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:700:10)
at Module.load (internal/modules/cjs/loader.js:599:32)
at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
at Function.Module._load (internal/modules/cjs/loader.js:530:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] heroku-postbuild: `next build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] heroku-postbuild script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/npmcache.jn2Lb/_logs/2019-02-28T06_02_12_138Z-debug.log
-----> Build failed
We're sorry this build is failing! You can troubleshoot common issues here:
https://devcenter.heroku.com/articles/troubleshooting-node-deploys
Some possible problems:
- node_modules checked into source control
https://blog.heroku.com/node-habits-2016#9-only-git-the-important-bits
Love,
Heroku"><pre class="notranslate"><code class="notranslate">-----> Node.js app detected
-----> Creating runtime environment
NPM_CONFIG_LOGLEVEL=error
NODE_ENV=production
NODE_MODULES_CACHE=true
NODE_VERBOSE=false
-----> Installing binaries
engines.node (package.json): 10.15.0
engines.npm (package.json): 6.8.0
Resolving node version 10.15.0...
Downloading and installing node 10.15.0...
Bootstrapping npm 6.8.0 (replacing 6.4.1)...
npm 6.8.0 installed
-----> Restoring cache
- node_modules is checked into source control and cannot be cached
-----> Building dependencies
Prebuild detected (node_modules already exists)
Rebuilding any native modules
> [email protected] install /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents
> node install
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/next
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/core
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/code-frame
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/highlight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chalk
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-styles
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/color-convert
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/color-name
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/escape-string-regexp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/supports-color
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-flag
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/esutils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/js-tokens
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/generator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/lodash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-fast-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/jsesc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/trim-right
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helpers
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/template
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/parser
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/traverse
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-function-name
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-get-function-arity
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-split-export-declaration
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/traverse/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/globals
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/convert-source-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/safe-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/json5
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/resolve
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-parse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/semver
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-class-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-member-expression-to-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-optimise-call-expression
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-plugin-utils
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-replace-supers
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-class-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-object-rest-spread
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-object-rest-spread
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-dynamic-import
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-commonjs
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-module-transforms
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-module-imports
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-simple-access
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-module-transforms/node_modules/@babel/template
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-runtime/node_modules/resolve
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/preset-env
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-async-generator-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-remap-async-to-generator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-annotate-as-pure
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-wrap-function
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-async-generators
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-json-strings
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-json-strings
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-optional-catch-binding
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-optional-catch-binding
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-proposal-unicode-property-regex
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regexpu-core
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerate-unicode-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regjsgen
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regjsparser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regjsparser/node_modules/jsesc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-match-property-ecmascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-canonical-property-names-ecmascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-property-aliases-ecmascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unicode-match-property-value-ecmascript
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-arrow-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-async-to-generator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-block-scoped-functions
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-block-scoping
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-classes
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-define-map
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-computed-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-destructuring
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-dotall-regex
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-duplicate-keys
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-exponentiation-operator
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-builder-binary-assignment-operator-visitor
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-explode-assignable-expression
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-for-of
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-function-name
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-literals
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-amd
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-systemjs
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-hoist-variables
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-modules-umd
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-new-target
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-object-super
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-parameters
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-call-delegate
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-regenerator
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerator-transform
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/private
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-shorthand-properties
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-spread
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-sticky-regex
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-template-literals
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-typeof-symbol
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-unicode-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserslist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/caniuse-lite
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/electron-to-chromium
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/node-releases
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/invariant
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/loose-envify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/js-levenshtein
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/preset-react
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-display-name
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-jsx
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/helper-builder-react-jsx
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-syntax-jsx
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-jsx-self
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/plugin-transform-react-jsx-source
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regenerator-runtime
@babel/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@babel/runtime-corejs2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/core-js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/autodll-webpack-plugin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/bluebird
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/del
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/globby
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-union
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-uniq
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fs.realpath
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/inflight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/once
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/wrappy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/inherits
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/brace-expansion
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/balanced-match
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/concat-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-is-absolute
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-assign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/globby/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pinkie-promise
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pinkie
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-path-cwd
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-path-in-cwd
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-path-inside
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-is-inside
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/rimraf
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/rimraf/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/find-cache-dir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/commondir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/make-dir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pkg-dir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/find-up
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/locate-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-locate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-limit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/p-try
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-exists
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/memory-fs
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/errno
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/prr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/readable-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/core-util-is
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/isarray
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/process-nextick-args
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/string_decoder
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/util-deprecate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/read-pkg
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/load-json-file
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/graceful-fs
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/parse-json
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/error-ex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-arrayish
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/load-json-file/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/strip-bom
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/normalize-package-data
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hosted-git-info
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/validate-npm-package-license
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-correct
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-expression-parse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-exceptions
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/spdx-license-ids
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-type
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-type/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/tapable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-merge
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-sources
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-list-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-core
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-loader
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/loader-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/big.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/emojis-list
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mkdirp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/util.promisify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-keys
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object.getownpropertydescriptors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/es-abstract
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/es-to-primitive
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-callable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-date-object
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-symbol
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-symbols
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/function-bind
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-plugin-react-require
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-plugin-transform-react-remove-prop-types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cacache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chownr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/figgy-pudding
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cacache/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/lru-cache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/yallist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mississippi
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/concat-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/buffer-from
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/typedarray
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/duplexify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/end-of-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-shift
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/flush-write-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/from2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/parallel-transform
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cyclist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pump
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pumpify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pumpify/node_modules/pump
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-each
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/through2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/xtend
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/move-concurrently
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/aproba
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/copy-concurrently
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fs-write-stream-atomic
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/iferr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/imurmurhash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/run-queue
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/promise-inflight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ssri
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unique-filename
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unique-slug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/y18n
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/case-sensitive-paths-webpack-plugin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cross-spawn
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/shebang-command
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/shebang-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/which
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/isexe
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/event-source-polyfill
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fresh
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hoist-non-react-statics
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/http-status
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/launch-editor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/shell-quote
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-filter
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-reduce
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/jsonify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mkdirp-then
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/any-promise
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/nanoid
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/prop-types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/prop-types-exact
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object.assign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/reflect.ownkeys
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/react-error-overlay
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy/node_modules/del
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy/node_modules/globby
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arrify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/recursive-copy/node_modules/pify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/emitter-mixin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/junk
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/maximatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-differ
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/promise
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/asap
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/slash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/schema-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ajv
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fast-deep-equal
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fast-json-stable-stringify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/json-schema-traverse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/uri-js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/punycode
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ajv-errors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ajv-keywords
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/serialize-javascript
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/strip-ansi
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/styled-jsx
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-plugin-syntax-jsx
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-types
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-runtime/node_modules/regenerator-runtime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/babel-types/node_modules/to-fast-properties
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/styled-jsx/node_modules/source-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/string-hash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stylis
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stylis-rule-sheet
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/terser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/commander
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map-support
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unfetch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/url
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/querystring
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/ast
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-module-context
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-wasm-bytecode
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wast-parser
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/floating-point-hex-parser
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-api-error
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-code-frame
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wast-printer
@xtuc/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@xtuc/long
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-fsm
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-edit
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-buffer
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/helper-wasm-section
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-gen
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/ieee754
@xtuc/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@xtuc/ieee754
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/leb128
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/utf8
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-opt
@webassemblyjs/[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/@webassemblyjs/wasm-parser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/acorn
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/acorn-dynamic-import
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chrome-trace-event
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/tslib
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/enhanced-resolve
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/eslint-scope
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/esrecurse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/estraverse
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/json-parse-better-errors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/loader-runner
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/micromatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arr-diff
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/array-unique
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/braces
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arr-flatten
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/braces/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-extendable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fill-range
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fill-range/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-number
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-number/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/repeat-string
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-regex-range
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/isobject
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/repeat-element
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cache-base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/collection-visit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/map-visit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-visit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/component-emitter
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/get-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-values
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/has-values/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/set-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/set-value/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-plain-object
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/split-string
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assign-symbols
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extend-shallow/node_modules/is-extendable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-object-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-object-path/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/union-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/arr-union
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/union-value/node_modules/set-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/union-value/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value/node_modules/has-value
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value/node_modules/has-values
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/unset-value/node_modules/has-value/node_modules/isobject
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/class-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/class-utils/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-accessor-descriptor/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-data-descriptor/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-descriptor/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/static-extend
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/static-extend/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-copy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/copy-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-copy/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object-copy/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mixin-deep
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/for-in
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mixin-deep/node_modules/is-extendable
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pascalcase
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/map-cache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map-resolve
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/atob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/decode-uri-component
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/resolve-url
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/source-map-url
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/urix
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/use
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-node/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-util
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/snapdragon-util/node_modules/kind-of
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/define-property/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/regex-not
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/safe-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ret
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/is-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/is-accessor-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/is-data-descriptor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/define-property
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/expand-brackets/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/posix-character-classes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/extglob/node_modules/extend-shallow
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fragment-cache
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/nanomatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-windows
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/object.pick
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/neo-async
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/node-libs-browser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assert
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assert/node_modules/util
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/assert/node_modules/inherits
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-zlib
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pako
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/base64-js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ieee754
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/console-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/date-now
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/constants-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/crypto-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-cipher
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-aes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/buffer-xor
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/cipher-base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/create-hash
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/md5.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hash-base
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ripemd160
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/sha.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/evp_bytestokey
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-des
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/des.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimalistic-assert
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-sign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/bn.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/browserify-rsa
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/randombytes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/create-hmac
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/elliptic
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/brorand
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hash.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/hmac-drbg
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/minimalistic-crypto-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/parse-asn1
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/asn1.js
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pbkdf2
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/create-ecdh
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/diffie-hellman
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/miller-rabin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/public-encrypt
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/randomfill
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/domain-browser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/events
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/https-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/os-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/process
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/querystring-es3
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/stream-http
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/builtin-status-codes
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/to-arraybuffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/timers-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/setimmediate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/tty-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/util
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/vm-browserify
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/indexof
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack/node_modules/schema-utils
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/terser-webpack-plugin
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/worker-farm
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/watchpack
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/chokidar
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/anymatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/normalize-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/async-each
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/glob-parent
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/glob-parent/node_modules/is-glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-extglob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-dirname
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-binary-path
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/binary-extensions
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/is-glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/readdirp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/upath
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-dev-middleware
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-dev-middleware/node_modules/mime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/range-parser
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-log
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-colors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/uuid
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/webpack-hot-middleware
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ansi-html
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/html-entities
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/react-dom
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/scheduler
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/destroy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/ee-first
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/encodeurl
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/escape-html
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/etag
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/http-errors
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/depd
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/setprototypeof
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/statuses
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/lodash.debounce
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/on-finished
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/path-to-regexp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/pseudomap
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/remove-trailing-separator
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/mime
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/nan
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/send/node_modules/statuses
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/node-pre-gyp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/detect-libc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/mkdirp
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minimist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/needle
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/debug
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ms
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/iconv-lite
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/safer-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/sax
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/nopt
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/abbrev
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/osenv
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/os-homedir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/os-tmpdir
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/npm-packlist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ignore-walk
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minimatch
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/brace-expansion
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/balanced-match
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/concat-map
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/npm-bundled
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/npmlog
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/are-we-there-yet
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/delegates
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/readable-stream
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/core-util-is
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/inherits
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/isarray
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/process-nextick-args
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/safe-buffer
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/string_decoder
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/util-deprecate
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/console-control-strings
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/gauge
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/aproba
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/has-unicode
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/object-assign
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/signal-exit
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/string-width
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/code-point-at
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/is-fullwidth-code-point
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/number-is-nan
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/strip-ansi
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ansi-regex
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/wide-align
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/set-blocking
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/rc
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/deep-extend
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/ini
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/rc/node_modules/minimist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/strip-json-comments
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/rimraf
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/glob
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/fs.realpath
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/inflight
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/once
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/wrappy
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/path-is-absolute
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/semver
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/tar
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/chownr
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/fs-minipass
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minipass
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/yallist
[email protected] /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/fsevents/node_modules/minizlib
Installing any new modules (package.json)
> [email protected] postinstall /tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/preact
> node -e "console.log('\u001b[35m\u001b[1mLove Preact? You can now donate to our open collective:\u001b[22m\u001b[39m\n > \u001b[34mhttps://opencollective.com/preact/donate\u001b[0m')"
Love Preact? You can now donate to our open collective:
> https://opencollective.com/preact/donate
added 96 packages from 95 contributors and audited 6608 packages in 7.591s
found 0 vulnerabilities
Running heroku-postbuild
> [email protected] heroku-postbuild /tmp/build_aba62cec9b0ecc274830e615862f4fe3
> next build
internal/modules/cjs/loader.js:583
throw err;
^
Error: Cannot find module './webpack-config'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
at Function.Module._load (internal/modules/cjs/loader.js:507:25)
at Module.require (internal/modules/cjs/loader.js:637:17)
at require (internal/modules/cjs/helpers.js:22:18)
at Object.<anonymous> (/tmp/build_aba62cec9b0ecc274830e615862f4fe3/node_modules/next/dist/build/index.js:10:42)
at Module._compile (internal/modules/cjs/loader.js:689:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:700:10)
at Module.load (internal/modules/cjs/loader.js:599:32)
at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
at Function.Module._load (internal/modules/cjs/loader.js:530:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] heroku-postbuild: `next build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] heroku-postbuild script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/npmcache.jn2Lb/_logs/2019-02-28T06_02_12_138Z-debug.log
-----> Build failed
We're sorry this build is failing! You can troubleshoot common issues here:
https://devcenter.heroku.com/articles/troubleshooting-node-deploys
Some possible problems:
- node_modules checked into source control
https://blog.heroku.com/node-habits-2016#9-only-git-the-important-bits
Love,
Heroku
</code></pre></div>
<p dir="auto">Any thoughts as to how to solve?</p> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">ℹ</g-emoji> Computer information</h2>
<ul dir="auto">
<li>PowerToys version: 0.23.0</li>
<li>PowerToy Utility: fancy zones</li>
<li>Running PowerToys as Admin: yes</li>
<li>Windows build number: 19041.508</li>
</ul>
<h2 dir="auto">📝 Provide detailed reproduction steps (if any)</h2>
<ol dir="auto">
<li>… input value 600 spaces around zone in fancy zones editor</li>
<li>… apply</li>
<li>… launch fancy zones editor</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">error crash. error log onto fzeditorcrashlog.txt</p>
<h3 dir="auto">❌ Actual result</h3>
<p dir="auto">error crash</p>
<p dir="auto">error log below</p>
<h2 dir="auto">Exception</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="System.ArgumentException: '-231.5' is not a valid value for property 'Width'.
Source: WindowsBase
TargetAssembly: WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
TargetModule: WindowsBase.dll
TargetSite: Void SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType, Boolean isInternal)
at FancyZonesEditor.LayoutPreview.RenderActualScalePreview(GridLayoutModel grid)
at FancyZonesEditor.LayoutPreview.RenderPreview()
at System.Windows.FrameworkElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)
at System.Windows.FrameworkElement.OnDataContextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType)
at System.Windows.TreeWalkHelper.OnInheritablePropertyChanged(DependencyObject d, InheritablePropertyChangeInfo info, Boolean visitedViaVisualTree)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d, Boolean visitedViaVisualTree)
at System.Windows.DescendentsWalker`1.WalkLogicalChildren(FrameworkElement feParent, FrameworkContentElement fceParent, IEnumerator logicalChildren)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1.StartWalk(DependencyObject startNode, Boolean skipStartNode)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType)
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType, Boolean isInternal)
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
at FancyZonesEditor.App.OnStartup(Object sender, StartupEventArgs e)
at System.Windows.Application.OnStartup(StartupEventArgs e)
at System.Windows.Application.<.ctor>b__1_0(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at FancyZonesEditor.App.Main()
"><pre class="notranslate"><code class="notranslate">System.ArgumentException: '-231.5' is not a valid value for property 'Width'.
Source: WindowsBase
TargetAssembly: WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
TargetModule: WindowsBase.dll
TargetSite: Void SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType, Boolean isInternal)
at FancyZonesEditor.LayoutPreview.RenderActualScalePreview(GridLayoutModel grid)
at FancyZonesEditor.LayoutPreview.RenderPreview()
at System.Windows.FrameworkElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)
at System.Windows.FrameworkElement.OnDataContextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType)
at System.Windows.TreeWalkHelper.OnInheritablePropertyChanged(DependencyObject d, InheritablePropertyChangeInfo info, Boolean visitedViaVisualTree)
at System.Windows.DescendentsWalker`1._VisitNode(DependencyObject d, Boolean visitedViaVisualTree)
at System.Windows.DescendentsWalker`1.WalkLogicalChildren(FrameworkElement feParent, FrameworkContentElement fceParent, IEnumerator logicalChildren)
at System.Windows.DescendentsWalker`1.WalkFrameworkElementLogicalThenVisualChildren(FrameworkElement feParent, Boolean hasLogicalChildren)
at System.Windows.DescendentsWalker`1.IterateChildren(DependencyObject d)
at System.Windows.DescendentsWalker`1.StartWalk(DependencyObject startNode, Boolean skipStartNode)
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType)
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean coerceWithCurrentValue, OperationType operationType, Boolean isInternal)
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
at FancyZonesEditor.App.OnStartup(Object sender, StartupEventArgs e)
at System.Windows.Application.OnStartup(StartupEventArgs e)
at System.Windows.Application.<.ctor>b__1_0(Object unused)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
at System.Windows.Application.RunDispatcher(Object ignore)
at System.Windows.Application.RunInternal(Window window)
at FancyZonesEditor.App.Main()
</code></pre></div>
<h2 dir="auto">Environment</h2>
<ul dir="auto">
<li>Command Line: "C:\Program Files\PowerToys\modules\FancyZones\FancyZonesEditor.exe" 374_1080_1474_864 "35000"</li>
<li>Timestamp: 10/01/2020 16:21:23</li>
<li>OS Version: Microsoft Windows NT 6.2.9200.0</li>
<li>IntPtr Length: 8</li>
<li>x64: True</li>
<li>CLR Version: 4.0.30319.42000</li>
</ul>
<h2 dir="auto">Assemblies - FancyZonesEditor.exe</h2>
<ul dir="auto">
<li>FancyZonesEditor, Version=0.23.0.0, Culture=neutral, PublicKeyToken=null (C:\Program Files\PowerToys\modules\FancyZones\FancyZonesEditor.exe)</li>
<li>System.Text.Json, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 (C:\Program Files\PowerToys\modules\FancyZones\System.Text.Json.dll)</li>
<li>System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 (C:\Program Files\PowerToys\modules\FancyZones\System.Memory.dll)</li>
<li>System.Runtime.CompilerServices.Unsafe, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (C:\Program Files\PowerToys\modules\FancyZones\System.Runtime.CompilerServices.Unsafe.dll)</li>
<li>System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 (C:\Program Files\PowerToys\modules\FancyZones\System.Buffers.dll)</li>
<li>System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (C:\Program Files\PowerToys\modules\FancyZones\System.Numerics.Vectors.dll)</li>
<li>System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 (C:\Program Files\PowerToys\modules\FancyZones\System.ValueTuple.dll)</li>
<li>MahApps.Metro, Version=2.0.0.0, Culture=neutral, PublicKeyToken=51482d6f650b2b3f (C:\Program Files\PowerToys\modules\FancyZones\MahApps.Metro.dll)</li>
<li>ControlzEx, Version=4.0.0.0, Culture=neutral, PublicKeyToken=69f1c32f803d307e (C:\Program Files\PowerToys\modules\FancyZones\ControlzEx.dll)</li>
<li>ManagedCommon, Version=0.23.0.0, Culture=neutral, PublicKeyToken=null (C:\Program Files\PowerToys\modules\FancyZones\ManagedCommon.dll)</li>
<li>Telemetry, Version=0.23.0.0, Culture=neutral, PublicKeyToken=null (C:\Program Files\PowerToys\modules\FancyZones\Telemetry.dll)</li>
<li>Microsoft.Xaml.Behaviors, Version=1.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (C:\Program Files\PowerToys\modules\FancyZones\Microsoft.Xaml.Behaviors.dll)</li>
<li>mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll)</li>
<li>System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll)</li>
<li>System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll)</li>
<li>PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.dll)</li>
<li>PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (C:\WINDOWS\Microsoft.Net\assembly\GAC_64\PresentationCore\v4.0_4.0.0.0__31bf3856ad364e35\PresentationCore.dll)</li>
<li>WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\WindowsBase\v4.0_4.0.0.0__31bf3856ad364e35\WindowsBase.dll)</li>
<li>System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll)</li>
<li>System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll)</li>
<li>System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll)</li>
<li>PresentationFramework.Aero2, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework.Aero2\v4.0_4.0.0.0__31bf3856ad364e35\PresentationFramework.Aero2.dll)</li>
<li>PresentationFramework-SystemXml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\PresentationFramework-SystemXml\v4.0_4.0.0.0__b77a5c561934e089\PresentationFramework-SystemXml.dll)</li>
<li>System.Windows.Controls.Ribbon, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 (C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Controls.Ribbon\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Controls.Ribbon.dll)</li>
<li>netstandard, Version=2.0.0.0, Culture=neutral, Public</li>
</ul>
<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">If the user sets big enough <code class="notranslate">Space around zones</code> value, the Editor would crash on the next launch.<br>
'Big enough' means that on the grid zone size calculation, its width or height would be a negative value with selected space. It depends on zones count and display resolution.</p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">ℹ</g-emoji> Computer information</h2>
<ul dir="auto">
<li>PowerToys version: master</li>
<li>PowerToy Utility: FancyZones</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>Set some big enough value (1000 in my case).</li>
<li>Click <code class="notranslate">Apply</code>.</li>
<li>Open editor.</li>
</ol>
<h3 dir="auto">✔️ Expected result</h3>
<p dir="auto">Editor is opened.</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">Editor stopped working,</p> | 1 |
<p dir="auto">I couldn't find any examples of this anywhere so here goes.</p>
<p dir="auto">What I have in mind is this:<br>
I have an already fit custom transformer and i want to use it in a pipeline with a model that is not fit to the transformed data yet.</p>
<p dir="auto">The goal is to keep the old fit transformer without refiting it to the new data and only fit the model, all combined in a Pipeline().<br>
Currently, if I try to do that I get and error that the model has to be fit first.</p>
<p dir="auto">The only alternative i can think of is transforming the data, training the model with it and then combining them into a Pipeline(). Or creating the Pipeline() and then fitting them step by step.</p> | <h3 dir="auto">Describe the workflow you want to enable</h3>
<p dir="auto">There is no cohesive way of knowing when a classifier will finish training. What is shown by <code class="notranslate">verbose = True</code> is not consistent across models.</p>
<h3 dir="auto">Describe your proposed solution</h3>
<p dir="auto">I propose wrapping all most/all <code class="notranslate">.fit()</code> functions in tqdm.</p>
<h3 dir="auto">Describe alternatives you've considered, if relevant</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">For some reason, I want to divide all training processes into several subset, and do communication in each of them. As the division may change during Traing, after some research, I want to use dist.new_group(). Howerver, I keep getting error like ConnectionRefused or just stuck.</p>
<h2 dir="auto">To Reproduce</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch
import torch.distributed as dist
import torch.multiprocessing as mp
import os
import time
import argparse
from datetime import timedelta
def main():
os.environ["MASTER_ADDR"] = '127.0.0.1'
os.environ["MASTER_PORT"] = '25500'
mp.spawn(main_worker, nprocs=4)
def main_worker(rank):
print(f'Started process {rank}')
torch.cuda.set_device(rank)
dist.init_process_group('gloo', world_size=4, rank=rank)
for _ in range(10):
test_group(rank)
def test_group(rank):
if rank == 0:
perm = torch.randperm(4)
else:
perm = torch.zeros(4, dtype=torch.int64)
dist.broadcast(perm, 0)
print(f'rank: {rank} get broadcast {perm}')
start = 0
while rank not in perm[start: start + 2]:
start += 2
group = perm.tolist()[start: start + 2]
pg = dist.new_group(group, timeout=timedelta(seconds=30))
print(f'Rank: {rank} Group: {group}')
tensor = torch.randn(4, 5).cuda()
dist.all_reduce(tensor, group=pg)
print(f'Rank:{rank}\tGroup:{group}\tTensor: {tensor}\n')
dist.destroy_process_group(pg)
print(f'Rank: {rank} process group destroyed')
if __name__ == '__main__':
main()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span>
<span class="pl-k">import</span> <span class="pl-s1">torch</span>.<span class="pl-s1">distributed</span> <span class="pl-k">as</span> <span class="pl-s1">dist</span>
<span class="pl-k">import</span> <span class="pl-s1">torch</span>.<span class="pl-s1">multiprocessing</span> <span class="pl-k">as</span> <span class="pl-s1">mp</span>
<span class="pl-k">import</span> <span class="pl-s1">os</span>
<span class="pl-k">import</span> <span class="pl-s1">time</span>
<span class="pl-k">import</span> <span class="pl-s1">argparse</span>
<span class="pl-k">from</span> <span class="pl-s1">datetime</span> <span class="pl-k">import</span> <span class="pl-s1">timedelta</span>
<span class="pl-k">def</span> <span class="pl-en">main</span>():
<span class="pl-s1">os</span>.<span class="pl-s1">environ</span>[<span class="pl-s">"MASTER_ADDR"</span>] <span class="pl-c1">=</span> <span class="pl-s">'127.0.0.1'</span>
<span class="pl-s1">os</span>.<span class="pl-s1">environ</span>[<span class="pl-s">"MASTER_PORT"</span>] <span class="pl-c1">=</span> <span class="pl-s">'25500'</span>
<span class="pl-s1">mp</span>.<span class="pl-en">spawn</span>(<span class="pl-s1">main_worker</span>, <span class="pl-s1">nprocs</span><span class="pl-c1">=</span><span class="pl-c1">4</span>)
<span class="pl-k">def</span> <span class="pl-en">main_worker</span>(<span class="pl-s1">rank</span>):
<span class="pl-en">print</span>(<span class="pl-s">f'Started process <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">rank</span><span class="pl-kos">}</span></span>'</span>)
<span class="pl-s1">torch</span>.<span class="pl-s1">cuda</span>.<span class="pl-en">set_device</span>(<span class="pl-s1">rank</span>)
<span class="pl-s1">dist</span>.<span class="pl-en">init_process_group</span>(<span class="pl-s">'gloo'</span>, <span class="pl-s1">world_size</span><span class="pl-c1">=</span><span class="pl-c1">4</span>, <span class="pl-s1">rank</span><span class="pl-c1">=</span><span class="pl-s1">rank</span>)
<span class="pl-k">for</span> <span class="pl-s1">_</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">10</span>):
<span class="pl-en">test_group</span>(<span class="pl-s1">rank</span>)
<span class="pl-k">def</span> <span class="pl-en">test_group</span>(<span class="pl-s1">rank</span>):
<span class="pl-k">if</span> <span class="pl-s1">rank</span> <span class="pl-c1">==</span> <span class="pl-c1">0</span>:
<span class="pl-s1">perm</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">randperm</span>(<span class="pl-c1">4</span>)
<span class="pl-k">else</span>:
<span class="pl-s1">perm</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">zeros</span>(<span class="pl-c1">4</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">torch</span>.<span class="pl-s1">int64</span>)
<span class="pl-s1">dist</span>.<span class="pl-en">broadcast</span>(<span class="pl-s1">perm</span>, <span class="pl-c1">0</span>)
<span class="pl-en">print</span>(<span class="pl-s">f'rank: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">rank</span><span class="pl-kos">}</span></span> get broadcast <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">perm</span><span class="pl-kos">}</span></span>'</span>)
<span class="pl-s1">start</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span>
<span class="pl-k">while</span> <span class="pl-s1">rank</span> <span class="pl-c1">not</span> <span class="pl-c1">in</span> <span class="pl-s1">perm</span>[<span class="pl-s1">start</span>: <span class="pl-s1">start</span> <span class="pl-c1">+</span> <span class="pl-c1">2</span>]:
<span class="pl-s1">start</span> <span class="pl-c1">+=</span> <span class="pl-c1">2</span>
<span class="pl-s1">group</span> <span class="pl-c1">=</span> <span class="pl-s1">perm</span>.<span class="pl-en">tolist</span>()[<span class="pl-s1">start</span>: <span class="pl-s1">start</span> <span class="pl-c1">+</span> <span class="pl-c1">2</span>]
<span class="pl-s1">pg</span> <span class="pl-c1">=</span> <span class="pl-s1">dist</span>.<span class="pl-en">new_group</span>(<span class="pl-s1">group</span>, <span class="pl-s1">timeout</span><span class="pl-c1">=</span><span class="pl-en">timedelta</span>(<span class="pl-s1">seconds</span><span class="pl-c1">=</span><span class="pl-c1">30</span>))
<span class="pl-en">print</span>(<span class="pl-s">f'Rank: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">rank</span><span class="pl-kos">}</span></span> Group: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">group</span><span class="pl-kos">}</span></span>'</span>)
<span class="pl-s1">tensor</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">randn</span>(<span class="pl-c1">4</span>, <span class="pl-c1">5</span>).<span class="pl-en">cuda</span>()
<span class="pl-s1">dist</span>.<span class="pl-en">all_reduce</span>(<span class="pl-s1">tensor</span>, <span class="pl-s1">group</span><span class="pl-c1">=</span><span class="pl-s1">pg</span>)
<span class="pl-en">print</span>(<span class="pl-s">f'Rank:<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">rank</span><span class="pl-kos">}</span></span><span class="pl-cce">\t</span>Group:<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">group</span><span class="pl-kos">}</span></span><span class="pl-cce">\t</span>Tensor: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">tensor</span><span class="pl-kos">}</span></span><span class="pl-cce">\n</span>'</span>)
<span class="pl-s1">dist</span>.<span class="pl-en">destroy_process_group</span>(<span class="pl-s1">pg</span>)
<span class="pl-en">print</span>(<span class="pl-s">f'Rank: <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">rank</span><span class="pl-kos">}</span></span> process group destroyed'</span>)
<span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">'__main__'</span>:
<span class="pl-en">main</span>()</pre></div>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>run the script above witch Gloo</li>
</ol>
<p dir="auto">At most time, I will get a <strong>connection refused</strong> error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Started process 2
Started process 0
Started process 1
Started process 3
rank: 2 get broadcast tensor([3, 1, 0, 2])
rank: 1 get broadcast tensor([3, 1, 0, 2])
rank: 0 get broadcast tensor([3, 1, 0, 2])
rank: 3 get broadcast tensor([3, 1, 0, 2])
Rank: 2 Group: [0, 2]
Rank: 0 Group: [0, 2]
Traceback (most recent call last):
File "group_test.py", line 44, in <module>
main()
File "group_test.py", line 14, in main
mp.spawn(main_worker, nprocs=4)
File "/data/users/yangx/miniconda3/envs/multiRing/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 171, in spawn
while not spawn_context.join():
File "/data/users/yangx/miniconda3/envs/multiRing/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 118, in join
raise Exception(msg)
Exception:
-- Process 3 terminated with the following error:
Traceback (most recent call last):
File "/data/users/<user>/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 19, in _wrap
fn(i, *args)
File "/data/users/<user>/group_test.py", line 21, in main_worker
test_group(rank)
File "/data/users/<user>/group_test.py", line 28, in test_group
pg = dist.new_group(group, timeout=timedelta(seconds=30))
File "/data/users/<user>/lib/python3.7/site-packages/torch/distributed/distributed_c10d.py", line 1434, in new_group
timeout=timeout)
File "/data/users/<user>/lib/python3.7/site-packages/torch/distributed/distributed_c10d.py", line 484, in _new_process_group_helper
timeout=timeout)
RuntimeError: [/opt/conda/conda-bld/pytorch_1565272271120/work/third_party/gloo/gloo/transport/tcp/pair.cc:761] connect [127.0.1.1]:23170: Connection refused"><pre class="notranslate"><code class="notranslate">Started process 2
Started process 0
Started process 1
Started process 3
rank: 2 get broadcast tensor([3, 1, 0, 2])
rank: 1 get broadcast tensor([3, 1, 0, 2])
rank: 0 get broadcast tensor([3, 1, 0, 2])
rank: 3 get broadcast tensor([3, 1, 0, 2])
Rank: 2 Group: [0, 2]
Rank: 0 Group: [0, 2]
Traceback (most recent call last):
File "group_test.py", line 44, in <module>
main()
File "group_test.py", line 14, in main
mp.spawn(main_worker, nprocs=4)
File "/data/users/yangx/miniconda3/envs/multiRing/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 171, in spawn
while not spawn_context.join():
File "/data/users/yangx/miniconda3/envs/multiRing/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 118, in join
raise Exception(msg)
Exception:
-- Process 3 terminated with the following error:
Traceback (most recent call last):
File "/data/users/<user>/lib/python3.7/site-packages/torch/multiprocessing/spawn.py", line 19, in _wrap
fn(i, *args)
File "/data/users/<user>/group_test.py", line 21, in main_worker
test_group(rank)
File "/data/users/<user>/group_test.py", line 28, in test_group
pg = dist.new_group(group, timeout=timedelta(seconds=30))
File "/data/users/<user>/lib/python3.7/site-packages/torch/distributed/distributed_c10d.py", line 1434, in new_group
timeout=timeout)
File "/data/users/<user>/lib/python3.7/site-packages/torch/distributed/distributed_c10d.py", line 484, in _new_process_group_helper
timeout=timeout)
RuntimeError: [/opt/conda/conda-bld/pytorch_1565272271120/work/third_party/gloo/gloo/transport/tcp/pair.cc:761] connect [127.0.1.1]:23170: Connection refused
</code></pre></div>
<p dir="auto">But sometimes, I can get some result at first(but NOT correct!), then the code <strong>just stuck</strong>, and I have to Ctrl-C</p>
<p dir="auto">The really strange things is that Rank 1 and 3 should in different groups, but they act like in the same(the all-reduce result is the same).</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Started process 0
Started process 1
Started process 3
Started process 2
rank: 2 get broadcast tensor([0, 3, 2, 1])
rank: 1 get broadcast tensor([0, 3, 2, 1])
rank: 3 get broadcast tensor([0, 3, 2, 1])
rank: 0 get broadcast tensor([0, 3, 2, 1])
Rank: 3 Group: [0, 3]
Rank: 1 Group: [2, 1]
Rank:1 Group:[2, 1] Tensor: tensor([[-0.3007, -1.8406, 0.1597, -0.9097, 1.7759],
[-0.7950, 1.5906, 0.4027, 0.8949, 0.2737],
[ 1.4671, 1.3343, 0.2170, 1.2460, 0.6926],
[-0.1553, -1.6191, 0.9762, 1.9962, -1.2016]], device='cuda:1')
Rank: 1 process group destroyed
Rank:3 Group:[0, 3] Tensor: tensor([[-0.3007, -1.8406, 0.1597, -0.9097, 1.7759],
[-0.7950, 1.5906, 0.4027, 0.8949, 0.2737],
[ 1.4671, 1.3343, 0.2170, 1.2460, 0.6926],
[-0.1553, -1.6191, 0.9762, 1.9962, -1.2016]], device='cuda:3')
Rank: 3 process group destroyed"><pre class="notranslate"><code class="notranslate">Started process 0
Started process 1
Started process 3
Started process 2
rank: 2 get broadcast tensor([0, 3, 2, 1])
rank: 1 get broadcast tensor([0, 3, 2, 1])
rank: 3 get broadcast tensor([0, 3, 2, 1])
rank: 0 get broadcast tensor([0, 3, 2, 1])
Rank: 3 Group: [0, 3]
Rank: 1 Group: [2, 1]
Rank:1 Group:[2, 1] Tensor: tensor([[-0.3007, -1.8406, 0.1597, -0.9097, 1.7759],
[-0.7950, 1.5906, 0.4027, 0.8949, 0.2737],
[ 1.4671, 1.3343, 0.2170, 1.2460, 0.6926],
[-0.1553, -1.6191, 0.9762, 1.9962, -1.2016]], device='cuda:1')
Rank: 1 process group destroyed
Rank:3 Group:[0, 3] Tensor: tensor([[-0.3007, -1.8406, 0.1597, -0.9097, 1.7759],
[-0.7950, 1.5906, 0.4027, 0.8949, 0.2737],
[ 1.4671, 1.3343, 0.2170, 1.2460, 0.6926],
[-0.1553, -1.6191, 0.9762, 1.9962, -1.2016]], device='cuda:3')
Rank: 3 process group destroyed
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">The group can be established and destroyed during running, and the tensor can be correct sent in each subset.</p>
<h2 dir="auto">Environment</h2>
<p dir="auto">Please copy and paste the output from our<br>
<a href="https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py" rel="nofollow">environment collection script</a><br>
(or fill out the checklist below manually).</p>
<p dir="auto">Collecting environment information...<br>
PyTorch version: 1.2.0<br>
Is debug build: No<br>
CUDA used to build PyTorch: 10.0.130</p>
<p dir="auto">OS: Ubuntu 16.04.6 LTS<br>
GCC version: (Ubuntu 4.9.4-2ubuntu1~14.04.1) 4.9.4<br>
CMake version: version 3.5.1</p>
<p dir="auto">Python version: 3.7<br>
Is CUDA available: Yes<br>
CUDA runtime version: 10.1.168<br>
GPU models and configuration:<br>
GPU 0: Tesla K80<br>
GPU 1: Tesla K80<br>
GPU 2: Tesla K80<br>
GPU 3: Tesla K80<br>
GPU 4: Tesla K80<br>
GPU 5: Tesla K80<br>
GPU 6: Tesla K80<br>
GPU 7: Tesla K80</p>
<p dir="auto">Nvidia driver version: 418.67<br>
cuDNN version: Probably one of the following:<br>
/usr/local/cuda-9.0/targets/x86_64-linux/lib/libcudnn.so.7.4.1<br>
/usr/local/lib/libcudnn.so.6</p>
<p dir="auto">Versions of relevant libraries:<br>
[pip3] numpy==1.16.3<br>
[pip3] torch==1.1.0<br>
[pip3] torchvision==0.3.0<br>
[conda] _tflow_select 2.3.0 mkl <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] blas 1.0 mkl <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] mkl 2018.0.3 1 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] mkl_fft 1.0.6 py37h7dd41cf_0 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] mkl_random 1.0.1 py37h4414c95_1 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] pytorch 1.2.0 py3.7_cuda10.0.130_cudnn7.6.2_0 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch</a><br>
[conda] pytorch-transformers 1.0.0 pypi_0 pypi<br>
[conda] tensorflow 1.13.1 mkl_py37h54b294f_0 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] tensorflow-base 1.13.1 mkl_py37h7ce6ba3_0 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main</a><br>
[conda] torchtext 0.4.0 pyhb384e40_1 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch</a><br>
[conda] torchvision 0.4.0 py37_cu100 <a href="https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch" rel="nofollow">https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch</a><br>
You can get the script and run it with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py"><pre class="notranslate"><code class="notranslate">wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
</code></pre></div>
<h2 dir="auto">Additional context</h2>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pietern/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pietern">@pietern</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mrshenli/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mrshenli">@mrshenli</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pritamdamania87/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pritamdamania87">@pritamdamania87</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zhaojuanmao/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zhaojuanmao">@zhaojuanmao</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/satgera/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/satgera">@satgera</a></p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">Seems that CUDA10.0 could build pytorch objects, but during linkage phase. it failed. could you help to check reason, or give me some hints for solving with it? now my mac with nvidia GPU 1080i can't use torch with GPU.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>Set USE_DISTRIBUTED=OFF in CMakeLists.txt</li>
<li>MACOSX_DEPLOYMENT_TARGET=10.13 CC=clang CXX=clang++ python setup.py bdist_wheel</li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">torch wheel should be generated with GPU supported (0.4 torch wheel could be generated in the same way), but failed with following error</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
+ [[ ON == \O\N ]]
++ pwd
++ cd ..
++ pwd
+ echo 'Copying Caffe2 proto files from /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto to /Volumes/llv24macOS/git_projects/ml/pytorch/caffe2/proto'
Copying Caffe2 proto files from /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto to /Volumes/llv24macOS/git_projects/ml/pytorch/caffe2/proto
++ find caffe2/proto
+ echo 'All the files in caffe2/proto are caffe2/proto
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/__init__.py
caffe2/proto/prof_dag.pb.cc
caffe2/proto/Makefile
caffe2/proto/hsm.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/CTestTestfile.cmake
caffe2/proto/prof_dag.pb.h
caffe2/proto/hsm.pb.h
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/predictor_consts.pb.h
caffe2/proto/torch.pb.cc
caffe2/proto/torch.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2.pb.h
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm_pb2.py
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py'
All the files in caffe2/proto are caffe2/proto
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/__init__.py
caffe2/proto/prof_dag.pb.cc
caffe2/proto/Makefile
caffe2/proto/hsm.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/CTestTestfile.cmake
caffe2/proto/prof_dag.pb.h
caffe2/proto/hsm.pb.h
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/predictor_consts.pb.h
caffe2/proto/torch.pb.cc
caffe2/proto/torch.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2.pb.h
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm_pb2.py
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py
++ pwd
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto/__init__.py /Volumes/llv24macOS/git_projects/ml/pytorch/build/../caffe2/proto/
cp: /Volumes/llv24macOS/git_projects/ml/pytorch/build/../caffe2/proto/__init__.py and /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto/__init__.py are identical (not copied).
Failed to run 'bash ../tools/build_pytorch_libs.sh --use-cuda --use-nnpack caffe2 libshm THD'"><pre class="notranslate">error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool: for: /Volumes/llv24macOS/git_projects/ml/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option <span class="pl-s"><span class="pl-pds">"</span>-add_rpath /usr/local/cuda/lib<span class="pl-pds">"</span></span> would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
+ [[ ON <span class="pl-k">==</span> <span class="pl-cce">\O\N</span> ]]
++ <span class="pl-c1">pwd</span>
++ <span class="pl-c1">cd</span> ..
++ <span class="pl-c1">pwd</span>
+ <span class="pl-c1">echo</span> <span class="pl-s"><span class="pl-pds">'</span>Copying Caffe2 proto files from /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto to /Volumes/llv24macOS/git_projects/ml/pytorch/caffe2/proto<span class="pl-pds">'</span></span>
Copying Caffe2 proto files from /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto to /Volumes/llv24macOS/git_projects/ml/pytorch/caffe2/proto
++ find caffe2/proto
+ <span class="pl-c1">echo</span> <span class="pl-s"><span class="pl-pds">'</span>All the files in caffe2/proto are caffe2/proto</span>
<span class="pl-s">caffe2/proto/CMakeFiles</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o</span>
<span class="pl-s">caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake</span>
<span class="pl-s">caffe2/proto/CMakeFiles/progress.marks</span>
<span class="pl-s">caffe2/proto/__init__.py</span>
<span class="pl-s">caffe2/proto/prof_dag.pb.cc</span>
<span class="pl-s">caffe2/proto/Makefile</span>
<span class="pl-s">caffe2/proto/hsm.pb.cc</span>
<span class="pl-s">caffe2/proto/cmake_install.cmake</span>
<span class="pl-s">caffe2/proto/CTestTestfile.cmake</span>
<span class="pl-s">caffe2/proto/prof_dag.pb.h</span>
<span class="pl-s">caffe2/proto/hsm.pb.h</span>
<span class="pl-s">caffe2/proto/caffe2_legacy.pb.cc</span>
<span class="pl-s">caffe2/proto/predictor_consts.pb.cc</span>
<span class="pl-s">caffe2/proto/caffe2_legacy.pb.h</span>
<span class="pl-s">caffe2/proto/predictor_consts.pb.h</span>
<span class="pl-s">caffe2/proto/torch.pb.cc</span>
<span class="pl-s">caffe2/proto/torch.pb.h</span>
<span class="pl-s">caffe2/proto/metanet.pb.cc</span>
<span class="pl-s">caffe2/proto/metanet.pb.h</span>
<span class="pl-s">caffe2/proto/caffe2.pb.cc</span>
<span class="pl-s">caffe2/proto/caffe2.pb.h</span>
<span class="pl-s">caffe2/proto/prof_dag_pb2.py</span>
<span class="pl-s">caffe2/proto/hsm_pb2.py</span>
<span class="pl-s">caffe2/proto/metanet_pb2.py</span>
<span class="pl-s">caffe2/proto/caffe2_legacy_pb2.py</span>
<span class="pl-s">caffe2/proto/predictor_consts_pb2.py</span>
<span class="pl-s">caffe2/proto/torch_pb2.py</span>
<span class="pl-s">caffe2/proto/caffe2_pb2.py<span class="pl-pds">'</span></span>
All the files <span class="pl-k">in</span> caffe2/proto are caffe2/proto
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/__init__.py
caffe2/proto/prof_dag.pb.cc
caffe2/proto/Makefile
caffe2/proto/hsm.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/CTestTestfile.cmake
caffe2/proto/prof_dag.pb.h
caffe2/proto/hsm.pb.h
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/predictor_consts.pb.h
caffe2/proto/torch.pb.cc
caffe2/proto/torch.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2.pb.h
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm_pb2.py
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py
++ <span class="pl-c1">pwd</span>
+ <span class="pl-k">for</span> <span class="pl-smi">proto_file</span> <span class="pl-k">in</span> <span class="pl-s"><span class="pl-pds">'</span>$(pwd)/caffe2/proto/*.py<span class="pl-pds">'</span></span>
++ <span class="pl-c1">pwd</span>
+ cp /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto/__init__.py /Volumes/llv24macOS/git_projects/ml/pytorch/build/../caffe2/proto/
cp: /Volumes/llv24macOS/git_projects/ml/pytorch/build/../caffe2/proto/__init__.py and /Volumes/llv24macOS/git_projects/ml/pytorch/build/caffe2/proto/__init__.py are identical (not copied).
Failed to run <span class="pl-s"><span class="pl-pds">'</span>bash ../tools/build_pytorch_libs.sh --use-cuda --use-nnpack caffe2 libshm THD<span class="pl-pds">'</span></span></pre></div>
<h2 dir="auto">Environment</h2>
<p dir="auto">$ python ~/Downloads/collect_env.py<br>
Collecting environment information...<br>
PyTorch version: 1.0.0.dev20181016<br>
Is debug build: No<br>
CUDA used to build PyTorch: Could not collect</p>
<p dir="auto">OS: Mac OSX 10.13.6<br>
GCC version: Could not collect<br>
CMake version: version 3.10.1</p>
<p dir="auto">Python version: 3.6<br>
Is CUDA available: No<br>
CUDA runtime version: 10.0.130<br>
GPU models and configuration: Could not collect<br>
Nvidia driver version: Could not collect<br>
cuDNN version: Probably one of the following:<br>
/usr/local/cuda/lib/libcudnn.7.dylib<br>
/usr/local/cuda/lib/libcudnn.dylib<br>
/usr/local/cuda/lib/libcudnn_static.a</p>
<p dir="auto">Versions of relevant libraries:<br>
[pip] Could not collect<br>
[conda] pytorch-nightly 1.0.0.dev20181016 py3.6_0 pytorch</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/malfet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malfet">@malfet</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/seemethere/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/seemethere">@seemethere</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/walterddr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/walterddr">@walterddr</a></p> | 0 |
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/8270/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/8270/</a></p>
<p dir="auto">Failed: [k8s.io] Dynamic provisioning [k8s.io] DynamicProvisioner should create and delete persistent volumes {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:123
Jun 1 22:01:48.966: Couldn't delete ns "e2e-tests-volume-provisioning-9pmxr": the server does not allow access to the requested resource (delete namespaces e2e-tests-volume-provisioning-9pmxr)"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:123
Jun 1 22:01:48.966: Couldn't delete ns "e2e-tests-volume-provisioning-9pmxr": the server does not allow access to the requested resource (delete namespaces e2e-tests-volume-provisioning-9pmxr)
</code></pre></div> | <p dir="auto">HPA wants to be GA in 1.2.</p>
<p dir="auto">Let's collect graduation requirements here.</p> | 0 |
<p dir="auto">by <strong>andrewdevplu</strong>:</p>
<pre class="notranslate">What steps will reproduce the problem?
---------------------------------------------------------------
1.Create a http.Client object, and Get() a web page containing javascript. The specific
page I am using is <a href="http://www.stedwards.edu" rel="nofollow">http://www.stedwards.edu</a>
2.Create a html.Tokenizer, walk through the html with Tokenizer.Next(), print out errors
when html.ErrorToken is found.
What is the expected output?
---------------------------------------------------------------
I expect the html.Tokenizer to skip javascript (or at least getting walk through the
javascript without blowing up) when calling the Next() function.
What do you see instead?
------------------------------------------------
The error produced is:
html: TODO(nigeltao): handle malformed tags
The javascript to blame is:
<script type="text/javascript" language="javascript">
if ((screen.width<1025) && (screen.height<769))
{
The less than symbol in "screen.width<", is causing the tokenizer to blow
up.
Which compiler are you using (5g, 6g, 8g, gccgo)?
-------------------------------------------------
6g
Which operating system are you using?
------------------------------------------------
debian 6
Which revision are you using? (hg identify)
----------------------------------------------------
c5c62aeb6267 release/release.r56/weekly.2011-03-07.1
Please provide any additional information below.
------------------------------------------------
Should html.Tokenizer really be trying to parse javascript? I personally think anything
between <script>...</script> should be skipped.
I have attached the program I am using (just in case it is needed). Please let me know
if there is anything I can do to help. I am interested in becoming more part of this
project (I have even considered attempting to fix the problem myself). Thanks.</pre> | <p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p>
<pre class="notranslate"><a href="http://golang.org/doc/devel/release.html" rel="nofollow">http://golang.org/doc/devel/release.html</a> does not yet include go 1.1.</pre> | 0 |
<p dir="auto">I have 2 tabs and I want to hide the AppBar when I scroll on either of them. The idea is to achieve the behavior with the floating option on SliverAppBar, but it doesn't work with the TabBarView. Instead of appearing again as soon as you start scrolling up, it only appears when you get to the top.</p>
<p dir="auto">Here's the snippet.</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Map<String, MaterialColor> pages = {
'blue': Colors.lightBlue,
'green': Colors.lightGreen
};
Widget build(BuildContext context) {
return new DefaultTabController(
length: pages.length,
child: new Scaffold(
body: new NestedScrollView(
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return <Widget>[
SliverAppBar(
title: const Text('Tabs and scrolling'),
floating: true,
expandedHeight: 150.0,
forceElevated: innerBoxIsScrolled,
bottom: new TabBar(
tabs: pages.keys.map(
(String label) => new Tab(text: label),
).toList(),
),
),
];
},
body: new TabBarView(
children: pages.keys.map((String label) {
return new SafeArea(
top: false,
bottom: false,
child: new Builder(
builder: (BuildContext context) {
return new CustomScrollView(
key: new PageStorageKey<String>(label),
slivers: <Widget>[
new SliverPadding(
padding: const EdgeInsets.symmetric(
vertical: 8.0,
horizontal: 16.0,
),
sliver: new SliverFixedExtentList(
itemExtent: 100.0,
delegate: new SliverChildBuilderDelegate(
(BuildContext context, int index) {
return new Padding(
padding: const EdgeInsets.symmetric(
vertical: 8.0,
),
child: Container(
alignment: Alignment.center,
color: pages[label][100 * (index % 9)],
child: new Text('list item $index'),
)
);
},
childCount: 100,
),
),
),
],
);
},
),
);
}).toList(),
),
),
),
);
}
"><pre class="notranslate"><span class="pl-c1">Map</span><<span class="pl-c1">String</span>, <span class="pl-c1">MaterialColor</span>> pages <span class="pl-k">=</span> {
<span class="pl-s">'blue'</span><span class="pl-k">:</span> <span class="pl-c1">Colors</span>.lightBlue,
<span class="pl-s">'green'</span><span class="pl-k">:</span> <span class="pl-c1">Colors</span>.lightGreen
};
<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">DefaultTabController</span>(
length<span class="pl-k">:</span> pages.length,
child<span class="pl-k">:</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">NestedScrollView</span>(
headerSliverBuilder<span class="pl-k">:</span> (<span class="pl-c1">BuildContext</span> context, <span class="pl-c1">bool</span> innerBoxIsScrolled) {
<span class="pl-k">return</span> <span class="pl-k"><</span><span class="pl-c1">Widget</span><span class="pl-k">></span>[
<span class="pl-c1">SliverAppBar</span>(
title<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Tabs and scrolling'</span>),
floating<span class="pl-k">:</span> <span class="pl-c1">true</span>,
expandedHeight<span class="pl-k">:</span> <span class="pl-c1">150.0</span>,
forceElevated<span class="pl-k">:</span> innerBoxIsScrolled,
bottom<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TabBar</span>(
tabs<span class="pl-k">:</span> pages.keys.<span class="pl-en">map</span>(
(<span class="pl-c1">String</span> label) <span class="pl-k">=></span> <span class="pl-k">new</span> <span class="pl-c1">Tab</span>(text<span class="pl-k">:</span> label),
).<span class="pl-en">toList</span>(),
),
),
];
},
body<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TabBarView</span>(
children<span class="pl-k">:</span> pages.keys.<span class="pl-en">map</span>((<span class="pl-c1">String</span> label) {
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">SafeArea</span>(
top<span class="pl-k">:</span> <span class="pl-c1">false</span>,
bottom<span class="pl-k">:</span> <span class="pl-c1">false</span>,
child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Builder</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">CustomScrollView</span>(
key<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">PageStorageKey</span><<span class="pl-c1">String</span>>(label),
slivers<span class="pl-k">:</span> <span class="pl-k"><</span><span class="pl-c1">Widget</span><span class="pl-k">></span>[
<span class="pl-k">new</span> <span class="pl-c1">SliverPadding</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>(
vertical<span class="pl-k">:</span> <span class="pl-c1">8.0</span>,
horizontal<span class="pl-k">:</span> <span class="pl-c1">16.0</span>,
),
sliver<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">SliverFixedExtentList</span>(
itemExtent<span class="pl-k">:</span> <span class="pl-c1">100.0</span>,
delegate<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">SliverChildBuilderDelegate</span>(
(<span class="pl-c1">BuildContext</span> context, <span class="pl-c1">int</span> index) {
<span class="pl-k">return</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>(
vertical<span class="pl-k">:</span> <span class="pl-c1">8.0</span>,
),
child<span class="pl-k">:</span> <span class="pl-c1">Container</span>(
alignment<span class="pl-k">:</span> <span class="pl-c1">Alignment</span>.center,
color<span class="pl-k">:</span> pages[label][<span class="pl-c1">100</span> <span class="pl-k">*</span> (index <span class="pl-k">%</span> <span class="pl-c1">9</span>)],
child<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'list item $<span class="pl-v">index</span>'</span>),
)
);
},
childCount<span class="pl-k">:</span> <span class="pl-c1">100</span>,
),
),
),
],
);
},
),
);
}).<span class="pl-en">toList</span>(),
),
),
),
);
}
</pre></div>
<p dir="auto">Here is the output of flutter doctor:</p>
<blockquote>
<p dir="auto">Doctor summary (to see all details, run flutter doctor -v):<br>
[✓] Flutter (Channel master, v0.9.6-pre.35, on Linux, locale en_US.UTF-8)<br>
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)<br>
[✓] Android Studio (version 3.2)<br>
[✓] Connected device (1 available)</p>
</blockquote> | <p dir="auto">b/136489010</p>
<p dir="auto">I want to make a floating app bar that's shared across multiple TabBarViews, so I used a NestedScrollView. I would expect the app bar to appear whenever I scroll up at any point of the page but it does not seem to do so?</p>
<p dir="auto"><strong>main.dart</strong></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() {
Widget getPage(){
return new ListView.builder(
itemBuilder: ((context, index){
return new ListTile(
title: new Text('Item $index')
);
}),
);
}
runApp(
new MaterialApp(
home: new DefaultTabController(
length: 2,
child: new Scaffold(
body: new NestedScrollView(
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {
return <Widget>[
new SliverAppBar(
floating: true,
bottom: new TabBar(
tabs: [
new Tab(text: 'tab1'),
new Tab(text: 'tab2'),
],
),
),
];
},
body: new TabBarView(
children: [
getPage(),
getPage(),
],
),
),
),
),
),
);
}"><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-c1">Widget</span> <span class="pl-en">getPage</span>(){
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">ListView</span>.<span class="pl-en">builder</span>(
itemBuilder<span class="pl-k">:</span> ((context, index){
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-c1">ListTile</span>(
title<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">Text</span>(<span class="pl-s">'Item $<span class="pl-v">index</span>'</span>)
);
}),
);
}
<span class="pl-en">runApp</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">DefaultTabController</span>(
length<span class="pl-k">:</span> <span class="pl-c1">2</span>,
child<span class="pl-k">:</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">NestedScrollView</span>(
headerSliverBuilder<span class="pl-k">:</span> (<span class="pl-c1">BuildContext</span> context, <span class="pl-c1">bool</span> innerBoxIsScrolled) {
<span class="pl-k">return</span> <span class="pl-k"><</span><span class="pl-c1">Widget</span><span class="pl-k">></span>[
<span class="pl-k">new</span> <span class="pl-c1">SliverAppBar</span>(
floating<span class="pl-k">:</span> <span class="pl-c1">true</span>,
bottom<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TabBar</span>(
tabs<span class="pl-k">:</span> [
<span class="pl-k">new</span> <span class="pl-c1">Tab</span>(text<span class="pl-k">:</span> <span class="pl-s">'tab1'</span>),
<span class="pl-k">new</span> <span class="pl-c1">Tab</span>(text<span class="pl-k">:</span> <span class="pl-s">'tab2'</span>),
],
),
),
];
},
body<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">TabBarView</span>(
children<span class="pl-k">:</span> [
<span class="pl-en">getPage</span>(),
<span class="pl-en">getPage</span>(),
],
),
),
),
),
),
);
}</pre></div>
<p dir="auto">Strangely enough if "snap: true" is set for the SliverAppBar the desired effect is achieved. But I don't want it to snap.</p>
<p dir="auto">Similar issue here: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="242876778" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/11222" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/11222/hovercard" href="https://github.com/flutter/flutter/issues/11222">#11222</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel beta, v0.3.2, on Microsoft Windows [Version 10.0.16299.431], locale en-GB)
[√] Android toolchain - develop for Android devices (Android SDK 26.0.3)
[X] Android Studio (not installed)
[√] VS Code, 64-bit edition (version 1.23.0)
[!] Connected devices
! No devices available
! Doctor found issues in 2 categories."><pre class="notranslate"><code class="notranslate">Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel beta, v0.3.2, on Microsoft Windows [Version 10.0.16299.431], locale en-GB)
[√] Android toolchain - develop for Android devices (Android SDK 26.0.3)
[X] Android Studio (not installed)
[√] VS Code, 64-bit edition (version 1.23.0)
[!] Connected devices
! No devices available
! Doctor found issues in 2 categories.
</code></pre></div> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.4.0</li>
<li>Operating System / Platform =>Windows 10</li>
<li>Compiler => Visual Studio 10</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">vector subscript out of range during trainAuto with default parameters</p>
<p dir="auto">This originates here: svm.cpp line 1448</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" //check that while cross-validation there were the samples from all the classes
if( class_ranges[class_count] <= 0 )
CV_Error( CV_StsBadArg, "While cross-validation one or more of the classes have "
"been fell out of the sample. Try to reduce <Params::k_fold>" );"><pre class="notranslate"><code class="notranslate"> //check that while cross-validation there were the samples from all the classes
if( class_ranges[class_count] <= 0 )
CV_Error( CV_StsBadArg, "While cross-validation one or more of the classes have "
"been fell out of the sample. Try to reduce <Params::k_fold>" );
</code></pre></div>
<p dir="auto">class_ranges have a size of 5 and class_count is 5</p>
<p dir="auto">I am aware that in the example I am training the svm with an inadequate and small sample set, and that with small sample set or with underrepresented classes the kfold should be adjusted.</p>
<h5 dir="auto">Steps to reproduce</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" cv::Mat trainDataProjected;
cv::Mat trainLabels;
{
cv::FileStorage file("trainDataProjected.xml", cv::FileStorage::READ);
file["trainDataProjected"] >> trainDataProjected;
}
{
cv::FileStorage file("trainLabels.xml", cv::FileStorage::READ);
file["trainLabels"] >> trainLabels;
}
auto svm = cv::ml::SVM::create();
svm->setType(cv::ml::SVM::NU_SVC);
svm->setKernel(cv::ml::SVM::RBF);
svm->setNu(0.5);
svm->trainAuto(trainDataProjected,cv::ml::ROW_SAMPLE,trainLabels);"><pre class="notranslate"><code class="notranslate"> cv::Mat trainDataProjected;
cv::Mat trainLabels;
{
cv::FileStorage file("trainDataProjected.xml", cv::FileStorage::READ);
file["trainDataProjected"] >> trainDataProjected;
}
{
cv::FileStorage file("trainLabels.xml", cv::FileStorage::READ);
file["trainLabels"] >> trainLabels;
}
auto svm = cv::ml::SVM::create();
svm->setType(cv::ml::SVM::NU_SVC);
svm->setKernel(cv::ml::SVM::RBF);
svm->setNu(0.5);
svm->trainAuto(trainDataProjected,cv::ml::ROW_SAMPLE,trainLabels);
</code></pre></div>
<p dir="auto">Data:<br>
<a href="https://github.com/opencv/opencv/files/2495186/tmp.zip">tmp.zip</a></p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji> 4.1.2</li>
<li>Operating System / Platform => <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji> macOS 10.15</li>
<li>Compiler => ❔ CMake</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Build error when compiling gfluidbuffer.cpp</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(int, int, int, int, cv::gapi::fluid::BorderOpt)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:350:16: error: cannot bind 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithBorder>' lvalue to 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithBorder>&&'
return storage;
^
In file included from /usr/local/include/c++/4.9.4/memory:81:0,
from /opencv/modules/core/include/opencv2/core/cvstd_wrapper.hpp:11,
from /opencv/modules/core/include/opencv2/core/cvstd.hpp:81,
from /opencv/modules/core/include/opencv2/core/base.hpp:58,
from /opencv/modules/core/include/opencv2/core.hpp:54,
from /opencv/modules/gapi/src/precomp.hpp:12,
from /opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:8:
/usr/local/include/c++/4.9.4/bits/unique_ptr.h:220:2: note: initializing argument 1 of 'std::unique_ptr<_Tp, _Dp>::unique_ptr(std::unique_ptr<_Up, _Ep>&&) [with _Up = cv::gapi::fluid::BufferStorageWithBorder; _Ep = std::default_delete<cv::gapi::fluid::BufferStorageWithBorder>; <template-parameter-2-3> = void; _Tp = cv::gapi::fluid::BufferStorage; _Dp = std::default_delete<cv::gapi::fluid::BufferStorage>]'
unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:355:12: error: cannot bind 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>' lvalue to 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>&&'
return storage;
^
In file included from /usr/local/include/c++/4.9.4/memory:81:0,
from /opencv/modules/core/include/opencv2/core/cvstd_wrapper.hpp:11,
from /opencv/modules/core/include/opencv2/core/cvstd.hpp:81,
from /opencv/modules/core/include/opencv2/core/base.hpp:58,
from /opencv/modules/core/include/opencv2/core.hpp:54,
from /opencv/modules/gapi/src/precomp.hpp:12,
from /opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:8:
/usr/local/include/c++/4.9.4/bits/unique_ptr.h:220:2: note: initializing argument 1 of 'std::unique_ptr<_Tp, _Dp>::unique_ptr(std::unique_ptr<_Up, _Ep>&&) [with _Up = cv::gapi::fluid::BufferStorageWithoutBorder; _Ep = std::default_delete<cv::gapi::fluid::BufferStorageWithoutBorder>; <template-parameter-2-3> = void; _Tp = cv::gapi::fluid::BufferStorage; _Dp = std::default_delete<cv::gapi::fluid::BufferStorage>]'
unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(const cv::gapi::own::Mat&, cv::gapi::own::Rect)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:363:12: error: cannot bind 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>' lvalue to 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>&&'
return storage;
^
In file included from /usr/local/include/c++/4.9.4/memory:81:0,
from /opencv/modules/core/include/opencv2/core/cvstd_wrapper.hpp:11,
from /opencv/modules/core/include/opencv2/core/cvstd.hpp:81,
from /opencv/modules/core/include/opencv2/core/base.hpp:58,
from /opencv/modules/core/include/opencv2/core.hpp:54,
from /opencv/modules/gapi/src/precomp.hpp:12,
from /opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:8:
/usr/local/include/c++/4.9.4/bits/unique_ptr.h:220:2: note: initializing argument 1 of 'std::unique_ptr<_Tp, _Dp>::unique_ptr(std::unique_ptr<_Up, _Ep>&&) [with _Up = cv::gapi::fluid::BufferStorageWithoutBorder; _Ep = std::default_delete<cv::gapi::fluid::BufferStorageWithoutBorder>; <template-parameter-2-3> = void; _Tp = cv::gapi::fluid::BufferStorage; _Dp = std::default_delete<cv::gapi::fluid::BufferStorage>]'
unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(int, int, int, int, cv::gapi::fluid::BorderOpt)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:356:1: error: control reaches end of non-void function [-Werror=return-type]
}
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(const cv::gapi::own::Mat&, cv::gapi::own::Rect)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:364:1: error: control reaches end of non-void function [-Werror=return-type]
}
^
cc1plus: some warnings being treated as errors"><pre class="notranslate"><code class="notranslate">/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(int, int, int, int, cv::gapi::fluid::BorderOpt)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:350:16: error: cannot bind 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithBorder>' lvalue to 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithBorder>&&'
return storage;
^
In file included from /usr/local/include/c++/4.9.4/memory:81:0,
from /opencv/modules/core/include/opencv2/core/cvstd_wrapper.hpp:11,
from /opencv/modules/core/include/opencv2/core/cvstd.hpp:81,
from /opencv/modules/core/include/opencv2/core/base.hpp:58,
from /opencv/modules/core/include/opencv2/core.hpp:54,
from /opencv/modules/gapi/src/precomp.hpp:12,
from /opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:8:
/usr/local/include/c++/4.9.4/bits/unique_ptr.h:220:2: note: initializing argument 1 of 'std::unique_ptr<_Tp, _Dp>::unique_ptr(std::unique_ptr<_Up, _Ep>&&) [with _Up = cv::gapi::fluid::BufferStorageWithBorder; _Ep = std::default_delete<cv::gapi::fluid::BufferStorageWithBorder>; <template-parameter-2-3> = void; _Tp = cv::gapi::fluid::BufferStorage; _Dp = std::default_delete<cv::gapi::fluid::BufferStorage>]'
unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:355:12: error: cannot bind 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>' lvalue to 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>&&'
return storage;
^
In file included from /usr/local/include/c++/4.9.4/memory:81:0,
from /opencv/modules/core/include/opencv2/core/cvstd_wrapper.hpp:11,
from /opencv/modules/core/include/opencv2/core/cvstd.hpp:81,
from /opencv/modules/core/include/opencv2/core/base.hpp:58,
from /opencv/modules/core/include/opencv2/core.hpp:54,
from /opencv/modules/gapi/src/precomp.hpp:12,
from /opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:8:
/usr/local/include/c++/4.9.4/bits/unique_ptr.h:220:2: note: initializing argument 1 of 'std::unique_ptr<_Tp, _Dp>::unique_ptr(std::unique_ptr<_Up, _Ep>&&) [with _Up = cv::gapi::fluid::BufferStorageWithoutBorder; _Ep = std::default_delete<cv::gapi::fluid::BufferStorageWithoutBorder>; <template-parameter-2-3> = void; _Tp = cv::gapi::fluid::BufferStorage; _Dp = std::default_delete<cv::gapi::fluid::BufferStorage>]'
unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(const cv::gapi::own::Mat&, cv::gapi::own::Rect)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:363:12: error: cannot bind 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>' lvalue to 'std::unique_ptr<cv::gapi::fluid::BufferStorageWithoutBorder>&&'
return storage;
^
In file included from /usr/local/include/c++/4.9.4/memory:81:0,
from /opencv/modules/core/include/opencv2/core/cvstd_wrapper.hpp:11,
from /opencv/modules/core/include/opencv2/core/cvstd.hpp:81,
from /opencv/modules/core/include/opencv2/core/base.hpp:58,
from /opencv/modules/core/include/opencv2/core.hpp:54,
from /opencv/modules/gapi/src/precomp.hpp:12,
from /opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:8:
/usr/local/include/c++/4.9.4/bits/unique_ptr.h:220:2: note: initializing argument 1 of 'std::unique_ptr<_Tp, _Dp>::unique_ptr(std::unique_ptr<_Up, _Ep>&&) [with _Up = cv::gapi::fluid::BufferStorageWithoutBorder; _Ep = std::default_delete<cv::gapi::fluid::BufferStorageWithoutBorder>; <template-parameter-2-3> = void; _Tp = cv::gapi::fluid::BufferStorage; _Dp = std::default_delete<cv::gapi::fluid::BufferStorage>]'
unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(int, int, int, int, cv::gapi::fluid::BorderOpt)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:356:1: error: control reaches end of non-void function [-Werror=return-type]
}
^
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp: In function 'std::unique_ptr<cv::gapi::fluid::BufferStorage> cv::gapi::fluid::{anonymous}::createStorage(const cv::gapi::own::Mat&, cv::gapi::own::Rect)':
/opencv/modules/gapi/src/backends/fluid/gfluidbuffer.cpp:364:1: error: control reaches end of non-void function [-Werror=return-type]
}
^
cc1plus: some warnings being treated as errors
</code></pre></div>
<h5 dir="auto">Steps to reproduce</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="```
git clone git clone https://github.com/opencv/opencv.git
cd opencv/
mkdir build
cd build
cmake ..
```"><pre class="notranslate"><code class="notranslate">```
git clone git clone https://github.com/opencv/opencv.git
cd opencv/
mkdir build
cd build
cmake ..
```
</code></pre></div> | 0 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.35.1]</li>
<li>Operating System: [MacOS Ventura 13.4 (22F66)]</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>Link to the GitHub repository with the repro</strong></p>
<p dir="auto">[https://github.com/your_profile/playwright_issue_title]</p>
<p dir="auto">or</p>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// @ts-check
const {defineConfig, devices} = require('@playwright/test');
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
/**
* @see https://playwright.dev/docs/test-configuration
*/
module.exports = defineConfig({
testDir: './tests',
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
// baseURL: 'http://127.0.0.1:3000',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},
ignoreHTTPSErrors: true,
"ssl": {
"allowInsecure": true
},
/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: {...devices['Desktop Chrome']},
},
{
name: 'firefox',
use: {...devices['Desktop Firefox']},
},
{
name: 'webkit',
use: {...devices['Desktop Safari']},
},
/* Test against mobile viewports. */
{
name: 'Mobile Chrome',
use: {...devices['Pixel 5']},
},
{
name: 'Mobile Safari',
use: {...devices['iPhone 12']},
},
/* Test against branded browsers. */
// {
// name: 'Microsoft Edge',
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
// },
{
name: 'Google Chrome',
use: {...devices['Desktop Chrome'], channel: 'chrome'},
},
],
/* Run your local dev server before starting the tests */
// webServer: {
// command: 'npm run start',
// url: 'http://127.0.0.1:3000',
// reuseExistingServer: !process.env.CI,
// },
});"><pre class="notranslate"><span class="pl-c">// <span class="pl-k">@ts</span>-check</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span>defineConfig<span class="pl-kos">,</span> devices<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'@playwright/test'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Read environment variables from file.</span>
<span class="pl-c"> * https://github.com/motdotla/dotenv</span>
<span class="pl-c"> */</span>
<span class="pl-c">// require('dotenv').config();</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * <span class="pl-k">@see</span> https://playwright.dev/docs/test-configuration</span>
<span class="pl-c"> */</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-en">defineConfig</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">testDir</span>: <span class="pl-s">'./tests'</span><span class="pl-kos">,</span>
<span class="pl-c">/* Run tests in files in parallel */</span>
<span class="pl-c1">fullyParallel</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">/* Fail the build on CI if you accidentally left test.only in the source code. */</span>
<span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span>
<span class="pl-c">/* Retry on CI only */</span>
<span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c">/* Opt out of parallel tests on CI. */</span>
<span class="pl-c1">workers</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">1</span> : <span class="pl-c1">undefined</span><span class="pl-kos">,</span>
<span class="pl-c">/* Reporter to use. See https://playwright.dev/docs/test-reporters */</span>
<span class="pl-c1">reporter</span>: <span class="pl-s">'html'</span><span class="pl-kos">,</span>
<span class="pl-c">/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>
<span class="pl-c">/* Base URL to use in actions like `await page.goto('/')`. */</span>
<span class="pl-c">// baseURL: 'http://127.0.0.1:3000',</span>
<span class="pl-c">/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */</span>
<span class="pl-c1">trace</span>: <span class="pl-s">'on-first-retry'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">ignoreHTTPSErrors</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-s">"ssl"</span>: <span class="pl-kos">{</span>
<span class="pl-s">"allowInsecure"</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">/* Configure projects for major browsers */</span>
<span class="pl-c1">projects</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'chromium'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Desktop Chrome'</span><span class="pl-kos">]</span><span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'firefox'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Desktop Firefox'</span><span class="pl-kos">]</span><span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'webkit'</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 Safari'</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">/* Test against mobile viewports. */</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'Mobile Chrome'</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">'Pixel 5'</span><span class="pl-kos">]</span><span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'Mobile Safari'</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">'iPhone 12'</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">/* Test against branded browsers. */</span>
<span class="pl-c">// {</span>
<span class="pl-c">// name: 'Microsoft Edge',</span>
<span class="pl-c">// use: { ...devices['Desktop Edge'], channel: 'msedge' },</span>
<span class="pl-c">// },</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'Google Chrome'</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-c1">channel</span>: <span class="pl-s">'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-c">/* Run your local dev server before starting the tests */</span>
<span class="pl-c">// webServer: {</span>
<span class="pl-c">// command: 'npm run start',</span>
<span class="pl-c">// url: 'http://127.0.0.1:3000',</span>
<span class="pl-c">// reuseExistingServer: !process.env.CI,</span>
<span class="pl-c">// },</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Test file (self-contained)</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// @ts-check
const { test, expect } = require('@playwright/test');
test('Click Danzan Ryu', async ({ page }) => {
await page.goto('https://localhost:3000');
// await page.getByRole('link', { name: 'Danzan Ryu' }).click();
});
"><pre class="notranslate"><span class="pl-c">// <span class="pl-k">@ts</span>-check</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span> test<span class="pl-kos">,</span> expect <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'@playwright/test'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'Click Danzan Ryu'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'https://localhost:3000'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// await page.getByRole('link', { name: 'Danzan Ryu' }).click();</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>Start a web server locally on port 3000</li>
<li>[Run the test]</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">[Describe expected behavior]<br>
The localhost:3000 link should open a test web page currently being served</p>
<p dir="auto"><strong>Actual</strong></p>
<h1 dir="auto">[Describe actual behavior]<br>
I get this error message:<br>
page.goto: net::ERR_SSL_PROTOCOL_ERROR at <a href="https://localhost:3000/" rel="nofollow">https://localhost:3000/</a><br>
=========================== logs ===========================<br>
navigating to "<a href="https://localhost:3000/" rel="nofollow">https://localhost:3000/</a>", waiting until "load"</h1> | <p dir="auto">After moving the global setup and teardown function into different projects(see config below), the project setup and teardown do not trigger. I also tested it on another different project and still the same.</p>
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.36]</li>
<li>Operating System: [macOS 13.2]</li>
<li>Browser: [All, Chromium, Firefox, WebKit]</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul dir="auto">
<li>[*] I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto">NOTE: A <code class="notranslate">global.setup.ts</code> and <code class="notranslate">global.teardown.ts</code> files are already created at the root directory.</p>
<p dir="auto">Global teardown and setup works fine.</p>
<p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p>
<p dir="auto">[https://github.com/your_profile/playwright_issue_title]</p>
<p dir="auto">or</p>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
/**
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: './tests',
/* Maximum time one test can run for. */
timeout: 30 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 5000
},
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 0,
/* Base URL to use in actions like `await page.goto('/')`. */
// baseURL: 'http://localhost:3000',
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},
/* Configure projects for major browsers */
projects: [
{
name: 'setup',
testMatch:/global.setup\.ts/,
teardown: 'teardown',
},
{
name: 'teardown',
testMatch: /global.teardown\.ts/,
},
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
dependencies: ['setup']
},
{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
dependencies: ['setup']
},
{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
dependencies: ['setup']
},
]
});"><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">defineConfig</span><span class="pl-kos">,</span> <span class="pl-s1">devices</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@playwright/test'</span><span class="pl-kos">;</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Read environment variables from file.</span>
<span class="pl-c"> * https://github.com/motdotla/dotenv</span>
<span class="pl-c"> */</span>
<span class="pl-c">// require('dotenv').config();</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * See https://playwright.dev/docs/test-configuration.</span>
<span class="pl-c"> */</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-en">defineConfig</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">testDir</span>: <span class="pl-s">'./tests'</span><span class="pl-kos">,</span>
<span class="pl-c">/* Maximum time one test can run for. */</span>
<span class="pl-c1">timeout</span>: <span class="pl-c1">30</span> <span class="pl-c1">*</span> <span class="pl-c1">1000</span><span class="pl-kos">,</span>
<span class="pl-c1">expect</span>: <span class="pl-kos">{</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Maximum time expect() should wait for the condition to be met.</span>
<span class="pl-c"> * For example in `await expect(locator).toHaveText();`</span>
<span class="pl-c"> */</span>
<span class="pl-c1">timeout</span>: <span class="pl-c1">5000</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">/* Run tests in files in parallel */</span>
<span class="pl-c1">fullyParallel</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">/* Fail the build on CI if you accidentally left test.only in the source code. */</span>
<span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span>
<span class="pl-c">/* Retry on CI only */</span>
<span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c">/* Opt out of parallel tests on CI. */</span>
<span class="pl-c1">workers</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">1</span> : <span class="pl-c1">undefined</span><span class="pl-kos">,</span>
<span class="pl-c">/* Reporter to use. See https://playwright.dev/docs/test-reporters */</span>
<span class="pl-c1">reporter</span>: <span class="pl-s">'html'</span><span class="pl-kos">,</span>
<span class="pl-c">/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>
<span class="pl-c">/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */</span>
<span class="pl-c1">actionTimeout</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c">/* Base URL to use in actions like `await page.goto('/')`. */</span>
<span class="pl-c">// baseURL: 'http://localhost:3000',</span>
<span class="pl-c">/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */</span>
<span class="pl-c1">trace</span>: <span class="pl-s">'on-first-retry'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">/* Configure projects for major browsers */</span>
<span class="pl-c1">projects</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'setup'</span><span class="pl-kos">,</span>
<span class="pl-c1">testMatch</span>:<span class="pl-pds"><span class="pl-c1">/</span>global.setup<span class="pl-cce">\.</span>ts<span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">teardown</span>: <span class="pl-s">'teardown'</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'teardown'</span><span class="pl-kos">,</span>
<span class="pl-c1">testMatch</span>: <span class="pl-pds"><span class="pl-c1">/</span>global.teardown<span class="pl-cce">\.</span>ts<span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-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-c1">dependencies</span>: <span class="pl-kos">[</span><span class="pl-s">'setup'</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'firefox'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Desktop Firefox'</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">dependencies</span>: <span class="pl-kos">[</span><span class="pl-s">'setup'</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'webkit'</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 Safari'</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">dependencies</span>: <span class="pl-kos">[</span><span class="pl-s">'setup'</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="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="setup
async function globalSetup() {
console.log('setup');
}
export default globalSetup;"><pre class="notranslate"><code class="notranslate">setup
async function globalSetup() {
console.log('setup');
}
export default globalSetup;
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="teardown
async function globalTeardown() {
console.log('Tear down')
}
export default globalTeardown;"><pre class="notranslate"><code class="notranslate">teardown
async function globalTeardown() {
console.log('Tear down')
}
export default globalTeardown;
</code></pre></div>
<p dir="auto"><strong>Expected</strong><br>
The setup should run before each project with [setup] as dependencies<br>
And teardown run after project test</p>
<p dir="auto"><strong>Actual</strong><br>
Test starts immediately with setup and finishes without teardown</p> | 0 |
<p dir="auto">It's really awesome that you now host a official Debian package for atom, however, there is one area for improvement, updating. Currently, you have to check the website for updates and then go to the atom website to download the new Debian package. This is ignoring one of the most useful parts of the debian packaging system, the updater. On Debian, packages are updated (almost) automatically via PPA's (Personal Package Archives) which are hosted for free by Ubuntu at launchpad.net or packages repositories, which you need to host yourself.</p>
<p dir="auto">A PPA is probably the easiest solution. All you would have to do is upload the Debian package to launchapd.net whenever you upload it to atom's website.</p>
<p dir="auto">Google Chrome also does this nifty thing that is really useful and I think atom should implement as well. You download the Debian package from the Google Chrome website, and the Debian installer automatically adds the package repository to the users system for updates in the future.</p>
<p dir="auto">If you have any more questions or need help setting this up I'm happy to help.</p>
<p dir="auto">It's free, requires almost no work on your part to set up and maintain, and improves the updating experience on Linux by a lot. Thanks! <g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">😄</g-emoji></p> | <p dir="auto">launchpad.net<br>
would you please release atom for ubuntu , as a launchpad ppa repository?</p> | 1 |
<p dir="auto">I'm trying to connect to a local websocket server.</p>
<p dir="auto"><code class="notranslate">socket = new WebSocket("ws://localhost:30003");</code></p>
<p dir="auto">The socket never connects properly. When I try to do <code class="notranslate">socket.send()</code>, it throws a DOMException:</p>
<p dir="auto"><code class="notranslate">Uncaught DOMException: Failed to execute 'send' on 'WebSocket': Still in CONNECTING state.</code></p>
<p dir="auto">It works fine in Chrome 43. I've also tried running this code inside the Atom editor, it doesn't work.</p> | <p dir="auto">I'm connecting to a websocket server and would like to use the user agent string to record which app versions are hitting my server as specified here: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="23730729" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/134" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/134/hovercard" href="https://github.com/electron/electron/issues/134">#134</a></p>
<p dir="auto">Here is the headers my Golang websocket server is seeing as set</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="http.Header{"Connection":[]string{"Upgrade"}, "Pragma":[]string{"no-cache"}, "Cache-Control":[]string{"no-cache"}, "Upgrade":[]string{"websocket"}, "Origin":[]string{"file://"}, "Sec-Websocket-Version":[]string{"13"}, "Accept-Encoding":[]string{"gzip, deflate"}, "Sec-Websocket-Extensions":[]string{"permessage-deflate; client_max_window_bits"}, "Accept-Language":[]string{"en-us,en"}, "Sec-Websocket-Key":[]string{"3PMSIjv8pr7CzxjnJI+LGw=="}, "User-Agent":[]string{"”}}"><pre class="notranslate"><code class="notranslate">http.Header{"Connection":[]string{"Upgrade"}, "Pragma":[]string{"no-cache"}, "Cache-Control":[]string{"no-cache"}, "Upgrade":[]string{"websocket"}, "Origin":[]string{"file://"}, "Sec-Websocket-Version":[]string{"13"}, "Accept-Encoding":[]string{"gzip, deflate"}, "Sec-Websocket-Extensions":[]string{"permessage-deflate; client_max_window_bits"}, "Accept-Language":[]string{"en-us,en"}, "Sec-Websocket-Key":[]string{"3PMSIjv8pr7CzxjnJI+LGw=="}, "User-Agent":[]string{"”}}
</code></pre></div>
<p dir="auto">Possibly related to: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="53733251" data-permission-text="Title is private" data-url="https://github.com/nwjs/nw.js/issues/2914" data-hovercard-type="issue" data-hovercard-url="/nwjs/nw.js/issues/2914/hovercard" href="https://github.com/nwjs/nw.js/issues/2914">nwjs/nw.js#2914</a></p> | 1 |
<p dir="auto">Continuation of the discussion here which is a bit stale at this point: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="45000584" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/5410" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/5410/hovercard" href="https://github.com/mrdoob/three.js/issues/5410">#5410</a></p>
<p dir="auto">The docs currently have 4 sections</p>
<ul dir="auto">
<li>Manual
<ul dir="auto">
<li>This has two pages at present, a very useful "Creating a scene" page and a kind of orphaned looking page on matrix transformations</li>
</ul>
</li>
<li>Reference
<ul dir="auto">
<li>This still needs some expansion in places, but should now be a complete API reference (as of r83). (ping me if you find mistakes, of which I'm sure there are more a few!)</li>
</ul>
</li>
<li>Examples
<ul dir="auto">
<li>This is very incomplete</li>
</ul>
</li>
<li>Developer Reference
<ul dir="auto">
<li>Also very incomplete</li>
</ul>
</li>
</ul>
<p dir="auto">The Wiki is a bit of a mess at the moment but has</p>
<ul dir="auto">
<li>TODO (things to be developed in Three)</li>
<li>JSON reference</li>
<li>link to migration guide</li>
<li>code style guide</li>
<li>FAQ section which largely link to github issues</li>
<li>various manual type articles</li>
<li>"On the Net" section with links to all kind of Three related info across the net (some broken and some out of date)</li>
</ul>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mrdoob/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mrdoob">@mrdoob</a> you mentioned here <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="195081128" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/10342" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/10342/hovercard" href="https://github.com/mrdoob/three.js/issues/10342">#10342</a> that you'd like the JSON reference to stay in the Wiki (although you also said in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="45000584" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/5410" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/5410/hovercard" href="https://github.com/mrdoob/three.js/issues/5410">#5410</a> that everything should go in the docs :p )</p>
<p dir="auto">I have two suggestions:</p>
<ol dir="auto">
<li>
<p dir="auto">Everything goes in the docs. Get rid of the Wiki</p>
</li>
<li>
<p dir="auto">Split like so:</p>
</li>
</ol>
<ul dir="auto">
<li>Docs: Everything related to using Three</li>
<li>Wiki: Everything related to developing Three</li>
</ul>
<p dir="auto">Obviously there would be some crossover in 2. but in ambiguous cases the docs should be preferred.</p> | <p dir="auto">When I create a shape with a sequence (shape.moveTo ..) and this sequence contains a shape.absarc or shape.arc (haven't tried splines) a twin point is added before the arc into the Shape definition ?</p>
<p dir="auto">In <a href="http://jsfiddle.net/hazq026t/7/" rel="nofollow">this sample</a> the twin point is # 2 (into the console).</p>
<p dir="auto">I don't know if it's a bug since it doesn't seems to alter following process (such as ShapeGeometry), but <code class="notranslate">shape.extractPoints()</code> retrieves these twin points ... and if I reuse the result to build something with THREE.ShapeUtils.triangulateShape() I will get the warning 'Unable to triangulate..' .. that's why I have to add this ugly patch :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" var loops = shape.extractPoints ( settings.curveResol );
for (var l = 1 ; l < loops.shape.length ; l++) {
if( Math.abs( loops.shape[l].x - loops.shape[l-1].x ) < 1E-10 && Math.abs( loops.shape[l].y - loops.shape[l-1].y ) < 1E-10 ) loops.shape.splice( l , 1 )
}"><pre class="notranslate"><code class="notranslate"> var loops = shape.extractPoints ( settings.curveResol );
for (var l = 1 ; l < loops.shape.length ; l++) {
if( Math.abs( loops.shape[l].x - loops.shape[l-1].x ) < 1E-10 && Math.abs( loops.shape[l].y - loops.shape[l-1].y ) < 1E-10 ) loops.shape.splice( l , 1 )
}
</code></pre></div> | 0 |
<p dir="auto">Hello. I have been trying to build pytorch on Windows 10 Pro for about a week. I am really hitting a wall, and not sure how to proceed. I would appreciate so much any pointers that someone could give me. Here is my set of commands and output....</p>
<p dir="auto">INPUT</p>
<p dir="auto">set "VS150COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build"<br>
set CMAKE_GENERATOR=Visual Studio 15 2017 Win64<br>
set DISTUTILS_USE_SDK=1<br>
REM The following two lines are needed for Python 2.7, but the support for it is very experimental.<br>
set MSSdk=1<br>
set FORCE_PY27_BUILD=1<br>
REM As for CUDA 8, VS2015 Update 3 is also required to build PyTorch. Use the following two lines.<br>
set "PREBUILD_COMMAND=%VS140COMNTOOLS%....\VC\vcvarsall.bat"<br>
set PREBUILD_COMMAND_ARGS=x64</p>
<p dir="auto">call "%VS150COMNTOOLS%\vcvarsall.bat" x64 -vcvars_ver=14.15<br>
python setup.py install</p>
<p dir="auto">OUTPUT<br>
...</p>
<p dir="auto">C:/Development/workspaces/repos/pytorch/aten/src/ATen/native/cuda/SpectralOps.cu(288): warning : dllexport/dllimpo<br>
rt conflict with "at::native::_fft_cufft" [C:\Development\workspaces\repos\pytorch\build\caffe2\caffe2_gpu.vcxproj]</p>
<p dir="auto">"c:\Development\workspaces\repos\pytorch\build\INSTALL.vcxproj" (default target) (1) -><br>
"C:\Development\workspaces\repos\pytorch\build\ALL_BUILD.vcxproj" (default target) (3) -><br>
"C:\Development\workspaces\repos\pytorch\build\caffe2\apply_test.vcxproj" (default target) (4) -><br>
"C:\Development\workspaces\repos\pytorch\build\caffe2\caffe2_gpu.vcxproj" (default target) (18) -><br>
(CustomBuild target) -><br>
C:/Development/workspaces/repos/pytorch/aten/src\ATen/core/ArrayRef.h(152): error : cannot use an entity undefined<br>
in device code [C:\Development\workspaces\repos\pytorch\build\caffe2\caffe2_gpu.vcxproj]<br>
C:/Development/workspaces/repos/pytorch/aten/src\ATen/core/ArrayRef.h(152): error : identifier "Typeinfo for ::at<br>
::Error" is undefined in device code [C:\Development\workspaces\repos\pytorch\build\caffe2\caffe2_gpu.vcxproj]<br>
Error : Internal Compiler error (codegen): "there was an error in verifying the lgenfe output!" [C:\Development\wo<br>
rkspaces\repos\pytorch\build\caffe2\caffe2_gpu.vcxproj]</p>
<p dir="auto">11950 Warning(s)<br>
3 Error(s)<br>
Time Elapsed 01:56:37.06</p>
<p dir="auto">(py36) c:\Development\workspaces\repos\pytorch\build>IF ERRORLEVEL 1 exit 1<br>
Failed to run 'tools\build_pytorch_libs.bat --use-cuda --use-nnpack caffe2 libshm_windows'</p> | <h2 dir="auto">Bug</h2>
<p dir="auto">Internal compiler error on Windows with CUDA build.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: Internal Compiler Error (codegen): "there was an error in verifying the lgenfe output!"
cross_entropy_op.cu
CMake Error at caffe2_gpu_generated_cross_entropy_op.cu.obj.RelWithDebInfo.cmake:279 (message):
Error generating file
C:/Users/tolia/AppData/Local/Temp/pytorch/build/caffe2/CMakeFiles/caffe2_gpu.dir/operators/./caffe2_gpu_generated_cross_entropy_op.cu.obj"><pre class="notranslate"><code class="notranslate">Error: Internal Compiler Error (codegen): "there was an error in verifying the lgenfe output!"
cross_entropy_op.cu
CMake Error at caffe2_gpu_generated_cross_entropy_op.cu.obj.RelWithDebInfo.cmake:279 (message):
Error generating file
C:/Users/tolia/AppData/Local/Temp/pytorch/build/caffe2/CMakeFiles/caffe2_gpu.dir/operators/./caffe2_gpu_generated_cross_entropy_op.cu.obj
</code></pre></div>
<h2 dir="auto">Environment</h2>
<ul dir="auto">
<li>PyTorch Version (e.g., 1.0): master</li>
<li>OS (e.g., Linux): Win10</li>
<li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source): source</li>
<li>Build command you used (if compiling from source): cmake + VS2017 (15.9.4) + Ninja</li>
<li>Python version: 3.7</li>
<li>CUDA/cuDNN version: 10.0/7</li>
<li>GPU models and configuration: Kepler + Pascal (build for Kepler+Maxwell+Pascal+Volta)</li>
</ul>
<h2 dir="auto">Additional context</h2>
<p dir="auto">Noticed several similar reports: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="364209606" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/12117" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/12117/hovercard" href="https://github.com/pytorch/pytorch/issues/12117">#12117</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="388471366" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/14872" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/14872/hovercard" href="https://github.com/pytorch/pytorch/issues/14872">#14872</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="379423240" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/13808" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/13808/hovercard" href="https://github.com/pytorch/pytorch/issues/13808">#13808</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="356570303" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/11203" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/11203/hovercard" href="https://github.com/pytorch/pytorch/issues/11203">#11203</a></p> | 1 |
<p dir="auto">I've reproduced this on the DEB package (might likely applies to the RPM package also).</p>
<p dir="auto">I ran across a scenario wherein user was using the DEB package. Then they opened the <code class="notranslate">/etc/elasticsearch/elasticsearch.yml</code> file and changed <code class="notranslate">path.plugins</code> to point to a different folder (anything really)</p>
<p dir="auto">After this, they installed Marvel (or any plugin for that matter). Unfortunately, the plugin was installed into <code class="notranslate">/usr/share/elasticsearch/plugins</code> instead of picking up the <code class="notranslate">path.plugins</code> override in the elasticsearch.yml file. Thus when starting ES, the plugin does not load correctly.</p>
<p dir="auto">This can be potentially fixed by changing the plugin script line to:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="exec $JAVA $JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" -Des.config="/etc/elasticsearch/elasticsearch.yml" $properties -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $args"><pre class="notranslate"><code class="notranslate">exec $JAVA $JAVA_OPTS -Xmx64m -Xms16m -Delasticsearch -Des.path.home="$ES_HOME" -Des.config="/etc/elasticsearch/elasticsearch.yml" $properties -cp "$ES_HOME/lib/*" org.elasticsearch.plugins.PluginManager $args
</code></pre></div>
<p dir="auto">I'm not 100% sure if this has other implications or is the right approach here.</p> | <p dir="auto">I've been trying to make sense of Elasticssearch histogram aggregations the last couple of days. And I've found that they don't work as expected, or even advertised.</p>
<p dir="auto">Lets say i want to aggregate like so:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""aggregations": {
"sea_water_temperature": {
"histogram": {
"field": "sea_water_temperature",
"interval": 3
}
}
}"><pre class="notranslate"><code class="notranslate">"aggregations": {
"sea_water_temperature": {
"histogram": {
"field": "sea_water_temperature",
"interval": 3
}
}
}
</code></pre></div>
<p dir="auto">Response buckets looks fine at first glance, but when trying to query for documents within the bounds of a bucket I don't get the same document count as the bucket suggested. E.g.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""filter": {
"range": {
"sea_water_temperature": {
"lt": 0,
"gte": -3
}
}
}"><pre class="notranslate"><code class="notranslate">"filter": {
"range": {
"sea_water_temperature": {
"lt": 0,
"gte": -3
}
}
}
</code></pre></div>
<p dir="auto">This could give x results while the bucket "-3" had a doc_count of y. This seems to only be an issue for negative bucket keys.</p>
<p dir="auto">In the docs for histogram it states that the bucket key for a given value is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rem = value % interval
if (rem < 0) {
rem += interval
}
bucket_key = value - rem"><pre class="notranslate"><code class="notranslate">rem = value % interval
if (rem < 0) {
rem += interval
}
bucket_key = value - rem
</code></pre></div>
<p dir="auto">However I tried a term aggregation with that as a value script:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""aggregations": {
"sea_water_temperature": {
"terms": {
"field": "sea_water_temperature",
"script": "rem = _value % interval; rem = rem < 0 ? rem + interval : rem; _value - rem",
"params": {
"interval": 3
}
}
}
}"><pre class="notranslate"><code class="notranslate">"aggregations": {
"sea_water_temperature": {
"terms": {
"field": "sea_water_temperature",
"script": "rem = _value % interval; rem = rem < 0 ? rem + interval : rem; _value - rem",
"params": {
"interval": 3
}
}
}
}
</code></pre></div>
<p dir="auto">That gives me the same kind of bucketing as histogram does but now my filter queries actually match the doc_counts of the buckets(!). Why isn't histogram working as described? or am I missing something?</p> | 0 |
<p dir="auto">After unstacking data that were grouped using groupby the data appears in an unexpected order. The groupby data are in the ascending order, but after unstacking this is no longer true.</p>
<p dir="auto">The following code demonstrates:<br>
import numpy as np<br>
import pandas as pd</p>
<p dir="auto">print pd.<strong>version</strong></p>
<h1 dir="auto">random data</h1>
<p dir="auto">data = pd.DataFrame()<br>
data['a'] = np.random.random(1000)_10. - 2<br>
data['b'] = np.random.random(1000)_10. - 2<br>
data['c'] = np.random.random(1000)*10. - 2</p>
<h1 dir="auto">bins in a and b</h1>
<p dir="auto">ba = np.linspace(-5., 5, 8)<br>
bb = np.linspace(-5., 5, 9)</p>
<h1 dir="auto">groupby bins</h1>
<p dir="auto">groups = data.groupby([pd.cut(data['a'], ba), pd.cut(data['b'], bb)])</p>
<h1 dir="auto">mask, needs at least 10 to get robust std estimate</h1>
<p dir="auto">msk = groups.count()['c'] > 10</p>
<h1 dir="auto">std(c) per bin, these are ordered as expected</h1>
<p dir="auto">stdc = groups['c'].agg([np.std, len])[msk]<br>
print stdc</p>
<h1 dir="auto">now unstack</h1>
<p dir="auto">result = stdc['std'].unstack()</p>
<h1 dir="auto">and the results are not ordered as expected</h1>
<p dir="auto">print result</p>
<p dir="auto">and the result is:<br>
b (-1.25, 0] (-2.5, -1.25] (0, 1.25] (1.25, 2.5] <br>
a<br>
(-0.714, 0.714] 2.878018 NaN 3.019754 2.908735<br>
(-2.143, -0.714] 2.490683 NaN 2.809243 2.754959<br>
(0.714, 2.143] 2.656060 2.940749 2.421975 2.677205<br>
(2.143, 3.571] 3.128538 2.879978 3.038488 3.191041<br>
(3.571, 5] 2.534340 2.943076 3.215626 2.687091</p>
<p dir="auto">b (2.5, 3.75] (3.75, 5]<br>
a<br>
(-0.714, 0.714] 3.328777 3.305938<br>
(-2.143, -0.714] 2.716552 3.090601<br>
(0.714, 2.143] 3.093307 1.669262<br>
(2.143, 3.571] 2.885055 3.295693<br>
(3.571, 5] 3.333355 2.972684</p>
<p dir="auto">[5 rows x 6 columns]</p>
<p dir="auto">This seems to happen if the bins cross zero.</p> | <p dir="auto">I recall discussing this before but came up on the mailing list again. Sorting of cut output is always wrong / ugly. I propose creating a str-like that compares with others of the same type as if they were tuples (possibly with nice logic around ranges) - would be facilitated by intro of CategoricalBlock.</p>
<p dir="auto">Similar to replacing qcut output with this:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="def convert_bins_to_tuple(iterable):
return [(left, right) for elem in iterable for left, right in elem.strip('()[]').split(',')]"><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-en">convert_bins_to_tuple</span>(<span class="pl-s1">iterable</span>):
<span class="pl-k">return</span> [(<span class="pl-s1">left</span>, <span class="pl-s1">right</span>) <span class="pl-k">for</span> <span class="pl-s1">elem</span> <span class="pl-c1">in</span> <span class="pl-s1">iterable</span> <span class="pl-k">for</span> <span class="pl-s1">left</span>, <span class="pl-s1">right</span> <span class="pl-c1">in</span> <span class="pl-s1">elem</span>.<span class="pl-en">strip</span>(<span class="pl-s">'()[]'</span>).<span class="pl-en">split</span>(<span class="pl-s">','</span>)]</pre></div> | 1 |
<p dir="auto">Hey!</p>
<p dir="auto">I think I found a bug, although I'm not sure if it might be intended behavior. If it is actually a bug, I'll try find the fix and flesh out a proper minimum reproducible example.</p>
<p dir="auto">Here's an annotated plot that I generated during my day-to-day usage:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33420535/188614232-f84ab5d2-00fc-47bd-9dde-a4474f27f2ec.png"><img width="631" alt="Screenshot 2022-09-06 at 12 30 28" src="https://user-images.githubusercontent.com/33420535/188614232-f84ab5d2-00fc-47bd-9dde-a4474f27f2ec.png" style="max-width: 100%;"></a></p>
<p dir="auto">This is a fairly standard <code class="notranslate">g = sns.catplot(..., kind="boxen", ...)</code>, but have a look at the colouring for the fourth boxen in red on the two axes. On the left, the "very light red" has a width of about half the main box, but on the right the "very light red" has a width of only a quarter the main box, and the "light red" has a width of half the main box.</p>
<p dir="auto">I feel like the red boxens should look something more like:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33420535/188616018-5605b9a0-a358-446c-b2ba-7581dbbed92f.png"><img width="588" alt="Screenshot 2022-09-06 at 12 41 05" src="https://user-images.githubusercontent.com/33420535/188616018-5605b9a0-a358-446c-b2ba-7581dbbed92f.png" style="max-width: 100%;"></a></p>
<p dir="auto">So that if two boxes in a boxen plot have the same color and represent the same quantile range, they also have the same width.</p>
<p dir="auto">Once again, it's debatable if this is a bug or not, but I thought I'd raise it and offer to help out if it was actually overlooked.</p> | <p dir="auto">Hi,</p>
<p dir="auto">I've been an avid user of <code class="notranslate">boxenplot</code>, and it's a great function!</p>
<p dir="auto">I noticed that there were some improvements to <code class="notranslate">boxenplot</code> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="620790174" data-permission-text="Title is private" data-url="https://github.com/mwaskom/seaborn/issues/2086" data-hovercard-type="pull_request" data-hovercard-url="/mwaskom/seaborn/pull/2086/hovercard" href="https://github.com/mwaskom/seaborn/pull/2086">#2086</a> that were incorporated into release v0.11. Now, with the default <code class="notranslate">k_depth='tukey'</code> the boxes are "sequentially colored from the input color all the way to white". However, while this new styling also looks to be applied for 'trustworthy', the old styling is still used for 'proportion' and 'full'.</p>
<p dir="auto">Is this intended behavior? Would it be possible to either clarify in the documentation that the styling may differ depending on the <code class="notranslate">k_depth</code>, to add the option to have this sequential hue gradient for all options for <code class="notranslate">k_depth</code>, or the option to turn it on/off since it's somewhat tricky to work with the resulting <code class="notranslate">cmap</code> of the <code class="notranslate">PatchCollections</code>?</p>
<p dir="auto">With seaborn=='0.11.1' and matplotlib=='3.3.4' this is what I currently see:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tips = sns.load_dataset("tips")
k_depth_methods = ["proportion", "tukey", "trustworthy", "full"]
fig, axes = plt.subplots(2,2, figsize=(12,12), sharex=True, sharey=True)
for ax, k in zip(axes.flatten(), k_depth_methods):
sns.boxenplot(
x="day", y="total_bill", hue="time", data=tips, linewidth=2.5, k_depth=k, ax=ax
)
ax.set_title(k, y=1.05)
ax.legend(loc="upper left", bbox_to_anchor=(0,1.05))
sns.despine()"><pre class="notranslate"><code class="notranslate">tips = sns.load_dataset("tips")
k_depth_methods = ["proportion", "tukey", "trustworthy", "full"]
fig, axes = plt.subplots(2,2, figsize=(12,12), sharex=True, sharey=True)
for ax, k in zip(axes.flatten(), k_depth_methods):
sns.boxenplot(
x="day", y="total_bill", hue="time", data=tips, linewidth=2.5, k_depth=k, ax=ax
)
ax.set_title(k, y=1.05)
ax.legend(loc="upper left", bbox_to_anchor=(0,1.05))
sns.despine()
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7407663/112195814-c0e37780-8be0-11eb-800f-9501ab8b7ffd.png"><img src="https://user-images.githubusercontent.com/7407663/112195814-c0e37780-8be0-11eb-800f-9501ab8b7ffd.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">I ran the <code class="notranslate">yo aspnet</code> and selected web api after following the tutorial. I tried to bring up <code class="notranslate">dnx web</code> command by pressing command shift p but it didn't find my command even through I could do dnx restore. This command worked from terminal.. Ideas?<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1020579/11274235/4fa07d0c-8e9d-11e5-8bbb-1d5be9480982.png"><img width="826" alt="screen shot 2015-11-19 at 9 09 28 am" src="https://cloud.githubusercontent.com/assets/1020579/11274235/4fa07d0c-8e9d-11e5-8bbb-1d5be9480982.png" style="max-width: 100%;"></a></p> | <p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Injac/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Injac">@Injac</a> on November 19, 2015 14:34</em></p>
<p dir="auto">Today I installed VSCode and tried this tutorial:</p>
<p dir="auto"><a href="https://code.visualstudio.com/Docs/runtimes/ASPnet5" rel="nofollow">ASP.NET 5 Applications with VS Code</a></p>
<p dir="auto">I opened Startup.cs and tried the System.Console.WriteLine sample. Intellisense did not show up. Only namespaces are shown after hitting CTRL+SPACE. It does not even recognize the built-in types like string, int, etc. .</p>
<p dir="auto">I am running VSCode on Debian 8.2 x64.</p>
<p dir="auto">Do I have to install additional components to make this work?</p>
<p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="117826258" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/240" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/240/hovercard" href="https://github.com/microsoft/vscode/issues/240">microsoft/vscode#240</a></em></p> | 1 |
<p dir="auto">I am using Android Studio 3.0, gradle version 4.3, and glide version 4.3.0. I am having the same issue with Glide version 4.2.0. I am getting an error whenever trying to run the project saying</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex."><pre class="notranslate"><code class="notranslate">Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex.
</code></pre></div>
<p dir="auto">The device version I am try to run the project on is a Nexus 5x, but I believe that is regardless of the issue since I can't even get the project to compile.</p>
<p dir="auto">Here is my build.gradle file.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.damianialex.chanreader"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true //Add this
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
maven { url 'https://maven.google.com' }
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile files('libs/picasso-2.5.2.jar')
compile 'com.github.bumptech.glide:glide:4.3.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.0'
}"><pre class="notranslate"><code class="notranslate">apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.damianialex.chanreader"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true //Add this
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
maven { url 'https://maven.google.com' }
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile files('libs/picasso-2.5.2.jar')
compile 'com.github.bumptech.glide:glide:4.3.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.0'
}
</code></pre></div>
<p dir="auto">Here's the full stack trace as well.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:100)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:70)
at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:63)
at org.gradle.api.internal.tasks.execution.ResolveTaskOutputCachingStateExecuter.execute(ResolveTaskOutputCachingStateExecuter.java:54)
at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58)
at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:88)
at org.gradle.api.internal.tasks.execution.ResolveTaskArtifactStateTaskExecuter.execute(ResolveTaskArtifactStateTaskExecuter.java:52)
at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:52)
at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:54)
at org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter.execute(ExecuteAtMostOnceTaskExecuter.java:43)
at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:34)
at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker$1.run(DefaultTaskGraphExecuter.java:248)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:197)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:107)
at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:241)
at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:230)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker.processTask(DefaultTaskPlanExecutor.java:124)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker.access$200(DefaultTaskPlanExecutor.java:80)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker$1.execute(DefaultTaskPlanExecutor.java:105)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker$1.execute(DefaultTaskPlanExecutor.java:99)
at org.gradle.execution.taskgraph.DefaultTaskExecutionPlan.execute(DefaultTaskExecutionPlan.java:625)
at org.gradle.execution.taskgraph.DefaultTaskExecutionPlan.executeWithTask(DefaultTaskExecutionPlan.java:580)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker.run(DefaultTaskPlanExecutor.java:99)
at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)
Caused by: java.lang.RuntimeException: java.io.IOException: Can't write [C:\Users\Alex\AndroidStudioProjects\ChanReader\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [C:\Users\Alex\.gradle\caches\modules-2\files-2.1\com.github.bumptech.glide\glide\4.3.0\5ef2a3700ab3320576eab21ff504189e5a92a350\glide-4.3.0.jar(;;;;;;**.class)] (Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class]))
at com.android.builder.profile.Recorder$Block.handleException(Recorder.java:55)
at com.android.builder.profile.ThreadRecorder.record(ThreadRecorder.java:104)
at com.android.build.gradle.internal.pipeline.TransformTask.transform(TransformTask.java:213)
at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:73)
at org.gradle.api.internal.project.taskfactory.DefaultTaskClassInfoStore$IncrementalTaskAction.doExecute(DefaultTaskClassInfoStore.java:173)
at org.gradle.api.internal.project.taskfactory.DefaultTaskClassInfoStore$StandardTaskAction.execute(DefaultTaskClassInfoStore.java:134)
at org.gradle.api.internal.project.taskfactory.DefaultTaskClassInfoStore$StandardTaskAction.execute(DefaultTaskClassInfoStore.java:121)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter$1.run(ExecuteActionsTaskExecuter.java:122)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:197)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:107)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAction(ExecuteActionsTaskExecuter.java:111)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:92)
... 27 more
Caused by: java.io.IOException: Can't write [C:\Users\Alex\AndroidStudioProjects\ChanReader\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [C:\Users\Alex\.gradle\caches\modules-2\files-2.1\com.github.bumptech.glide\glide\4.3.0\5ef2a3700ab3320576eab21ff504189e5a92a350\glide-4.3.0.jar(;;;;;;**.class)] (Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class]))
at proguard.OutputWriter.writeOutput(OutputWriter.java:187)
at proguard.OutputWriter.execute(OutputWriter.java:79)
at proguard.ProGuard.writeOutput(ProGuard.java:427)
at proguard.ProGuard.execute(ProGuard.java:175)
at com.android.build.gradle.internal.transforms.BaseProguardAction.runProguard(BaseProguardAction.java:61)
at com.android.build.gradle.internal.transforms.MainDexListTransform.shrinkWithProguard(MainDexListTransform.java:232)
at com.android.build.gradle.internal.transforms.MainDexListTransform.transform(MainDexListTransform.java:184)
at com.android.build.gradle.internal.pipeline.TransformTask$2.call(TransformTask.java:222)
at com.android.build.gradle.internal.pipeline.TransformTask$2.call(TransformTask.java:218)
at com.android.builder.profile.ThreadRecorder.record(ThreadRecorder.java:102)
... 39 more
Caused by: java.io.IOException: Can't read [C:\Users\Alex\.gradle\caches\modules-2\files-2.1\com.github.bumptech.glide\glide\4.3.0\5ef2a3700ab3320576eab21ff504189e5a92a350\glide-4.3.0.jar(;;;;;;**.class)] (Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class])
at proguard.InputReader.readInput(InputReader.java:188)
at proguard.InputReader.readInput(InputReader.java:158)
at proguard.OutputWriter.writeOutput(OutputWriter.java:176)
... 48 more
Caused by: java.io.IOException: Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class]
at proguard.io.JarWriter.getOutputStream(JarWriter.java:138)
at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:106)
at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:106)
at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:92)
at proguard.io.ClassRewriter.read(ClassRewriter.java:68)
at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
at proguard.io.JarReader.read(JarReader.java:65)
at proguard.io.DirectoryPump.readFiles(DirectoryPump.java:65)
at proguard.io.DirectoryPump.pumpDataEntries(DirectoryPump.java:53)
at proguard.InputReader.readInput(InputReader.java:184)
... 50 more"><pre class="notranslate"><code class="notranslate">* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:100)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:70)
at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:63)
at org.gradle.api.internal.tasks.execution.ResolveTaskOutputCachingStateExecuter.execute(ResolveTaskOutputCachingStateExecuter.java:54)
at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58)
at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:88)
at org.gradle.api.internal.tasks.execution.ResolveTaskArtifactStateTaskExecuter.execute(ResolveTaskArtifactStateTaskExecuter.java:52)
at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:52)
at org.gradle.api.internal.tasks.execution.SkipOnlyIfTaskExecuter.execute(SkipOnlyIfTaskExecuter.java:54)
at org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter.execute(ExecuteAtMostOnceTaskExecuter.java:43)
at org.gradle.api.internal.tasks.execution.CatchExceptionTaskExecuter.execute(CatchExceptionTaskExecuter.java:34)
at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker$1.run(DefaultTaskGraphExecuter.java:248)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:197)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:107)
at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:241)
at org.gradle.execution.taskgraph.DefaultTaskGraphExecuter$EventFiringTaskWorker.execute(DefaultTaskGraphExecuter.java:230)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker.processTask(DefaultTaskPlanExecutor.java:124)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker.access$200(DefaultTaskPlanExecutor.java:80)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker$1.execute(DefaultTaskPlanExecutor.java:105)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker$1.execute(DefaultTaskPlanExecutor.java:99)
at org.gradle.execution.taskgraph.DefaultTaskExecutionPlan.execute(DefaultTaskExecutionPlan.java:625)
at org.gradle.execution.taskgraph.DefaultTaskExecutionPlan.executeWithTask(DefaultTaskExecutionPlan.java:580)
at org.gradle.execution.taskgraph.DefaultTaskPlanExecutor$TaskExecutorWorker.run(DefaultTaskPlanExecutor.java:99)
at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:63)
at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:46)
at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:55)
Caused by: java.lang.RuntimeException: java.io.IOException: Can't write [C:\Users\Alex\AndroidStudioProjects\ChanReader\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [C:\Users\Alex\.gradle\caches\modules-2\files-2.1\com.github.bumptech.glide\glide\4.3.0\5ef2a3700ab3320576eab21ff504189e5a92a350\glide-4.3.0.jar(;;;;;;**.class)] (Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class]))
at com.android.builder.profile.Recorder$Block.handleException(Recorder.java:55)
at com.android.builder.profile.ThreadRecorder.record(ThreadRecorder.java:104)
at com.android.build.gradle.internal.pipeline.TransformTask.transform(TransformTask.java:213)
at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:73)
at org.gradle.api.internal.project.taskfactory.DefaultTaskClassInfoStore$IncrementalTaskAction.doExecute(DefaultTaskClassInfoStore.java:173)
at org.gradle.api.internal.project.taskfactory.DefaultTaskClassInfoStore$StandardTaskAction.execute(DefaultTaskClassInfoStore.java:134)
at org.gradle.api.internal.project.taskfactory.DefaultTaskClassInfoStore$StandardTaskAction.execute(DefaultTaskClassInfoStore.java:121)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter$1.run(ExecuteActionsTaskExecuter.java:122)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:336)
at org.gradle.internal.progress.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:328)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.execute(DefaultBuildOperationExecutor.java:197)
at org.gradle.internal.progress.DefaultBuildOperationExecutor.run(DefaultBuildOperationExecutor.java:107)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeAction(ExecuteActionsTaskExecuter.java:111)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:92)
... 27 more
Caused by: java.io.IOException: Can't write [C:\Users\Alex\AndroidStudioProjects\ChanReader\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [C:\Users\Alex\.gradle\caches\modules-2\files-2.1\com.github.bumptech.glide\glide\4.3.0\5ef2a3700ab3320576eab21ff504189e5a92a350\glide-4.3.0.jar(;;;;;;**.class)] (Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class]))
at proguard.OutputWriter.writeOutput(OutputWriter.java:187)
at proguard.OutputWriter.execute(OutputWriter.java:79)
at proguard.ProGuard.writeOutput(ProGuard.java:427)
at proguard.ProGuard.execute(ProGuard.java:175)
at com.android.build.gradle.internal.transforms.BaseProguardAction.runProguard(BaseProguardAction.java:61)
at com.android.build.gradle.internal.transforms.MainDexListTransform.shrinkWithProguard(MainDexListTransform.java:232)
at com.android.build.gradle.internal.transforms.MainDexListTransform.transform(MainDexListTransform.java:184)
at com.android.build.gradle.internal.pipeline.TransformTask$2.call(TransformTask.java:222)
at com.android.build.gradle.internal.pipeline.TransformTask$2.call(TransformTask.java:218)
at com.android.builder.profile.ThreadRecorder.record(ThreadRecorder.java:102)
... 39 more
Caused by: java.io.IOException: Can't read [C:\Users\Alex\.gradle\caches\modules-2\files-2.1\com.github.bumptech.glide\glide\4.3.0\5ef2a3700ab3320576eab21ff504189e5a92a350\glide-4.3.0.jar(;;;;;;**.class)] (Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class])
at proguard.InputReader.readInput(InputReader.java:188)
at proguard.InputReader.readInput(InputReader.java:158)
at proguard.OutputWriter.writeOutput(OutputWriter.java:176)
... 48 more
Caused by: java.io.IOException: Duplicate zip entry [glide-4.3.0.jar:com/bumptech/glide/util/Synthetic.class]
at proguard.io.JarWriter.getOutputStream(JarWriter.java:138)
at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:106)
at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:106)
at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:92)
at proguard.io.ClassRewriter.read(ClassRewriter.java:68)
at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
at proguard.io.JarReader.read(JarReader.java:65)
at proguard.io.DirectoryPump.readFiles(DirectoryPump.java:65)
at proguard.io.DirectoryPump.pumpDataEntries(DirectoryPump.java:53)
at proguard.InputReader.readInput(InputReader.java:184)
... 50 more
</code></pre></div>
<p dir="auto">I have already made a stackoverflow post of the problem here as well for reference <a href="https://stackoverflow.com/questions/47086275/trying-to-build-android-project-with-glide-package-throws-unable-to-merge-dex" rel="nofollow">https://stackoverflow.com/questions/47086275/trying-to-build-android-project-with-glide-package-throws-unable-to-merge-dex</a>.</p> | <p dir="auto">i use v4.7.1</p>
<p dir="auto">gif is slow.. help me.</p> | 0 |
<p dir="auto">Writing this <a href="https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/network/kubenet/kubenet_linux.go#L158">https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/network/kubenet/kubenet_linux.go#L158</a> to filesystem allows us to share a single kubelet generated CNI config for all runtimes (eg rkt). Potential downside is that we'd end up with 2 type=bridge cni confs that conflict.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/freehan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/freehan">@freehan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dcbw/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dcbw">@dcbw</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yifan-gu/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yifan-gu">@yifan-gu</a></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>.):<br>
No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):<br>
<code class="notranslate">scheduledjob</code>, <code class="notranslate">cron</code>, <code class="notranslate">active</code></p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br>
BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.6+coreos.0", GitCommit:"ec2b52fabadf824a42b66b6729fe4cff2c62af8c", GitTreeState:"clean", BuildDate:"2016-11-14T19:42:00Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.6+coreos.0", GitCommit:"ec2b52fabadf824a42b66b6729fe4cff2c62af8c", GitTreeState:"clean", BuildDate:"2016-11-14T19:42:00Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: bare metal</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): <code class="notranslate">Debian GNU/Linux 8 (jessie)</code></li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): <code class="notranslate">4.4.0-36-generic #55-Ubuntu SMP Thu Aug 11 18:01:55 UTC 2016 x86_64 GNU/Linux</code></li>
<li><strong>Install tools</strong>: <code class="notranslate">quay.io/coreos/hyperkube:v1.4.6_coreos.0</code>, deployed with <code class="notranslate">kargo</code></li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">I had a job corresponding to a scheduledjob running, and I deleted the job manually.</p>
<p dir="auto">The scheduledjob still shows as <code class="notranslate">ACTIVE: 1</code>. <code class="notranslate">describe</code> shows the job name under <code class="notranslate">active jobs</code> even though the job was deleted.</p>
<p dir="auto">The scheduledjob stays like this indefinitely, and never re-schedules a new job according to the cron description.</p>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">I expect the scheduledjob to pick up that the job was deleted, get into <code class="notranslate">ACTIVE: 0</code> again, and do not reference a deleted job under <code class="notranslate">active jobs</code>.</p>
<p dir="auto">In <a href="https://github.com/kubernetes/kubernetes/blob/release-1.4/pkg/controller/scheduledjob/controller.go#L127">https://github.com/kubernetes/kubernetes/blob/release-1.4/pkg/controller/scheduledjob/controller.go#L127</a>, there is no check that all the jobs for a scheduledjob still exist.</p>
<p dir="auto">Instead, we could go through the active list for each scheduledjob, and remove any job that does not exist anymore along with a warning event.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto">Create:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: batch/v2alpha1
kind: ScheduledJob
metadata:
name: my-cron-job
labels:
app: my-cron-job
spec:
schedule: 0/1 * * * ?
concurrencyPolicy: Forbid
jobTemplate:
spec:
template:
spec:
containers:
- name: my-cron-job
image: busybox:1.25
command: ["sleep", "120"]
restartPolicy: Never"><pre class="notranslate"><code class="notranslate">apiVersion: batch/v2alpha1
kind: ScheduledJob
metadata:
name: my-cron-job
labels:
app: my-cron-job
spec:
schedule: 0/1 * * * ?
concurrencyPolicy: Forbid
jobTemplate:
spec:
template:
spec:
containers:
- name: my-cron-job
image: busybox:1.25
command: ["sleep", "120"]
restartPolicy: Never
</code></pre></div>
<p dir="auto">Use <code class="notranslate">kubectl get jobs --watch | grep my-cron-job</code> to wait for the job to be created, and delete it using <code class="notranslate">kubectl delete job <xxxx></code>.</p>
<p dir="auto">Check that scheduledjob is still active:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="kubectl describe scheduledjob my-cron-job
Name: my-cron-job
Namespace: default
Schedule: 0/1 * * * ?
Concurrency Policy: Forbid
Suspend: False
Starting Deadline Seconds: <unset>
Image(s): busybox:1.25
Selector: <unset>
Parallelism: <unset>
Completions: <unset>
No volumes.
Labels: app=my-cron-job
Last Schedule Time: Fri, 02 Dec 2016 11:22:00 -0500
Active Jobs: my-cron-job-1782155079
Events:
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
3m 3m 1 {scheduled-job-controller } Normal SuccessfulCreate Created job my-cron-job-1782155079"><pre class="notranslate"><code class="notranslate">kubectl describe scheduledjob my-cron-job
Name: my-cron-job
Namespace: default
Schedule: 0/1 * * * ?
Concurrency Policy: Forbid
Suspend: False
Starting Deadline Seconds: <unset>
Image(s): busybox:1.25
Selector: <unset>
Parallelism: <unset>
Completions: <unset>
No volumes.
Labels: app=my-cron-job
Last Schedule Time: Fri, 02 Dec 2016 11:22:00 -0500
Active Jobs: my-cron-job-1782155079
Events:
FirstSeen LastSeen Count From SubobjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
3m 3m 1 {scheduled-job-controller } Normal SuccessfulCreate Created job my-cron-job-1782155079
</code></pre></div>
<p dir="auto">Wait as long as you like and repeat check -- it will stay active indefinitely.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Several times a user may need a administrator cmd window for doing some task.<br>
But the current terminal design doesn't allow it. This terminal is beneficial for using multiple command line tools easily.<br>
If the new administrator tab is opened in the current window then it will help user to keep all the command tools in the same window.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">The proposed idea would allow user to access super user cmd/powershell/wsl shell easily.<br>
It can implemented in following ways,</p>
<ol dir="auto">
<li>A right click on current tab allowing user to open admin window in new tab.</li>
<li>A right click on the option in the dropdown list allow user to launch the prompt in administrator mode.</li>
<li>A icon alongside the name in the dropdown list to launch list item in administrator mode.</li>
</ol>
<p dir="auto">If the new administrator tab is opened in the current window then it will help user to keep all the command tools in the same window.</p> | <p dir="auto">When using normal cmd.exe console, using <a href="https://github.com/bmatzelle/gow">https://github.com/bmatzelle/gow</a> and then using <code class="notranslate">nano readme.txt</code>, all works normally.</p>
<p dir="auto">In the new terminal, arrow keys displays <code class="notranslate">[ Unknown Command ]</code> (Backspace also not working sometimes and typing leave the cursor 1 letter behind, i.e.: typing teste gives me <code class="notranslate">test|e</code> (notice the cursor before the last <code class="notranslate">e</code>, not after, where it should be)</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">A Button to import/export zones so you can share it with friends or on a new computer!<br>
It would be way easier to export it put the file on a USB and import it on a different pc then. Going into settings and trying to recreate it.</p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">I'd like to be able to share a saved FancyZone layout using a file, maybe adding a share as a file button on the app.<br>
The file should be a JSON, or XML (but please, a JSON) including the resolution of the screen and all the details of the zone (dimension and position).</p> | 1 |
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
df = pd.DataFrame(["a", "b", "c"], columns=["test"])
print(df["test"].value_counts())
"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>([<span class="pl-s">"a"</span>, <span class="pl-s">"b"</span>, <span class="pl-s">"c"</span>], <span class="pl-s1">columns</span><span class="pl-c1">=</span>[<span class="pl-s">"test"</span>])
<span class="pl-en">print</span>(<span class="pl-s1">df</span>[<span class="pl-s">"test"</span>].<span class="pl-en">value_counts</span>())</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">Using value_counts in a testsuite can be a problem, when the resulting values have the same count as they permutade on each call, e.g.:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python pandas_value_counts.py
a 1
b 1
c 1
Name: test, dtype: int64
$ python pandas_value_counts.py
c 1
a 1
b 1
Name: test, dtype: int64
"><pre class="notranslate"><code class="notranslate">$ python pandas_value_counts.py
a 1
b 1
c 1
Name: test, dtype: int64
$ python pandas_value_counts.py
c 1
a 1
b 1
Name: test, dtype: int64
</code></pre></div>
<h4 dir="auto">Expected Output</h4>
<p dir="auto">Some stable/deterministic output or optionally additionally sorting of the keys, if they have the same counts</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
INSTALLED VERSIONS
------------------
commit: None
python: 3.6.0.final.0
python-bits: 32
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 94 Stepping 3, GenuineIntel
byteorder: little
LC_ALL: None
LANG: de_DE.UTF-8
LOCALE: None.None
<p dir="auto">pandas: 0.19.2<br>
nose: 1.3.7<br>
pip: 9.0.1<br>
setuptools: 27.2.0<br>
Cython: 0.25.2<br>
numpy: 1.11.3<br>
scipy: 0.18.1<br>
statsmodels: 0.6.1<br>
xarray: None<br>
IPython: 5.1.0<br>
sphinx: 1.5.1<br>
patsy: 0.4.1<br>
dateutil: 2.6.0<br>
pytz: 2016.10<br>
blosc: None<br>
bottleneck: 1.2.0<br>
tables: 3.2.2<br>
numexpr: 2.6.1<br>
matplotlib: 2.0.0<br>
openpyxl: 2.4.1<br>
xlrd: 1.0.0<br>
xlwt: 1.2.0<br>
xlsxwriter: 0.9.6<br>
lxml: 3.7.2<br>
bs4: 4.5.3<br>
html5lib: None<br>
httplib2: None<br>
apiclient: None<br>
sqlalchemy: 1.1.5<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.9.4<br>
boto: 2.45.0<br>
pandas_datareader: None</p>
</details> | <p dir="auto">Hello,</p>
<p dir="auto">I'm trying to make a new DataFrame that contains the value counts of a column of an existing DataFrame (<a href="https://github.com/pydata/pandas/files/181629/spreadsheet.xlsx">spreadsheet.xlsx</a>), but I want the rows in the new DataFrame to be in the same order as the old one.</p>
<p dir="auto">When I do:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
df = pd.read_excel('./spreadsheet.xlsx')
print(df[0].value_counts(sort=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-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_excel</span>(<span class="pl-s">'./spreadsheet.xlsx'</span>)
<span class="pl-en">print</span>(<span class="pl-s1">df</span>[<span class="pl-c1">0</span>].<span class="pl-en">value_counts</span>(<span class="pl-s1">sort</span><span class="pl-c1">=</span><span class="pl-c1">False</span>))</pre></div>
<p dir="auto">I get the DataFrame:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="h4 8
ct1 6
f2 2
s1 2
EST2 2
f5 2
E4 8
h2 8
hd2 7
f3 2
ART1 2
s2 2
f1 2
h3 8
EST1 2
s3 2
E6 8
ART2 2
DGT2 2
ct2 6
s4 2
ct3 6
f4 2
DGT1 2
s5 2"><pre class="notranslate"><span class="pl-s1">h4</span> <span class="pl-c1">8</span>
<span class="pl-s1">ct1</span> <span class="pl-c1">6</span>
<span class="pl-s1">f2</span> <span class="pl-c1">2</span>
<span class="pl-s1">s1</span> <span class="pl-c1">2</span>
<span class="pl-v">EST2</span> <span class="pl-c1">2</span>
<span class="pl-s1">f5</span> <span class="pl-c1">2</span>
<span class="pl-v">E4</span> <span class="pl-c1">8</span>
<span class="pl-s1">h2</span> <span class="pl-c1">8</span>
<span class="pl-s1">hd2</span> <span class="pl-c1">7</span>
<span class="pl-s1">f3</span> <span class="pl-c1">2</span>
<span class="pl-v">ART1</span> <span class="pl-c1">2</span>
<span class="pl-s1">s2</span> <span class="pl-c1">2</span>
<span class="pl-s1">f1</span> <span class="pl-c1">2</span>
<span class="pl-s1">h3</span> <span class="pl-c1">8</span>
<span class="pl-v">EST1</span> <span class="pl-c1">2</span>
<span class="pl-s1">s3</span> <span class="pl-c1">2</span>
<span class="pl-v">E6</span> <span class="pl-c1">8</span>
<span class="pl-v">ART2</span> <span class="pl-c1">2</span>
<span class="pl-v">DGT2</span> <span class="pl-c1">2</span>
<span class="pl-s1">ct2</span> <span class="pl-c1">6</span>
<span class="pl-s1">s4</span> <span class="pl-c1">2</span>
<span class="pl-s1">ct3</span> <span class="pl-c1">6</span>
<span class="pl-s1">f4</span> <span class="pl-c1">2</span>
<span class="pl-v">DGT1</span> <span class="pl-c1">2</span>
<span class="pl-s1">s5</span> <span class="pl-c1">2</span></pre></div>
<p dir="auto">When what I really want is:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="h2 8
h3 8
h4 8
hd2 7
E4 8
E6 8
ct1 6
.
.
."><pre class="notranslate"><span class="pl-s1">h2</span> <span class="pl-c1">8</span>
<span class="pl-s1">h3</span> <span class="pl-c1">8</span>
<span class="pl-s1">h4</span> <span class="pl-c1">8</span>
<span class="pl-s1">hd2</span> <span class="pl-c1">7</span>
<span class="pl-v">E4</span> <span class="pl-c1">8</span>
<span class="pl-v">E6</span> <span class="pl-c1">8</span>
<span class="pl-s1">ct1</span> <span class="pl-c1">6</span>
.
.
.</pre></div>
<p dir="auto">...because that's the order in which the values occur in the original DataFrame.</p>
<p dir="auto">I can't tell how it's sorting them, but it is somehow. Is this the expected behavior?</p>
<p dir="auto">Thanks</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Installed versions:
commit: None
python: 3.5.1.final.0
python-bits: 64
OS: Darwin
OS-release: 15.3.0
machine: x86_64
processor: i386
byteorder: little
LC_ALL: None
LANG: None
pandas: 0.18.0
nose: 1.3.7
pip: 8.1.1
setuptools: 20.3
Cython: 0.23.4
numpy: 1.10.4
scipy: 0.17.0
statsmodels: None
xarray: None
IPython: 4.1.2
sphinx: 1.3.5
patsy: 0.4.0
dateutil: 2.5.0
pytz: 2016.1
blosc: None
bottleneck: 1.0.0
tables: 3.2.2
numexpr: 2.4.6
matplotlib: 1.5.1
openpyxl: 2.3.2
xlrd: 0.9.4
xlwt: 1.0.0
xlsxwriter: 0.8.4
lxml: 3.6.0
bs4: 4.4.1
html5lib: None
httplib2: 0.9.2
apiclient: 1.5.0
sqlalchemy: 1.0.12
pymysql: None
psycopg2: None
jinja2: 2.8
boto: 2.39.0"><pre class="notranslate"><span class="pl-v">Installed</span> <span class="pl-s1">versions</span>:
<span class="pl-s1">commit</span>: <span class="pl-c1">None</span>
<span class="pl-s1">python</span>: <span class="pl-c1">3.5</span>.<span class="pl-c1">1.</span><span class="pl-s1">final</span>.<span class="pl-c1">0</span>
<span class="pl-s1">python</span><span class="pl-c1">-</span><span class="pl-s1">bits</span>: <span class="pl-c1">64</span>
<span class="pl-v">OS</span>: <span class="pl-v">Darwin</span>
<span class="pl-v">OS</span><span class="pl-c1">-</span><span class="pl-s1">release</span>: <span class="pl-c1">15.3</span><span class="pl-c1">.0</span>
<span class="pl-s1">machine</span>: <span class="pl-s1">x86_64</span>
<span class="pl-s1">processor</span>: <span class="pl-s1">i386</span>
<span class="pl-s1">byteorder</span>: <span class="pl-s1">little</span>
<span class="pl-v">LC_ALL</span>: <span class="pl-c1">None</span>
<span class="pl-v">LANG</span>: <span class="pl-c1">None</span>
<span class="pl-s1">pandas</span>: <span class="pl-c1">0.18</span>.<span class="pl-c1">0</span>
<span class="pl-s1">nose</span>: <span class="pl-c1">1.3</span>.<span class="pl-c1">7</span>
<span class="pl-s1">pip</span>: <span class="pl-c1">8.1</span>.<span class="pl-c1">1</span>
<span class="pl-s1">setuptools</span>: <span class="pl-c1">20.3</span>
<span class="pl-v">Cython</span>: <span class="pl-c1">0.23</span>.<span class="pl-c1">4</span>
<span class="pl-s1">numpy</span>: <span class="pl-c1">1.10</span>.<span class="pl-c1">4</span>
<span class="pl-s1">scipy</span>: <span class="pl-c1">0.17</span>.<span class="pl-c1">0</span>
<span class="pl-s1">statsmodels</span>: <span class="pl-c1">None</span>
<span class="pl-s1">xarray</span>: <span class="pl-c1">None</span>
<span class="pl-v">IPython</span>: <span class="pl-c1">4.1</span>.<span class="pl-c1">2</span>
<span class="pl-s1">sphinx</span>: <span class="pl-c1">1.3</span>.<span class="pl-c1">5</span>
<span class="pl-s1">patsy</span>: <span class="pl-c1">0.4</span>.<span class="pl-c1">0</span>
<span class="pl-s1">dateutil</span>: <span class="pl-c1">2.5</span>.<span class="pl-c1">0</span>
<span class="pl-s1">pytz</span>: <span class="pl-c1">2016.1</span>
<span class="pl-s1">blosc</span>: <span class="pl-c1">None</span>
<span class="pl-s1">bottleneck</span>: <span class="pl-c1">1.0</span>.<span class="pl-c1">0</span>
<span class="pl-s1">tables</span>: <span class="pl-c1">3.2</span>.<span class="pl-c1">2</span>
<span class="pl-s1">numexpr</span>: <span class="pl-c1">2.4</span>.<span class="pl-c1">6</span>
<span class="pl-s1">matplotlib</span>: <span class="pl-c1">1.5</span>.<span class="pl-c1">1</span>
<span class="pl-s1">openpyxl</span>: <span class="pl-c1">2.3</span>.<span class="pl-c1">2</span>
<span class="pl-s1">xlrd</span>: <span class="pl-c1">0.9</span>.<span class="pl-c1">4</span>
<span class="pl-s1">xlwt</span>: <span class="pl-c1">1.0</span>.<span class="pl-c1">0</span>
<span class="pl-s1">xlsxwriter</span>: <span class="pl-c1">0.8</span>.<span class="pl-c1">4</span>
<span class="pl-s1">lxml</span>: <span class="pl-c1">3.6</span>.<span class="pl-c1">0</span>
<span class="pl-s1">bs4</span>: <span class="pl-c1">4.4</span>.<span class="pl-c1">1</span>
<span class="pl-s1">html5lib</span>: <span class="pl-c1">None</span>
<span class="pl-s1">httplib2</span>: <span class="pl-c1">0.9</span>.<span class="pl-c1">2</span>
<span class="pl-s1">apiclient</span>: <span class="pl-c1">1.5</span>.<span class="pl-c1">0</span>
<span class="pl-s1">sqlalchemy</span>: <span class="pl-c1">1.0</span>.<span class="pl-c1">12</span>
<span class="pl-s1">pymysql</span>: <span class="pl-c1">None</span>
<span class="pl-s1">psycopg2</span>: <span class="pl-c1">None</span>
<span class="pl-s1">jinja2</span>: <span class="pl-c1">2.8</span>
<span class="pl-s1">boto</span>: <span class="pl-c1">2.39</span>.<span class="pl-c1">0</span></pre></div> | 1 |
<h4 dir="auto">Summary</h4>
<p dir="auto">When submitting a <code class="notranslate">POST</code> request of relatively small size,</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import * as qs from "querystring";
import axios from "axios";
const requestConfig = {
url : myUrl,
method : "POST",
headers : {
"Content-Type" : "application/x-www-form-urlencoded",
},
data : qs.stringify({ test : "data" });
};
const response = await axios.request(requestConfig);
console.log(
requestConfig.method,
requestConfig.url,
response.status,
response.statusText,
typeof response.data
);
console.log(response.request._header);
//Output: "POST", myUrl, 200, "OK", "string"
//Output: "POST myUrl HTTP/1.1/*snip*/"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">qs</span> <span class="pl-k">from</span> <span class="pl-s">"querystring"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-s1">axios</span> <span class="pl-k">from</span> <span class="pl-s">"axios"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">requestConfig</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">url</span> : <span class="pl-s1">myUrl</span><span class="pl-kos">,</span>
<span class="pl-c1">method</span> : <span class="pl-s">"POST"</span><span class="pl-kos">,</span>
<span class="pl-c1">headers</span> : <span class="pl-kos">{</span>
<span class="pl-s">"Content-Type"</span> : <span class="pl-s">"application/x-www-form-urlencoded"</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">data</span> : <span class="pl-s1">qs</span><span class="pl-kos">.</span><span class="pl-en">stringify</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">test</span> : <span class="pl-s">"data"</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">response</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">axios</span><span class="pl-kos">.</span><span class="pl-en">request</span><span class="pl-kos">(</span><span class="pl-s1">requestConfig</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span>
<span class="pl-s1">requestConfig</span><span class="pl-kos">.</span><span class="pl-c1">method</span><span class="pl-kos">,</span>
<span class="pl-s1">requestConfig</span><span class="pl-kos">.</span><span class="pl-c1">url</span><span class="pl-kos">,</span>
<span class="pl-s1">response</span><span class="pl-kos">.</span><span class="pl-c1">status</span><span class="pl-kos">,</span>
<span class="pl-s1">response</span><span class="pl-kos">.</span><span class="pl-c1">statusText</span><span class="pl-kos">,</span>
<span class="pl-k">typeof</span> <span class="pl-s1">response</span><span class="pl-kos">.</span><span class="pl-c1">data</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">response</span><span class="pl-kos">.</span><span class="pl-c1">request</span><span class="pl-kos">.</span><span class="pl-c1">_header</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">//Output: "POST", myUrl, 200, "OK", "string"</span>
<span class="pl-c">//Output: "POST myUrl HTTP/1.1/*snip*/</span></pre></div>
<p dir="auto">However, when I <code class="notranslate">stringify()</code> a larger object, giving a string of about 55k characters,</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//Output: "POST", myUrl, 200, "OK", "string"
//Output: "GET / HTTP/1.1 /*snip*/"><pre class="notranslate"><span class="pl-c">//Output: "POST", myUrl, 200, "OK", "string"</span>
<span class="pl-c">//Output: "GET / HTTP/1.1 /*snip*/</span></pre></div>
<p dir="auto">I expected <code class="notranslate">POST myUrl</code> but got <code class="notranslate">GET /</code>.</p>
<p dir="auto">So, while my config says "POST" and gives a URL that is not the root, it seems like axios is doing its own thing.</p>
<h4 dir="auto">Context</h4>
<ul dir="auto">
<li>axios version: 0.16 and 0.18.0</li>
<li>Environment: node v6.11.0, ts-node v3.3.0, TS v2.7.2, Ubuntu 16.04.2</li>
</ul>
<hr>
<p dir="auto">I tried <code class="notranslate">fetch()</code> on my browser and the request works fine.</p>
<p dir="auto">I also tried the <code class="notranslate">request</code> npm package and it worked fine. For now, I'll use <code class="notranslate">request</code> for <code class="notranslate">POST</code>-ing "large" amounts of data. It just seems weird that axios works most of the time, except for "large" chunks of data.</p> | <p dir="auto">android 4.4.4 系统上,我用axios发起请求,后台返回json数据过大的时候,response 为null,后面改用fetch 使用ok,使用环境react native 0.55版本</p>
<ul dir="auto">
<li>axios version: <em>e.g.: v0.18.0</em></li>
</ul> | 1 |
<p dir="auto">I noticed that doing the following<br>
<code class="notranslate">mul!(C, A, view(B,:,j)) # where A is a SparseMatrixCSC and B is transpose(any matrix)</code>,<br>
falls back to the generic matvecmul.</p>
<p dir="auto">The thing that breaks it, is the transpose. Without that it works as expected.<br>
Of course, if I know that B is a transpose of some matrix, the code would just access the row j of that matrix instead.</p>
<p dir="auto">BTW: I'm trying to avoid unnecessary copies of the B[:,j] vectors.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> using Requests
julia> help(get)
INFO: Loading help data...
Base.get(collection, key, default)
Return the value stored for the given key, or the given default
value if no mapping for the key is present.
Base.get(f::Function, collection, key)
Return the value stored for the given key, or if no mapping for the
key is present, return "f()". Use "get!" to also store the
default value in the dictionary.
This is intended to be called using "do" block syntax:
get(dict, key) do
# default value calculated here
time()
end"><pre class="notranslate"><code class="notranslate">julia> using Requests
julia> help(get)
INFO: Loading help data...
Base.get(collection, key, default)
Return the value stored for the given key, or the given default
value if no mapping for the key is present.
Base.get(f::Function, collection, key)
Return the value stored for the given key, or if no mapping for the
key is present, return "f()". Use "get!" to also store the
default value in the dictionary.
This is intended to be called using "do" block syntax:
get(dict, key) do
# default value calculated here
time()
end
</code></pre></div>
<p dir="auto">Oh, okay. Let's disambiguate then:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> help(Requests.get)
Base.get(collection, key, default)
Return the value stored for the given key, or the given default
value if no mapping for the key is present.
Base.get(f::Function, collection, key)
Return the value stored for the given key, or if no mapping for the
key is present, return "f()". Use "get!" to also store the
default value in the dictionary.
This is intended to be called using "do" block syntax:
get(dict, key) do
# default value calculated here
time()
end"><pre class="notranslate"><code class="notranslate">julia> help(Requests.get)
Base.get(collection, key, default)
Return the value stored for the given key, or the given default
value if no mapping for the key is present.
Base.get(f::Function, collection, key)
Return the value stored for the given key, or if no mapping for the
key is present, return "f()". Use "get!" to also store the
default value in the dictionary.
This is intended to be called using "do" block syntax:
get(dict, key) do
# default value calculated here
time()
end
</code></pre></div>
<p dir="auto">Hrmmm.......</p> | 0 |
<p dir="auto"><code class="notranslate">glyphicon</code> makes html and css longer, why not using only <code class="notranslate">gi</code>.</p>
<p dir="auto">e.g.:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<span class="gi gi-search"></span>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">gi gi-search</span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Where as Documentation already refers Glyphicon, or may be public will link back to Glyphicon. So, this can't be a big issue!</p> | <p dir="auto">I'm sure some where along the line there was a discussion about how icon classes should be declared, but how the current format was decided on is beyond me.</p>
<ul dir="auto">
<li>it takes forever to type by hand</li>
<li>impossible to switch to other icons-as-a-font libraries and keep the same code as most of them use Bootstrap 2.x <code class="notranslate">.icon-</code></li>
<li>approx 17 extra bytes I don't want or need</li>
<li>just plain old silly</li>
</ul>
<p dir="auto">I believe it would be in the best interest of the Bootstrap community to start a serious discussion on standardizing the icon class names. More for than just for Bootstrap, too. Font-Awesome and the other icons-as-a-font libraries would benefit from standardization as well.</p>
<p dir="auto">To me, it seems natural to stick to Bootstrap 2.x, (just <code class="notranslate">.icon-</code>), however extending with an extra <code class="notranslate">.icon</code> before it would also be better than the existing implementation.</p> | 1 |
<p dir="auto"><strong>Describe the bug</strong><br>
When set url:</p>
<ol dir="auto">
<li>
<p dir="auto"><a href="https://localhost:44302/api/v1/contract?order%5B0%5D.ascendant=false&order%5B0%5D.name=id&pagging.page=0&pagging.pageSize=9&filter.code9=222&filter.onlyAgency=true" rel="nofollow">https://localhost:44302/api/v1/contract?order%5B0%5D.ascendant=false&order%5B0%5D.name=id&pagging.page=0&pagging.pageSize=9&filter.code9=222&filter.onlyAgency=true</a></p>
</li>
<li>
<p dir="auto"><a href="https://localhost:44302/api/v1/contract?code9=222&onlyAgency=true" rel="nofollow">https://localhost:44302/api/v1/contract?code9=222&onlyAgency=true</a></p>
</li>
</ol>
<p dir="auto">Fail function isValidXss<br>
line: 1464 var xssRegex = /(\b)(on\w+)=|javascript|(<\s*)(/*)script/gi;</p>
<p dir="auto"><strong>To Reproduce</strong><br>
Open devTools (F12) in chrome</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var xssRegex = /(\b)(on\w+)=|javascript|(<\s*)(\/*)script/gi;
xssRegex.test('https://localhost:44302/api/v1/contract?code9=222&onlyAgency=true')"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">xssRegex</span> <span class="pl-c1">=</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-kos">(</span><span class="pl-cce">\b</span><span class="pl-kos">)</span><span class="pl-kos">(</span>on<span class="pl-cce">\w</span><span class="pl-c1">+</span><span class="pl-kos">)</span>=<span class="pl-c1">|</span>javascript<span class="pl-c1">|</span><span class="pl-kos">(</span><<span class="pl-cce">\s</span><span class="pl-c1">*</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-cce">\/</span><span class="pl-c1">*</span><span class="pl-kos">)</span>script<span class="pl-c1">/</span>gi</span><span class="pl-kos">;</span>
<span class="pl-s1">xssRegex</span><span class="pl-kos">.</span><span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'https://localhost:44302/api/v1/contract?code9=222&onlyAgency=true'</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>Expected behavior</strong><br>
must print false</p>
<p dir="auto"><strong>Solution</strong><br>
Fix regular expression</p>
<p dir="auto"><strong>Environment:</strong></p>
<ul dir="auto">
<li>Axios Version: 0.19.1</li>
<li>OS: Windows</li>
<li>Browser: Chrome</li>
<li>Browser Version: 79</li>
<li>Additional Library Versions: React 16.12</li>
</ul> | <p dir="auto">It seems that axios v0.19.1 introduced a new bug.</p>
<p dir="auto">The bug comes from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="506498428" data-permission-text="Title is private" data-url="https://github.com/axios/axios/issues/2464" data-hovercard-type="pull_request" data-hovercard-url="/axios/axios/pull/2464/hovercard" href="https://github.com/axios/axios/pull/2464">#2464</a></p>
<p dir="auto">All urls containing <code class="notranslate">javascript</code>keyword is throwing XSS error. So, all following urls cannot be used in axios any more:</p>
<ul dir="auto">
<li><a href="https://www.javascript.com" rel="nofollow">https://www.javascript.com</a></li>
<li><a href="https://stackoverflow.com/questions/tagged/javascript" rel="nofollow">https://stackoverflow.com/questions/tagged/javascript</a></li>
<li><a href="https://www.google.com/search?q=javascript" rel="nofollow">https://www.google.com/search?q=javascript</a></li>
</ul>
<p dir="auto">Here is a link to regexp: <a href="https://regexr.com/4rsst" rel="nofollow">https://regexr.com/4rsst</a></p>
<p dir="auto">Expected behavior: axios should accept <code class="notranslate">javascript</code> in urls</p> | 1 |
<p dir="auto"><strong>Migrated issue, originally created by Alistair Watson</strong></p>
<p dir="auto">The code below emits:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CREATE SEQUENCE test_sequence"><pre class="notranslate"><code class="notranslate">CREATE SEQUENCE test_sequence
</code></pre></div>
<p dir="auto">when according to the documentation it should get it's default schema value from the metadata and it should emit:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CREATE SEQUENCE test_schema.test_sequence"><pre class="notranslate"><code class="notranslate">CREATE SEQUENCE test_schema.test_sequence
</code></pre></div>
<p dir="auto">It's not really an issue if you are connecting as the user/schema you want to own the sequence - unfortunately I need to create all tables and database objects as a different user. Providing the schema parameter to each sequence directly does solve the issue.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import create_engine, MetaData, Column, Integer,Sequence
from sqlalchemy.ext.declarative import declarative_base
engine = create_engine('oracle+cx_oracle://test_schema:Welcome1@localhost:1521/xe', echo=True)
metadata = MetaData(schema='test_schema')
Base = declarative_base(metadata=metadata)
class Child(Base):
__tablename__ = 'child'
id = Column(Integer, Sequence(name="test_sequence"), primary_key=True)
data = Column(Integer)
Base.metadata.drop_all(engine, checkfirst = True)
Base.metadata.create_all(engine)"><pre class="notranslate"><code class="notranslate">from sqlalchemy import create_engine, MetaData, Column, Integer,Sequence
from sqlalchemy.ext.declarative import declarative_base
engine = create_engine('oracle+cx_oracle://test_schema:Welcome1@localhost:1521/xe', echo=True)
metadata = MetaData(schema='test_schema')
Base = declarative_base(metadata=metadata)
class Child(Base):
__tablename__ = 'child'
id = Column(Integer, Sequence(name="test_sequence"), primary_key=True)
data = Column(Integer)
Base.metadata.drop_all(engine, checkfirst = True)
Base.metadata.create_all(engine)
</code></pre></div> | <p dir="auto"><strong>Migrated issue, originally created by Andrew Paulo Robillo (<a href="https://github.com/shimofuri">@shimofuri</a>)</strong></p>
<p dir="auto">I'd been copying this <a href="https://bitbucket.org/snippets/shimofuri/bALAz" rel="nofollow">snippet</a> from my old cookbook to add a surrogate key to a declarative table class:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class MixinIntKey(object):
@declared_attr
def key(cls):
return Column(
pg.INTEGER,
Sequence(f"sqk_{cls.__tablename__}", 1, 1),
nullable=False,
primary_key=True
)"><pre class="notranslate"><code class="notranslate">class MixinIntKey(object):
@declared_attr
def key(cls):
return Column(
pg.INTEGER,
Sequence(f"sqk_{cls.__tablename__}", 1, 1),
nullable=False,
primary_key=True
)
</code></pre></div>
<p dir="auto">This code was working before (some 3-4 years ago, I think around version 0.8 ): it generates the Sequence when I build the database objects through metadata.create_all(). The only change I made to the snippet was to update it to use format strings (Python 3.6).</p>
<p dir="auto">After some googling around and testing (see attached file/<a href="https://bitbucket.org/snippets/shimofuri/bALAz" rel="nofollow">link</a>), the Sequence can be generated only if the metadata is passed during Sequence init:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Sequence(f"sqk_{cls.__tablename__}", 1, 1, metadata=metadata)"><pre class="notranslate"><code class="notranslate">Sequence(f"sqk_{cls.__tablename__}", 1, 1, metadata=metadata)
</code></pre></div>
<p dir="auto">My environment: psycopg2==2.7.1, SQLAlchemy==1.1.8, Python 3.6 64bit on Windows 8.1 64bit, PostgreSQL 9.6 server</p>
<hr>
<p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/3951/sequence_bug.py">sequence_bug.py</a></p> | 1 |
<p dir="auto">SubArrays are not subtypes of DenseArray, even when they could be:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> arr = rand(3,3)
3x3 Array{Float64,2}:
0.838499 0.649594 0.810356
0.865377 0.204888 0.224049
0.842879 0.747802 0.67063
julia> s_arr = sub(arr, :, 1)
3-element SubArray{Float64,1,Array{Float64,2},Tuple{Colon,Int64},2}:
0.838499
0.865377
0.842879
julia> super(typeof(s_arr))
AbstractArray{Float64,1}"><pre class="notranslate">julia<span class="pl-k">></span> arr <span class="pl-k">=</span> <span class="pl-c1">rand</span>(<span class="pl-c1">3</span>,<span class="pl-c1">3</span>)
<span class="pl-c1">3</span>x3 Array{Float64,<span class="pl-c1">2</span>}<span class="pl-k">:</span>
<span class="pl-c1">0.838499</span> <span class="pl-c1">0.649594</span> <span class="pl-c1">0.810356</span>
<span class="pl-c1">0.865377</span> <span class="pl-c1">0.204888</span> <span class="pl-c1">0.224049</span>
<span class="pl-c1">0.842879</span> <span class="pl-c1">0.747802</span> <span class="pl-c1">0.67063</span>
julia<span class="pl-k">></span> s_arr <span class="pl-k">=</span> <span class="pl-c1">sub</span>(arr, :, <span class="pl-c1">1</span>)
<span class="pl-c1">3</span><span class="pl-k">-</span>element SubArray{Float64,<span class="pl-c1">1</span>,Array{Float64,<span class="pl-c1">2</span>},Tuple{Colon,Int64},<span class="pl-c1">2</span>}<span class="pl-k">:</span>
<span class="pl-c1">0.838499</span>
<span class="pl-c1">0.865377</span>
<span class="pl-c1">0.842879</span>
julia<span class="pl-k">></span> <span class="pl-c1">super</span>(<span class="pl-c1">typeof</span>(s_arr))
AbstractArray{Float64,<span class="pl-c1">1</span>}</pre></div>
<p dir="auto">This is a problem when trying to pass the SubArray to a function that only accepts DenseArrays.</p> | <p dir="auto">Many C libraries have functions like the following:</p>
<div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="void fastadd(size_t len, const double *a, const double *b, double *c)"><pre class="notranslate"><span class="pl-k">void</span> <span class="pl-en">fastadd</span>(<span class="pl-c1">size_t</span> len, <span class="pl-k">const</span> <span class="pl-k">double</span> *a, <span class="pl-k">const</span> <span class="pl-k">double</span> *b, <span class="pl-k">double</span> *c)</pre></div>
<p dir="auto">These functions assume that the arrays have contiguous memory layout.</p>
<p dir="auto">Now for safety, packages like <code class="notranslate">Yeppp</code> and <code class="notranslate">VML</code> etc restrict the arguments to <code class="notranslate">Array</code>. It would be very useful to generalize the fast computation functions there to arbitrary array types with contiguous array layouts (e.g. some <code class="notranslate">SubArray</code> or array views).</p>
<p dir="auto">A <code class="notranslate">iscontiguous</code> function can be useful in such cases</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function fastadd(a::StridedArray{Float64}, b::StridedArray{Float64}, c::StridedArray{Float64})
(iscontiguous(a) && iscontiguous(b) && iscontiguous(c)) ||
error("a, b, c must be contiguous")
# invoke the fastadd c-function
end"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">fastadd</span>(a<span class="pl-k">::</span><span class="pl-c1">StridedArray{Float64}</span>, b<span class="pl-k">::</span><span class="pl-c1">StridedArray{Float64}</span>, c<span class="pl-k">::</span><span class="pl-c1">StridedArray{Float64}</span>)
(<span class="pl-c1">iscontiguous</span>(a) <span class="pl-k">&&</span> <span class="pl-c1">iscontiguous</span>(b) <span class="pl-k">&&</span> <span class="pl-c1">iscontiguous</span>(c)) <span class="pl-k">||</span>
<span class="pl-c1">error</span>(<span class="pl-s"><span class="pl-pds">"</span>a, b, c must be contiguous<span class="pl-pds">"</span></span>)
<span class="pl-c"><span class="pl-c">#</span> invoke the fastadd c-function</span>
<span class="pl-k">end</span></pre></div>
<p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/timholy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/timholy">@timholy</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ViralBShah/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ViralBShah">@ViralBShah</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/simonster/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/simonster">@simonster</a></p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.3</li>
<li>Operating System version: macOS 10.14.6</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">在我项目中,<strong>配置中心</strong>和<strong>注册中心</strong>都是使用zookeeper,而且是在一个集群上,只是 <strong>path</strong> 和对应的 <strong>username</strong> 和 <strong>password</strong> 不同,但是并未正常初始化两个不同的zk client。</p>
<p dir="auto">项目启动时:<br>
1、连接配置中心的地址,获取<strong>配置中心</strong>的配置信息<br>
2、在初始化ReferenceBean和ServiceBean,会校验<strong>注册中心</strong>是否初始化</p>
<p dir="auto">两者都通过 AbstractZookeeperTransporter#connect(URL url) 方法去连接zk</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public abstract class AbstractZookeeperTransporter implements ZookeeperTransporter {
//缓存 zk client,key为zk地址
private final Map<String, ZookeeperClient> zookeeperClientMap = new ConcurrentHashMap<>();
@Override
public ZookeeperClient connect(URL url) {
ZookeeperClient zookeeperClient;
List<String> addressList = getURLBackupAddress(url);
// 这个地方会走缓存
if ((zookeeperClient = fetchAndUpdateZookeeperClientCache(addressList)) != null && zookeeperClient.isConnected()) {
logger.info("find valid zookeeper client from the cache for address: " + url);
return zookeeperClient;
}
。。。
}
ZookeeperClient fetchAndUpdateZookeeperClientCache(List<String> addressList) {
ZookeeperClient zookeeperClient = null;
for (String address : addressList) {
if ((zookeeperClient = zookeeperClientMap.get(address)) != null && zookeeperClient.isConnected()) {
break;
}
}
if (zookeeperClient != null && zookeeperClient.isConnected()) {
//将 zookeeperClient 放入 zookeeperClientMap 缓存中
writeToClientMap(addressList, zookeeperClient);
}
return zookeeperClient;
}
void writeToClientMap(List<String> addressList, ZookeeperClient zookeeperClient) {
for (String address : addressList) {
// 使用 address 作为key
zookeeperClientMap.put(address, zookeeperClient);
}
}
}"><pre class="notranslate"><code class="notranslate">public abstract class AbstractZookeeperTransporter implements ZookeeperTransporter {
//缓存 zk client,key为zk地址
private final Map<String, ZookeeperClient> zookeeperClientMap = new ConcurrentHashMap<>();
@Override
public ZookeeperClient connect(URL url) {
ZookeeperClient zookeeperClient;
List<String> addressList = getURLBackupAddress(url);
// 这个地方会走缓存
if ((zookeeperClient = fetchAndUpdateZookeeperClientCache(addressList)) != null && zookeeperClient.isConnected()) {
logger.info("find valid zookeeper client from the cache for address: " + url);
return zookeeperClient;
}
。。。
}
ZookeeperClient fetchAndUpdateZookeeperClientCache(List<String> addressList) {
ZookeeperClient zookeeperClient = null;
for (String address : addressList) {
if ((zookeeperClient = zookeeperClientMap.get(address)) != null && zookeeperClient.isConnected()) {
break;
}
}
if (zookeeperClient != null && zookeeperClient.isConnected()) {
//将 zookeeperClient 放入 zookeeperClientMap 缓存中
writeToClientMap(addressList, zookeeperClient);
}
return zookeeperClient;
}
void writeToClientMap(List<String> addressList, ZookeeperClient zookeeperClient) {
for (String address : addressList) {
// 使用 address 作为key
zookeeperClientMap.put(address, zookeeperClient);
}
}
}
</code></pre></div>
<p dir="auto">从上边可以看出,在初始化 <strong>配置中心</strong>的 zk client 后,就缓存到了 zookeeperClientMap 中。<br>
当<strong>注册中心</strong>去初始化zk client 时,由于跟<strong>配置中心</strong>在一个集群上,所以 address相同,就会走缓存,返回 <strong>配置中心</strong>的 zk cliient。</p>
<p dir="auto"><strong>总结</strong>:<br>
如果<strong>配置中心</strong>和<strong>注册中心</strong>在一个集群上,zookeeperClientMap就不能使用address作为key。</p>
<p dir="auto"><strong>解决方案</strong>:<br>
URL信息(配置中心)<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13186839/64221021-f42abc80-cefd-11e9-8920-d283ae27e864.png"><img src="https://user-images.githubusercontent.com/13186839/64221021-f42abc80-cefd-11e9-8920-d283ae27e864.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">URL信息(注册中心)<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13186839/64220937-aada6d00-cefd-11e9-8446-69a8f2f95d4a.png"><img src="https://user-images.githubusercontent.com/13186839/64220937-aada6d00-cefd-11e9-8446-69a8f2f95d4a.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">通过上边两个图可以看出,<strong>配置中心</strong> 和 <strong>注册中心</strong> 传入的 URL信息里边的 <strong>path</strong> 是不相同的,将 zookeeperClientMap 的 key 使用 <strong>address + url.path</strong> 的方式生成,就可以解决这个问题</p> | <h1 dir="auto">Weekly Report of Dubbo</h1>
<p dir="auto">This is a weekly report of Dubbo. It summarizes what have changed in the project during the passed week, including pr merged, new contributors, and more things in the future.<br>
It is all done by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dubbo-bot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dubbo-bot">@dubbo-bot</a> which is a collaborate robot.</p>
<h2 dir="auto">Repo Overview</h2>
<h3 dir="auto">Basic data</h3>
<p dir="auto">Baisc data shows how the watch, star, fork and contributors count changed in the passed week.</p>
<table role="table">
<thead>
<tr>
<th align="center">Watch</th>
<th align="center">Star</th>
<th align="center">Fork</th>
<th align="center">Contributors</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">3245</td>
<td align="center">27807 (↑228)</td>
<td align="center">15626 (↑121)</td>
<td align="center">211 (↑3)</td>
</tr>
</tbody>
</table>
<h3 dir="auto">Issues & PRs</h3>
<p dir="auto">Issues & PRs show the new/closed issues/pull requests count in the passed week.</p>
<table role="table">
<thead>
<tr>
<th align="center">New Issues</th>
<th align="center">Closed Issues</th>
<th align="center">New PR</th>
<th align="center">Merged PR</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">35</td>
<td align="center">25</td>
<td align="center">39</td>
<td align="center">19</td>
</tr>
</tbody>
</table>
<h2 dir="auto">PR Overview</h2>
<p dir="auto">Thanks to contributions from community, Dubbo team merged <strong>19</strong> pull requests in the repository last week. They are:</p>
<ul dir="auto">
<li>fix compile issue and refactor metadata structure (<a href="https://github.com/apache/dubbo/pull/4538" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4538/hovercard">#4538</a>)</li>
<li>Polish /<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="466629009" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/4535" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/4535/hovercard" href="https://github.com/apache/dubbo/issues/4535">#4535</a> : [Infrastructure] Update the nacos client … (<a href="https://github.com/apache/dubbo/pull/4537" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4537/hovercard">#4537</a>)</li>
<li>Upgrade nacos-client dependency version to 1.1.1 (<a href="https://github.com/apache/dubbo/pull/4534" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4534/hovercard">#4534</a>)</li>
<li>Dubbo throws exception when use java serializer (<a href="https://github.com/apache/dubbo/pull/4530" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4530/hovercard">#4530</a>)</li>
<li>Use special Configuration for Configs (<a href="https://github.com/apache/dubbo/pull/4522" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4522/hovercard">#4522</a>)</li>
<li>add -jar for java command (<a href="https://github.com/apache/dubbo/pull/4517" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4517/hovercard">#4517</a>)</li>
<li>fix length of array is never negative (<a href="https://github.com/apache/dubbo/pull/4510" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4510/hovercard">#4510</a>)</li>
<li>Polish <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465698214" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/4508" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/4508/hovercard" href="https://github.com/apache/dubbo/issues/4508">#4508</a> : [Version] Update the version of cloud nati… (<a href="https://github.com/apache/dubbo/pull/4509" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4509/hovercard">#4509</a>)</li>
<li>[Dubbo-4499] org.apache.dubbo.rpc.RpcContext.getFuture() cannot work in Filter. (<a href="https://github.com/apache/dubbo/pull/4504" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4504/hovercard">#4504</a>)</li>
<li>Polish <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465592107" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/4498" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/4498/hovercard" href="https://github.com/apache/dubbo/issues/4498">#4498</a> : <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a> can't inject the Dubb… (<a href="https://github.com/apache/dubbo/pull/4503" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4503/hovercard">#4503</a>)</li>
<li>RpcContext cannot getFuture after setFuture (<a href="https://github.com/apache/dubbo/pull/4502" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4502/hovercard">#4502</a>)</li>
<li>2.6.x (<a href="https://github.com/apache/dubbo/pull/4495" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4495/hovercard">#4495</a>)</li>
<li>[dubbo-4491]remove duplicate code in AbstractConfig.java (<a href="https://github.com/apache/dubbo/pull/4492" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4492/hovercard">#4492</a>)</li>
<li>Make code strong, version check compatibility. (<a href="https://github.com/apache/dubbo/pull/4488" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4488/hovercard">#4488</a>)</li>
<li>2.6.x to release (<a href="https://github.com/apache/dubbo/pull/4485" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4485/hovercard">#4485</a>)</li>
<li>[Dubbo-4479]Delete unused code. defaultPort can not be null. <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="464552272" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/4479" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/4479/hovercard" href="https://github.com/apache/dubbo/issues/4479">#4479</a> (<a href="https://github.com/apache/dubbo/pull/4480" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4480/hovercard">#4480</a>)</li>
<li>Redis metadata report support database properties. (<a href="https://github.com/apache/dubbo/pull/4476" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4476/hovercard">#4476</a>)</li>
<li>FutureAdapter depends on AsyncRpcResult (<a href="https://github.com/apache/dubbo/pull/4471" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4471/hovercard">#4471</a>)</li>
<li>add 2.7.3 change list (<a href="https://github.com/apache/dubbo/pull/4453" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/4453/hovercard">#4453</a>)</li>
</ul>
<h2 dir="auto">Code Review Statistics</h2>
<p dir="auto">Dubbo encourages everyone to participant in code review, in order to improve software quality. Every week <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dubbo-bot/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dubbo-bot">@dubbo-bot</a> would automatically help to count pull request reviews of single github user as the following. So, try to help review code in this project.</p>
<table role="table">
<thead>
<tr>
<th align="center">Contributor ID</th>
<th align="center">Pull Request Reviews</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cvictory/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cvictory">@cvictory</a></td>
<td align="center">6</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/htynkn/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/htynkn">@htynkn</a></td>
<td align="center">3</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ralf0131/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ralf0131">@ralf0131</a></td>
<td align="center">2</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/danielamorais/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/danielamorais">@danielamorais</a></td>
<td align="center">2</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/beiwei30/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/beiwei30">@beiwei30</a></td>
<td align="center">1</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tswstarplanet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tswstarplanet">@tswstarplanet</a></td>
<td align="center">1</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chickenlj/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chickenlj">@chickenlj</a></td>
<td align="center">1</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/CrazyHZM/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/CrazyHZM">@CrazyHZM</a></td>
<td align="center">1</td>
</tr>
<tr>
<td align="center"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guohao/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guohao">@guohao</a></td>
<td align="center">1</td>
</tr>
<tr>
<td align="center">@dntbeSris</td>
<td align="center">1</td>
</tr>
</tbody>
</table>
<h2 dir="auto">Contributors Overview</h2>
<p dir="auto">It is Dubbo team's great honor to have new contributors from community. We really appreciate your contributions. Feel free to tell us if you have any opinion and please share this open source project with more people if you could. If you hope to be a contributor as well, please start from <a href="https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md">https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md</a> .<br>
Here is the list of new contributors:</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shouhong/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shouhong">@shouhong</a></p>
<p dir="auto">@liuxx001</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/TingSky/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/TingSky">@TingSky</a></p>
<p dir="auto">Thanks to you all.</p>
<p dir="auto"><em>Note: This robot is supported by <a href="https://github.com/AlibabaDR/Collabobot">Collabobot</a>.</em></p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">when I start my <code class="notranslate">Flask</code> app via <code class="notranslate">python3 -m flask run</code> and there is an error in my code, <code class="notranslate">Flask</code> only returns with the following message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Usage: python -m flask run [OPTIONS]
Error: The file/path provided (server2.run) does not appear to exist. Please verify the path is correct. If app is not on PYTHONPATH, ensure the extension is .py"><pre class="notranslate"><code class="notranslate">Usage: python -m flask run [OPTIONS]
Error: The file/path provided (server2.run) does not appear to exist. Please verify the path is correct. If app is not on PYTHONPATH, ensure the extension is .py
</code></pre></div>
<p dir="auto">Is there a way to get proper error stack messages or am I not seeing the obvious.. <g-emoji class="g-emoji" alias="thinking" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f914.png">🤔</g-emoji></p>
<p dir="auto">~ For Frodo</p> | <p dir="auto">(Observed on Python 2.7; untested on 3.x)</p>
<h2 dir="auto">Steps to reproduce:</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="echo "import thisisnotarealpackage" > error_app.py
export FLASK_APP=error_app.py
flask run"><pre class="notranslate"><code class="notranslate">echo "import thisisnotarealpackage" > error_app.py
export FLASK_APP=error_app.py
flask run
</code></pre></div>
<h2 dir="auto">Expected result:</h2>
<ul dir="auto">
<li>Some indication that <code class="notranslate">thisisnotarealpackage</code> is not a real package</li>
</ul>
<h2 dir="auto">Observed result:</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Usage: python -m flask run [OPTIONS]
Error: The file/path provided (error) does not appear to exist.
Please verify the path is correct.
If app is not on PYTHONPATH, ensure the extension is .py"><pre class="notranslate"><code class="notranslate">Usage: python -m flask run [OPTIONS]
Error: The file/path provided (error) does not appear to exist.
Please verify the path is correct.
If app is not on PYTHONPATH, ensure the extension is .py
</code></pre></div>
<p dir="auto">(Newlines added)</p>
<h2 dir="auto">Why Bother</h2>
<p dir="auto">This has been causing some confusion on my team because <code class="notranslate">cx_Oracle</code> can fail to import (from the bowels of SQLAlchemy) if it can't find certain Oracle support files on the host machine.</p> | 1 |
<p dir="auto">This issue occured when we upgraded to bootstrap 3.1.</p>
<p dir="auto">jsfiddle: <a href="http://jsfiddle.net/kKsp7/2/" rel="nofollow">http://jsfiddle.net/kKsp7/2/</a></p>
<p dir="auto">The hack I will use until this issue is fixed is included in the css.</p> | <p dir="auto">As of 3.1, when you do:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div class="panel panel-default">
<table class="table table-bordered">
<thead>
<th>foo</th>
</thead>
<tbody>
<tr>
<td>baz</td>
</tr>
</tbody>
</table>
</div>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">panel panel-default</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">table</span> <span class="pl-c1">class</span>="<span class="pl-s">table table-bordered</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">thead</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">th</span><span class="pl-kos">></span>foo<span class="pl-kos"></</span><span class="pl-ent">th</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">thead</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">tbody</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">tr</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">td</span><span class="pl-kos">></span>baz<span class="pl-kos"></</span><span class="pl-ent">td</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">tr</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">tbody</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">table</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div>
<p dir="auto">You get no border between the head and the body like in <code class="notranslate">3.0.x</code>. It comes back if you remove <code class="notranslate">table-bordered</code> but then you don't have vertical separators between columns.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/92f137d7f5f55a1cac8daae07120b49b9f654989061c8e16838a29ba342389fe/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733303636342f323034353433342f36383166303530632d383966382d313165332d393533662d3639366161656138393434352e706e67"><img src="https://camo.githubusercontent.com/92f137d7f5f55a1cac8daae07120b49b9f654989061c8e16838a29ba342389fe/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733303636342f323034353433342f36383166303530632d383966382d313165332d393533662d3639366161656138393434352e706e67" alt="image" data-canonical-src="https://f.cloud.github.com/assets/730664/2045434/681f050c-89f8-11e3-953f-696aaea89445.png" style="max-width: 100%;"></a></p>
<p dir="auto">Without table-bordered:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/548835c034dd2576f498c98c36fdd4ee88b401424ccfcd1a6a317fb505733cfe/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733303636342f323034353434332f38323363373639302d383966382d313165332d383964332d6336323033616663353634622e706e67"><img src="https://camo.githubusercontent.com/548835c034dd2576f498c98c36fdd4ee88b401424ccfcd1a6a317fb505733cfe/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733303636342f323034353434332f38323363373639302d383966382d313165332d383964332d6336323033616663353634622e706e67" alt="image" data-canonical-src="https://f.cloud.github.com/assets/730664/2045443/823c7690-89f8-11e3-89d3-c6203afc564b.png" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto"><strong>Symfony version(s) affected</strong>: 3.4.9</p>
<p dir="auto"><strong>Description</strong><br>
Cache don't invalidate tags. In version 3.4.8 everything working fine.</p>
<p dir="auto"><strong>How to reproduce</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" $cache = new TagAwareAdapter(
new FilesystemAdapter(),
new FilesystemAdapter()
);
$review = $cache->getItem('reviews-1');
$review->set('test');
$review->tag(['reviews']);
$cache->save($review);
dump($cache->getItem('reviews-1')->isHit()); //true - correct
$cache->invalidateTags(['reviews']);
dump($cache->getItem('reviews-1')->isHit()); //false - correct
$cache = new TagAwareAdapter(
new FilesystemAdapter(),
new FilesystemAdapter()
);
$review = $cache->getItem('reviews-1');
dump($cache->getItem('reviews-1')->isHit()); //true - incorrect / why ?"><pre class="notranslate"><code class="notranslate"> $cache = new TagAwareAdapter(
new FilesystemAdapter(),
new FilesystemAdapter()
);
$review = $cache->getItem('reviews-1');
$review->set('test');
$review->tag(['reviews']);
$cache->save($review);
dump($cache->getItem('reviews-1')->isHit()); //true - correct
$cache->invalidateTags(['reviews']);
dump($cache->getItem('reviews-1')->isHit()); //false - correct
$cache = new TagAwareAdapter(
new FilesystemAdapter(),
new FilesystemAdapter()
);
$review = $cache->getItem('reviews-1');
dump($cache->getItem('reviews-1')->isHit()); //true - incorrect / why ?
</code></pre></div>
<p dir="auto">Probably error in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="316607794" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/27007" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/27007/hovercard" href="https://github.com/symfony/symfony/pull/27007">GH-27007</a></p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>^4.0</td>
</tr>
</tbody>
</table>
<p dir="auto">I am using the <code class="notranslate">TagAwareAdapter</code> so I can invalidate my REDIS cache by tag. The problem is that, while the cache item gets invalidated, this change does not persist between requests.</p>
<p dir="auto">See this reproduction <a href="https://github.com/Loupax/CachingTagInvalidationBug">repo</a> , it has four commands:<br>
One that populates the cache, one that invalidates the cache by tag, one that fetches the keys and one that does all three in a single command.</p>
<p dir="auto">Expected behaviour:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ bin/console app:add
$ bin/console app:invalidate
$ bin/console app:get"><pre class="notranslate"><code class="notranslate">$ bin/console app:add
$ bin/console app:invalidate
$ bin/console app:get
</code></pre></div>
<p dir="auto">The final command should output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="item-0, isHit:false
item-1, isHit:false
item-2, isHit:false
item-3, isHit:false
item-4, isHit:false"><pre class="notranslate"><code class="notranslate">item-0, isHit:false
item-1, isHit:false
item-2, isHit:false
item-3, isHit:false
item-4, isHit:false
</code></pre></div>
<p dir="auto">Actual output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="item-0, isHit:true
item-1, isHit:true
item-2, isHit:true
item-3, isHit:true
item-4, isHit:true"><pre class="notranslate"><code class="notranslate">item-0, isHit:true
item-1, isHit:true
item-2, isHit:true
item-3, isHit:true
item-4, isHit:true
</code></pre></div>
<p dir="auto">Running the command <code class="notranslate">$ bin/console app:add-invalidate-and-get</code> works as expected</p> | 1 |
<p dir="auto">Operating System: Mac Os X 10.9.5</p>
<p dir="auto">Current tensorflow version 0.7.1</p>
<p dir="auto">I am trying to get the Cifar-10 tutorial running on my own data set (so using other images, but the same code). Training works fine. However, the evaluation seems to have a problem. Whenever I run the evaluation, I get the following message:</p>
<p dir="auto">W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fe504a20 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fe403eb0 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fe206b10 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fbe16130 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6f8e6bd80 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fbcca1e0 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fbbb5e30 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6f8daee90 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fe304d50 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fbcb9570 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6f8e01660 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fba2a1a0 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6f8e357a0 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fe207e90 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fe2089b0 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6fa6bfe20 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomp onents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/ta sk:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div, Cast)]]<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fc6f8e689f0 Compute status : Cancelled: Enqueue operation was cancelled<br>
[[Node: input_producer/input_producer_EnqueueMany = QueueEnqueueMany[Tc omponents=[DT_STRING], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/c pu:0"](input_producer, input_producer/RandomShuffle)]]<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt</p>
<p dir="auto">Right before this message, if I let the code run long enough, I get the output for a precision (precision @ 1 = xxx). However, the message still irritates me, I looks like an error message...</p>
<p dir="auto">I've googled this error, and so far I've only found some posts talking about that one should first initialize placeholders before starting the queuerunners. However, since there are no placeholders used anywhere in the code before, and I am very new to tensorflow/machine learning in general, I have no idea where one would put these placeholders, or what they would be.</p> | <h3 dir="auto">Environment info</h3>
<p dir="auto">Operating System: Ubuntu 14.04.4 LTS</p>
<p dir="auto">If installed from binary pip package, provide:</p>
<ol dir="auto">
<li>Which pip package you installed.<br>
: tensorflow-0.7.1-cp27-none-linux_x86_64.whl</li>
<li>The output from python -c "import tensorflow; print(tensorflow.<strong>version</strong>)".<br>
: 0.7.1</li>
</ol>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>cd git/tensorflow/tensorflow/models/image/cifar10/</li>
<li>python cifar10_eval.py</li>
</ol>
<p dir="auto">I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcublas.so locally<br>
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcudnn.so locally<br>
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcufft.so locally<br>
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcuda.so.1 locally<br>
I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcurand.so locally<br>
I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:900] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero<br>
I tensorflow/core/common_runtime/gpu/gpu_init.cc:102] Found device 0 with properties:<br>
name: GeForce GTX 980 Ti<br>
major: 5 minor: 2 memoryClockRate (GHz) 1.3545<br>
pciBusID 0000:01:00.0<br>
Total memory: 6.00GiB<br>
Free memory: 5.56GiB<br>
I tensorflow/core/common_runtime/gpu/gpu_init.cc:126] DMA: 0<br>
I tensorflow/core/common_runtime/gpu/gpu_init.cc:136] 0: Y<br>
I tensorflow/core/common_runtime/gpu/gpu_device.cc:717] Creating TensorFlow device (/gpu:0) -> (device: 0, name: GeForce GTX 980 Ti, pci bus id: 0000:01:00.0)<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 1.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 2.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 4.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 8.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 16.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 32.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 64.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 128.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 256.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 512.0KiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 1.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 2.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 4.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 8.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 16.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 32.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 64.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 128.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 256.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 512.00MiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 1.00GiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 2.00GiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 4.00GiB<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:51] Creating bin of max chunk size 8.00GiB</p>
<p dir="auto">and stop this line.</p>
<p dir="auto">but sometimes not stop this line when run same as above. and</p>
<p dir="auto">==========check3.25==========<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:73] Allocating 5.27GiB bytes.<br>
I tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.cc:83] GPU 0 memory begins at 0x706400000 extends to 0x857ab6000<br>
==========check3.5==========<br>
==========check3.75==========<br>
==========check3.25==========</p>
<p dir="auto">.<br>
.<br>
.</p>
<p dir="auto">==========check3.25==========<br>
==========check3.5==========<br>
==========check3.75==========<br>
2016-03-01 15:41:09.935657: precision @ 1 = 0.801<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb37405e7b0 Compute status: Cancelled: Enqueue operation was cancelled<br>
[[Node: input_producer/input_producer_EnqueueMany = QueueEnqueueMany[Tcomponents=[DT_STRING], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](input_producer, input_producer/RandomShuffle)]]<br>
I tensorflow/core/kernels/queue_base.cc:286] Skipping cancelled enqueue attempt<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb350035000 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb36403ada0 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb3223f5240 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb35c03ada0 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb338035000 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb36c00c600 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb354035000 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb340035000 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb34c035000 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb3480095e0 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb33000c470 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb370011050 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb328010190 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb3600095e0 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb358035000 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]<br>
W tensorflow/core/common_runtime/executor.cc:1102] 0x7fb33c05b3b0 Compute status: Aborted: RandomShuffleQueue '_1_shuffle_batch/random_shuffle_queue' is closed.<br>
[[Node: shuffle_batch/random_shuffle_queue_enqueue = QueueEnqueue[Tcomponents=[DT_FLOAT, DT_INT32], timeout_ms=-1, _device="/job:localhost/replica:0/task:0/cpu:0"](shuffle_batch/random_shuffle_queue, Div/_206, Cast/_208)]]</p>
<h3 dir="auto">What have you tried?</h3>
<ol dir="auto">
<li>Add some instruction for checking stop point.</li>
</ol>
<p dir="auto">cifar10_eval.py</p>
<p dir="auto">def eval_once(saver, summary_writer, top_k_op, summary_op):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Start the queue runners.
coord = tf.train.Coordinator()
try:
threads = []
for qr in tf.get_collection(tf.GraphKeys.QUEUE_RUNNERS):
threads.extend(qr.create_threads(sess, coord=coord, daemon=True,
start=True))
num_iter = int(math.ceil(FLAGS.num_examples / FLAGS.batch_size))
true_count = 0 # Counts the number of correct predictions.
total_sample_count = num_iter * FLAGS.batch_size
step = 0
while step < num_iter and not coord.should_stop():
print("==========check3.25==========")
predictions = sess.run([top_k_op])
print("==========check3.5==========")
true_count += np.sum(predictions)
step += 1
print("==========check3.75==========")
# Compute precision @ 1.
precision = true_count / total_sample_count
print('%s: precision @ 1 = %.3f' % (datetime.now(), precision))
summary = tf.Summary()
summary.ParseFromString(sess.run(summary_op))
summary.value.add(tag='Precision @ 1', simple_value=precision)
summary_writer.add_summary(summary, global_step)
except Exception as e: # pylint: disable=broad-except
coord.request_stop(e)
coord.request_stop()
coord.join(threads, stop_grace_period_secs=10)"><pre class="notranslate"><code class="notranslate"># Start the queue runners.
coord = tf.train.Coordinator()
try:
threads = []
for qr in tf.get_collection(tf.GraphKeys.QUEUE_RUNNERS):
threads.extend(qr.create_threads(sess, coord=coord, daemon=True,
start=True))
num_iter = int(math.ceil(FLAGS.num_examples / FLAGS.batch_size))
true_count = 0 # Counts the number of correct predictions.
total_sample_count = num_iter * FLAGS.batch_size
step = 0
while step < num_iter and not coord.should_stop():
print("==========check3.25==========")
predictions = sess.run([top_k_op])
print("==========check3.5==========")
true_count += np.sum(predictions)
step += 1
print("==========check3.75==========")
# Compute precision @ 1.
precision = true_count / total_sample_count
print('%s: precision @ 1 = %.3f' % (datetime.now(), precision))
summary = tf.Summary()
summary.ParseFromString(sess.run(summary_op))
summary.value.add(tag='Precision @ 1', simple_value=precision)
summary_writer.add_summary(summary, global_step)
except Exception as e: # pylint: disable=broad-except
coord.request_stop(e)
coord.request_stop()
coord.join(threads, stop_grace_period_secs=10)
</code></pre></div>
<p dir="auto">look like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="119755298" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/389" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/389/hovercard" href="https://github.com/tensorflow/tensorflow/issues/389">#389</a> issue but different. and many time stop</p>
<p dir="auto">predictions = sess.run([top_k_op])</p>
<p dir="auto">this line.</p> | 1 |
<p dir="auto">I am working on finding the version where this broke.</p>
<p dir="auto">The following input:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="'use strict';
import * as React from 'react-tools/build/modules/React';
module.exports = React.createClass({
render: function(){
return <div></div>;
}
});"><pre class="notranslate"><span class="pl-s">'use strict'</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-v">React</span> <span class="pl-k">from</span> <span class="pl-s">'react-tools/build/modules/React'</span><span class="pl-kos">;</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createClass</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-en">render</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">div</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Should produce:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="'use strict';
var _interopRequireWildcard = function (obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (typeof obj === 'object' && obj !== null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } };
var _import = require('react-tools/build/modules/React');
var React = _interopRequireWildcard(_import);
module.exports = React.createClass({
displayName: 'exports',
render: function render() {
return React.createElement('div', null);
}
});"><pre class="notranslate"><span class="pl-s">'use strict'</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-en">_interopRequireWildcard</span> <span class="pl-c1">=</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">obj</span> <span class="pl-c1">&&</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-c1">__esModule</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">newObj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">obj</span> <span class="pl-c1">===</span> <span class="pl-s">'object'</span> <span class="pl-c1">&&</span> <span class="pl-s1">obj</span> <span class="pl-c1">!==</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">hasOwnProperty</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-s1">newObj</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-s1">newObj</span><span class="pl-kos">[</span><span class="pl-s">'default'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">newObj</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">_import</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react-tools/build/modules/React'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">React</span> <span class="pl-c1">=</span> <span class="pl-en">_interopRequireWildcard</span><span class="pl-kos">(</span><span class="pl-s1">_import</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createClass</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">displayName</span>: <span class="pl-s">'exports'</span><span class="pl-kos">,</span>
<span class="pl-en">render</span>: <span class="pl-k">function</span> <span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'div'</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><span class="pl-kos">;</span></pre></div>
<p dir="auto">And it does as of 5.1.13.</p>
<p dir="auto">However, 5.3.3 produces:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="'use strict';
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj['default'] = obj; return newObj; } }
var _reactToolsBuildModulesReact = require('react-tools/build/modules/React');
var React = _interopRequireWildcard(_reactToolsBuildModulesReact);
'use strict';
module.exports = React.createClass({
displayName: 'exports',
render: function render() {
return React.createElement('div', null);
}
});"><pre class="notranslate"><span class="pl-s">'use strict'</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">_interopRequireWildcard</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">obj</span> <span class="pl-c1">&&</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-c1">__esModule</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">newObj</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">obj</span> <span class="pl-c1">!=</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">obj</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">hasOwnProperty</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">obj</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-s1">newObj</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-s1">newObj</span><span class="pl-kos">[</span><span class="pl-s">'default'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">newObj</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">_reactToolsBuildModulesReact</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'react-tools/build/modules/React'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">React</span> <span class="pl-c1">=</span> <span class="pl-en">_interopRequireWildcard</span><span class="pl-kos">(</span><span class="pl-s1">_reactToolsBuildModulesReact</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s">'use strict'</span><span class="pl-kos">;</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createClass</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">displayName</span>: <span class="pl-s">'exports'</span><span class="pl-kos">,</span>
<span class="pl-en">render</span>: <span class="pl-k">function</span> <span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'div'</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><span class="pl-kos">;</span></pre></div>
<p dir="auto">Note the extra <code class="notranslate">'use strict';</code> on line 9.</p> | <p dir="auto">If you define a getter/setter in a class and then override the setter in a subclass without overriding the getter, the getter from the parent class gets erased. This is also an issue with Traceur.</p>
<p dir="auto">Example:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Foo {
get foo() {
return this._foo || "";
}
set foo(foo) {
this._foo = foo;
}
}
class Bar extends Foo {
set foo(foo) {
super.foo = foo;
}
}
let bar = new Bar();
console.log(typeof bar.foo); // undefined, should be string"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">Foo</span> <span class="pl-kos">{</span>
<span class="pl-k">get</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_foo</span> <span class="pl-c1">||</span> <span class="pl-s">""</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">set</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">foo</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">_foo</span> <span class="pl-c1">=</span> <span class="pl-s1">foo</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-v">Bar</span> <span class="pl-k">extends</span> <span class="pl-v">Foo</span> <span class="pl-kos">{</span>
<span class="pl-k">set</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">foo</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">super</span><span class="pl-kos">.</span><span class="pl-c1">foo</span> <span class="pl-c1">=</span> <span class="pl-s1">foo</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">let</span> <span class="pl-s1">bar</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Bar</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">bar</span><span class="pl-kos">.</span><span class="pl-c1">foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// undefined, should be string</span></pre></div>
<p dir="auto">Generates the following code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var _set = function set(object, property, value, receiver) { var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent !== null) { set(parent, property, value, receiver); } } else if ("value" in desc && desc.writable) { desc.value = value; } else { var setter = desc.set; if (setter !== undefined) { setter.call(receiver, value); } } return value; };
var _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; desc = parent = getter = undefined; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; continue _function; } } else if ("value" in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var Foo = (function () {
function Foo() {
_classCallCheck(this, Foo);
}
_createClass(Foo, [{
key: "foo",
get: function get() {
return this._foo || "";
},
set: function set(foo) {
this._foo = foo;
}
}]);
return Foo;
})();
var Bar = (function (_Foo) {
_inherits(Bar, _Foo);
function Bar() {
_classCallCheck(this, Bar);
_get(Object.getPrototypeOf(Bar.prototype), "constructor", this).apply(this, arguments);
}
_createClass(Bar, [{
key: "foo",
set: function set(foo) {
_set(Object.getPrototypeOf(Bar.prototype), "foo", foo, this);
}
// <---- getter is erased here
}]);
return Bar;
})(Foo);
var bar = new Bar();
console.log(typeof bar.foo); // undefined, should be string"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-en">_set</span> <span class="pl-c1">=</span> <span class="pl-k">function</span> <span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s1">object</span><span class="pl-kos">,</span> <span class="pl-s1">property</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">,</span> <span class="pl-s1">receiver</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">desc</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getOwnPropertyDescriptor</span><span class="pl-kos">(</span><span class="pl-s1">object</span><span class="pl-kos">,</span> <span class="pl-s1">property</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">desc</span> <span class="pl-c1">===</span> <span class="pl-c1">undefined</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">parent</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getPrototypeOf</span><span class="pl-kos">(</span><span class="pl-s1">object</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">parent</span> <span class="pl-c1">!==</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s1">parent</span><span class="pl-kos">,</span> <span class="pl-s1">property</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">,</span> <span class="pl-s1">receiver</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">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s">"value"</span> <span class="pl-k">in</span> <span class="pl-s1">desc</span> <span class="pl-c1">&&</span> <span class="pl-s1">desc</span><span class="pl-kos">.</span><span class="pl-c1">writable</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">desc</span><span class="pl-kos">.</span><span class="pl-c1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">value</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">setter</span> <span class="pl-c1">=</span> <span class="pl-s1">desc</span><span class="pl-kos">.</span><span class="pl-c1">set</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">setter</span> <span class="pl-c1">!==</span> <span class="pl-c1">undefined</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">setter</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">receiver</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-s1">value</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-en">_get</span> <span class="pl-c1">=</span> <span class="pl-k">function</span> <span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-s1">_x</span><span class="pl-kos">,</span> <span class="pl-s1">_x2</span><span class="pl-kos">,</span> <span class="pl-s1">_x3</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">_again</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> _function: <span class="pl-k">while</span> <span class="pl-kos">(</span><span class="pl-s1">_again</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">object</span> <span class="pl-c1">=</span> <span class="pl-s1">_x</span><span class="pl-kos">,</span> <span class="pl-s1">property</span> <span class="pl-c1">=</span> <span class="pl-s1">_x2</span><span class="pl-kos">,</span> <span class="pl-s1">receiver</span> <span class="pl-c1">=</span> <span class="pl-s1">_x3</span><span class="pl-kos">;</span> <span class="pl-s1">desc</span> <span class="pl-c1">=</span> <span class="pl-s1">parent</span> <span class="pl-c1">=</span> <span class="pl-s1">getter</span> <span class="pl-c1">=</span> <span class="pl-c1">undefined</span><span class="pl-kos">;</span> <span class="pl-s1">_again</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">object</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-s1">object</span> <span class="pl-c1">=</span> <span class="pl-v">Function</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">desc</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getOwnPropertyDescriptor</span><span class="pl-kos">(</span><span class="pl-s1">object</span><span class="pl-kos">,</span> <span class="pl-s1">property</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">desc</span> <span class="pl-c1">===</span> <span class="pl-c1">undefined</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">parent</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getPrototypeOf</span><span class="pl-kos">(</span><span class="pl-s1">object</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">parent</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-c1">undefined</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-s1">_x</span> <span class="pl-c1">=</span> <span class="pl-s1">parent</span><span class="pl-kos">;</span> <span class="pl-s1">_x2</span> <span class="pl-c1">=</span> <span class="pl-s1">property</span><span class="pl-kos">;</span> <span class="pl-s1">_x3</span> <span class="pl-c1">=</span> <span class="pl-s1">receiver</span><span class="pl-kos">;</span> <span class="pl-s1">_again</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-k">continue</span> _function<span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s">"value"</span> <span class="pl-k">in</span> <span class="pl-s1">desc</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s1">desc</span><span class="pl-kos">.</span><span class="pl-c1">value</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">getter</span> <span class="pl-c1">=</span> <span class="pl-s1">desc</span><span class="pl-kos">.</span><span class="pl-c1">get</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">getter</span> <span class="pl-c1">===</span> <span class="pl-c1">undefined</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-c1">undefined</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-s1">getter</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">receiver</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">var</span> <span class="pl-s1">_createClass</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">function</span> <span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">props</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> <span class="pl-s1">i</span> <span class="pl-c1"><</span> <span class="pl-s1">props</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">descriptor</span> <span class="pl-c1">=</span> <span class="pl-s1">props</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">enumerable</span> <span class="pl-c1">=</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">enumerable</span> <span class="pl-c1">||</span> <span class="pl-c1">false</span><span class="pl-kos">;</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">configurable</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s">"value"</span> <span class="pl-k">in</span> <span class="pl-s1">descriptor</span><span class="pl-kos">)</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">writable</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperty</span><span class="pl-kos">(</span><span class="pl-s1">target</span><span class="pl-kos">,</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">key</span><span class="pl-kos">,</span> <span class="pl-s1">descriptor</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span> <span class="pl-k">return</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-v">Constructor</span><span class="pl-kos">,</span> <span class="pl-s1">protoProps</span><span class="pl-kos">,</span> <span class="pl-s1">staticProps</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">protoProps</span><span class="pl-kos">)</span> <span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-v">Constructor</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-s1">protoProps</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">staticProps</span><span class="pl-kos">)</span> <span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-v">Constructor</span><span class="pl-kos">,</span> <span class="pl-s1">staticProps</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-v">Constructor</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">_inherits</span><span class="pl-kos">(</span><span class="pl-s1">subClass</span><span class="pl-kos">,</span> <span class="pl-s1">superClass</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">superClass</span> <span class="pl-c1">!==</span> <span class="pl-s">"function"</span> <span class="pl-c1">&&</span> <span class="pl-s1">superClass</span> <span class="pl-c1">!==</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">TypeError</span><span class="pl-kos">(</span><span class="pl-s">"Super expression must either be null or a function, not "</span> <span class="pl-c1">+</span> <span class="pl-k">typeof</span> <span class="pl-s1">superClass</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-s1">subClass</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">create</span><span class="pl-kos">(</span><span class="pl-s1">superClass</span> <span class="pl-c1">&&</span> <span class="pl-s1">superClass</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">constructor</span>: <span class="pl-kos">{</span> <span class="pl-c1">value</span>: <span class="pl-s1">subClass</span><span class="pl-kos">,</span> <span class="pl-c1">enumerable</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span> <span class="pl-c1">writable</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c1">configurable</span>: <span class="pl-c1">true</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">superClass</span><span class="pl-kos">)</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">setPrototypeOf</span> ? <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">setPrototypeOf</span><span class="pl-kos">(</span><span class="pl-s1">subClass</span><span class="pl-kos">,</span> <span class="pl-s1">superClass</span><span class="pl-kos">)</span> : <span class="pl-s1">subClass</span><span class="pl-kos">.</span><span class="pl-c1">__proto__</span> <span class="pl-c1">=</span> <span class="pl-s1">superClass</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">_classCallCheck</span><span class="pl-kos">(</span><span class="pl-s1">instance</span><span class="pl-kos">,</span> <span class="pl-v">Constructor</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-kos">(</span><span class="pl-s1">instance</span> <span class="pl-k">instanceof</span> <span class="pl-v">Constructor</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-v">TypeError</span><span class="pl-kos">(</span><span class="pl-s">"Cannot call a class as a function"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-v">Foo</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">function</span> <span class="pl-v">Foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">_classCallCheck</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-v">Foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">_createClass</span><span class="pl-kos">(</span><span class="pl-v">Foo</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">{</span>
<span class="pl-c1">key</span>: <span class="pl-s">"foo"</span><span class="pl-kos">,</span>
<span class="pl-en">get</span>: <span class="pl-k">function</span> <span class="pl-en">get</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_foo</span> <span class="pl-c1">||</span> <span class="pl-s">""</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-en">set</span>: <span class="pl-k">function</span> <span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s1">foo</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">_foo</span> <span class="pl-c1">=</span> <span class="pl-s1">foo</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-v">Foo</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-v">Bar</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">_Foo</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">_inherits</span><span class="pl-kos">(</span><span class="pl-v">Bar</span><span class="pl-kos">,</span> <span class="pl-s1">_Foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-v">Bar</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">_classCallCheck</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-v">Bar</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">_get</span><span class="pl-kos">(</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getPrototypeOf</span><span class="pl-kos">(</span><span class="pl-v">Bar</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s">"constructor"</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">apply</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-smi">arguments</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">_createClass</span><span class="pl-kos">(</span><span class="pl-v">Bar</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">{</span>
<span class="pl-c1">key</span>: <span class="pl-s">"foo"</span><span class="pl-kos">,</span>
<span class="pl-en">set</span>: <span class="pl-k">function</span> <span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-s1">foo</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">_set</span><span class="pl-kos">(</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getPrototypeOf</span><span class="pl-kos">(</span><span class="pl-v">Bar</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s">"foo"</span><span class="pl-kos">,</span> <span class="pl-s1">foo</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">// <---- getter is erased here</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-v">Bar</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-v">Foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">bar</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">Bar</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-k">typeof</span> <span class="pl-s1">bar</span><span class="pl-kos">.</span><span class="pl-c1">foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// undefined, should be string</span></pre></div>
<p dir="auto">If this was intended as part of the spec that would be unfortunate as it is quite jarring.</p> | 0 |
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="node_modules/@types/jsdom/index.d.ts(10,10): error TS2305: Module
'"/Users/maoke/project/kemao/party/node_modules/@types/jsdom/node_modules/parse5/lib/index"'
has no exported member 'ElementLocation'."><pre class="notranslate">node_modules/@types/jsdom/index.d.ts(10,10): error TS2305: Module
<span class="pl-s"><span class="pl-pds">'</span>"/Users/maoke/project/kemao/party/node_modules/@types/jsdom/node_modules/parse5/lib/index"<span class="pl-pds">'</span></span>
has no exported member <span class="pl-s"><span class="pl-pds">'</span>ElementLocation<span class="pl-pds">'</span></span>.</pre></div> | <p dir="auto">After the last npm release 1.6.2. projects with @types/angular and @types/jquery fail tslint.<br>
This is caused by angular types now including jqlite.d.ts which clashes with jquery.d.ts</p>
<p dir="auto">The error thrown by the tslint:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node_modules/@types/angular/jqlite.d.ts(799,6): error TS2300: Duplicate identifier 'cssPropertySetter'.
node_modules/@types/jquery/index.d.ts(705,6): error TS2300: Duplicate identifier 'cssPropertySetter'.
node_modules/@types/jquery/index.d.ts(707,5): error TS2374: Duplicate string index signature."><pre class="notranslate"><code class="notranslate">node_modules/@types/angular/jqlite.d.ts(799,6): error TS2300: Duplicate identifier 'cssPropertySetter'.
node_modules/@types/jquery/index.d.ts(705,6): error TS2300: Duplicate identifier 'cssPropertySetter'.
node_modules/@types/jquery/index.d.ts(707,5): error TS2374: Duplicate string index signature.
</code></pre></div> | 0 |
<p dir="auto">When I use a small image for SRGAN training, it runs well, but when I use a 1080P image for generation, the process killed without any related log. The batch is 8 so I don't think it will run out all my GPU memory, also there's no fully connection layer in my SRGAN</p>
<p dir="auto">gpu device: GTX 1060 6G<br>
tf version: 1.0.0<br>
python version: 2.7</p>
<p dir="auto">if my code is required, pleasure to provide it</p> | <h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: N/A</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Win 10</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: pip</li>
<li><strong>TensorFlow version (use command below)</strong>: 1.1.0</li>
<li><strong>Bazel version (if compiling from source)</strong>:</li>
<li><strong>CUDA/cuDNN version</strong>:5.1</li>
<li><strong>GPU model and memory</strong>:k40 12gb</li>
<li><strong>Exact command to reproduce</strong>: launch tensorboard</li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">Tensorboard is 404'ing on a lot of resources. See the error messages below. I think I saw a similar issue somewhere so this may be a duplicate. You're probably aware but thought i'd file just in case.</p>
<h3 dir="auto">Source code / logs</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="WARNING:tensorflow:path ../external\weblas_weblas_js/file/weblas.map.json not found, sending 404
WARNING:tensorflow:path ../external\web_animations_js/web-animations-next-lite.min.js.map not found, sending 404
WARNING:tensorflow:path ../external\weblas_weblas_js/file/weblas.map.json not found, sending 404
WARNING:tensorflow:path ../external\web_animations_js/web-animations-next-lite.min.js.map not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404"><pre class="notranslate"><code class="notranslate">WARNING:tensorflow:path ../external\weblas_weblas_js/file/weblas.map.json not found, sending 404
WARNING:tensorflow:path ../external\web_animations_js/web-animations-next-lite.min.js.map not found, sending 404
WARNING:tensorflow:path ../external\weblas_weblas_js/file/weblas.map.json not found, sending 404
WARNING:tensorflow:path ../external\web_animations_js/web-animations-next-lite.min.js.map not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
WARNING:tensorflow:path ../external\data/plugin/text/runs not found, sending 404
</code></pre></div> | 0 |
<p dir="auto">Since RandomForestClassifier and RandomForestRegressor do not have a max_samples attribute unlike BaggingClassifier and BaggingRegressor, there is no way to set the sub sample size in case of former. This is undesirable in case of large datasets where the individual estimators of the random forest may need to be built on smaller sub-samples of the datasets in order to save computational time.</p> | <h4 dir="auto">Description</h4>
<p dir="auto"><code class="notranslate">train_test_split</code> splits the single sample data such that train part has 0 samples and test has that sample. Also this behaviour is not affected by setting the <code class="notranslate">test_size</code> to any value.</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
from sklearn.model_selection import train_test_split
data = np.random.normal(0, 1, [1, 100])
print(A.shape)
#Output: (1, 100)
data_train, data_test = train_test_split(data)
print(data_train.shape, data_test.shape)
#Output: ((0, 100), (1, 100))"><pre class="notranslate"><code class="notranslate">import numpy as np
from sklearn.model_selection import train_test_split
data = np.random.normal(0, 1, [1, 100])
print(A.shape)
#Output: (1, 100)
data_train, data_test = train_test_split(data)
print(data_train.shape, data_test.shape)
#Output: ((0, 100), (1, 100))
</code></pre></div>
<h4 dir="auto">Expected Results</h4>
<p dir="auto">I am not sure of expected results as this seems like an unintended usage. But still think that at-least a warning (if not error) should be given when splitting.</p>
<h4 dir="auto">Versions</h4>
<p dir="auto">Linux-3.16.0-77-generic-x86_64-with-Ubuntu-14.04-trusty<br>
('Python', '2.7.6 (default, Nov 23 2017, 15:49:48) \n[GCC 4.8.4]')<br>
('NumPy', '1.14.2')<br>
('SciPy', '1.0.1')<br>
('Scikit-Learn', '0.19.1')</p>
<p dir="auto">I am sorry if its a duplicate. I tried searching for similar issues but could not find (even though I thought that this would have been discussed somewhere).</p> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.*</li>
<li>Operating System / Platform => Windows x64</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">In python 3.6.8 using the cv2 library, when using cv2.imwrite as:</p>
<blockquote>
<p dir="auto">cv2.imwrite('path/to/image/myi_image.jpg', my_image)</p>
</blockquote>
<p dir="auto">cv2 does not report an error if the user running the script does not have write permissions to the directory '/path/to/image' as in the above code segment.</p>
<p dir="auto">imwrite just returns false and the error is extremely hard to debug due to no stderr output.</p>
<p dir="auto">In addition, the existence of the directory is also not validated.</p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.2</li>
<li>Operating System / Platform => Windows 64 Bit</li>
<li>Compiler =>Visual Studio 2015</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">The following is the code i use:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="detection_graph = _load_model("deploy.prototxt", "dense121.caffemodel")
detection_graph.setInput(pre_img, "data")
out = detection_graph.forward('result')"><pre class="notranslate"><code class="notranslate">detection_graph = _load_model("deploy.prototxt", "dense121.caffemodel")
detection_graph.setInput(pre_img, "data")
out = detection_graph.forward('result')
</code></pre></div>
<p dir="auto">The prototxt of the model:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="layer {
name: "blstm_input"
type: "Reshape"
bottom: "conv5_transpose"
top: "blstm_input"
reshape_param {
shape { dim: -1 }
axis: 0
num_axes: 2
}
}
layer {
name: "result"
type: "CTCGreedyDecoder"
bottom: "blstm_input"
top: "result"
}"><pre class="notranslate"><code class="notranslate">layer {
name: "blstm_input"
type: "Reshape"
bottom: "conv5_transpose"
top: "blstm_input"
reshape_param {
shape { dim: -1 }
axis: 0
num_axes: 2
}
}
layer {
name: "result"
type: "CTCGreedyDecoder"
bottom: "blstm_input"
top: "result"
}
</code></pre></div>
<p dir="auto">The error that i ran into:<br>
<code class="notranslate">cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\dnn\src\dnn.cpp:525: error: (-2:Unspecified error) Can't create layer "result" of type "CTCGreedyDecoder" in function 'cv::dnn::dnn4_v20190902::LayerData::getLayerInstance'</code><br>
May i know what is the problem and how can i make it works?</p> | 0 |
<blockquote>
<p dir="auto">Please use this form and describe your issue, concisely but precisely, with as much detail as possible</p>
</blockquote>
<blockquote>
<ul dir="auto">
<li>Your Windows build number: (Type <code class="notranslate">ver</code> at a Windows Command Prompt)</li>
</ul>
</blockquote>
<p dir="auto">Microsoft Windows [Version 10.0.17763.379]</p>
<blockquote>
<ul dir="auto">
<li>What you're doing and what's happening: (Copy & paste specific commands and their output, or include screen shots)</li>
</ul>
</blockquote>
<p dir="auto">In less, scrolling down (f) is instantaneous, but scrolling up (u) is extremely slow. For example, if I open <code class="notranslate">man man</code> and hold <code class="notranslate">f</code>, it takes about 1 second to scroll to the end, but if I hold <code class="notranslate">u</code>, it will take about 10 seconds to scroll back to the top.</p>
<p dir="auto">Behavior is similar if I run <code class="notranslate">less</code> on a remote system through SSH, although in that case scrolling up gives the appearance of being 'jerkier'.</p> | <p dir="auto">repasting details from <a href="https://github.com/Microsoft/WSL/issues/3750" data-hovercard-type="issue" data-hovercard-url="/microsoft/WSL/issues/3750/hovercard">here</a>:</p>
<p dir="auto">Please use this form and describe your issue, concisely but precisely, with as much detail as possible</p>
<p dir="auto"><strong>Please fill out the below information:</strong><br>
Version 1809 (OS Build 17763.195)</p>
<ul dir="auto">
<li>
<p dir="auto">Summary<br>
I updated to win10 ver 1809 today (<strong>previously</strong> ran 1803 without issue), and one of the first things i noticed is that when within using GNU screen the redraw is noticeably <em>slower</em>, when using <em>caption</em> value in .screenrc.</p>
</li>
<li>
<p dir="auto">Environment<br>
Here's the contents of an example $HOME/.screenrc:</p>
</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="caption always '%{= kw}[ %{y}%H%{-} ][ %= %-Lw%{+b M}%n%f* %t%{-}%+LW %= ][ %{r}%l%{-} ][ %{c}%c%{-} ]'"><pre class="notranslate"><code class="notranslate">caption always '%{= kw}[ %{y}%H%{-} ][ %= %-Lw%{+b M}%n%f* %t%{-}%+LW %= ][ %{r}%l%{-} ][ %{c}%c%{-} ]'
</code></pre></div>
<p dir="auto">This is a pretty basic setting for screen to draw a floating "status bar" on the bottom showing what screen is selected, and is discussed on <a href="https://lizdenys.com/journal/articles/understanding-gnu-screens-captions.html" rel="nofollow">https://lizdenys.com/journal/articles/understanding-gnu-screens-captions.html</a></p>
<p dir="auto">Only <strong>after i updated to 1809</strong>, i noticed that when launching GNU screen from within WSL (triggered via bash.exe), and doing something that requires the screen to re-draw scrolling text, the refresh rate is pretty slow (e.g. doing something like <code class="notranslate">ls -l /usr/bin</code> takes several seconds instead of being near instance when not using that setting in screen.</p>
<p dir="auto">I've also tried resetting my environment entirely (wiping out all bash shell settings files e.g. $HOME/.bashrc and $HOME/.bash_profile). I narrowed it down to that captions always line being the culprit. I was first noticed how painful running ps auxwww was on a remote linux system :-(</p>
<ul dir="auto">
<li>What you're doing and what's happening:<br>
generating output that exceeds the size of the window, resulting in scrolling behaviour. the redraw of the text from scrolling, results in a rate that makes me think i'm back on my first 486 computer</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ echo "caption always '%{= kw}[ %{y}%H%{-} ][ %= %-Lw%{+b M}%n%f* %t%{-}%+LW %= ][ %{r}%l%{-} ][ %{c}%c%{-} ]'" > .screenrc
$ screen
[... inside new screen ...]
$ ls -l /usr/bin"><pre class="notranslate"><code class="notranslate">$ echo "caption always '%{= kw}[ %{y}%H%{-} ][ %= %-Lw%{+b M}%n%f* %t%{-}%+LW %= ][ %{r}%l%{-} ][ %{c}%c%{-} ]'" > .screenrc
$ screen
[... inside new screen ...]
$ ls -l /usr/bin
</code></pre></div>
<ul dir="auto">
<li>What's wrong / what should be happening instead:<br>
time to perform a simple "dir" (via <code class="notranslate">ls -l /usr/bin</code>) takes ~20 seconds inside GNU screen</li>
</ul>
<p dir="auto">this same listing takes only a second and a half when not using GNU screen at all (or not using that captions always line in $HOME/.screenrc) .</p>
<p dir="auto">whether or not using a screen multiplexer like GNU screen should not affect the refresh time, at least it didn't before i upgraded to win10 ver 1809 today.</p>
<ul dir="auto">
<li>Strace of the failing command, if applicable:<br>
not applicable, running the ls comand using time reports nearly identical values:</li>
</ul>
<p dir="auto">outside of screen:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="real 0m1.240s
user 0m0.016s
sys 0m0.063s"><pre class="notranslate"><code class="notranslate">real 0m1.240s
user 0m0.016s
sys 0m0.063s
</code></pre></div>
<p dir="auto">inside screen:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="real 0m0.069s
user 0m0.000s
sys 0m0.063s"><pre class="notranslate"><code class="notranslate">real 0m0.069s
user 0m0.000s
sys 0m0.063s
</code></pre></div>
<p dir="auto">Which makes it seem that the comand isn't what's running any slower (in fact it reports it ran faster?) but the drawing the scrolling text is what's in-fact impacted.</p> | 1 |
<p dir="auto">Calling "require('node-expat')" results in "Error: A dynamic link library (DLL) initialization routine failed"</p>
<p dir="auto">Platforms: tested with Windows 8.1 64 and x86 (virtual machine)<br>
Versions: VSCode 0.10.5, Node.js 4.1.1 ia64 or x86; or Node.js 5.3.0 ia64 or x86, Python 2.7.11, node-expat 2.3.9, Visual Studio 2013 Ultimate (on ia64) or 2015 Community (on x86)</p>
<p dir="auto">On my ia64 machine, I have attempted installing both ia64 and x86 versions of Node.js and Python.</p>
<p dir="auto">For x86, I performed a clean test on a fresh VM: installed VSCode 0.10.5, Node.js 5.3.0 x86, Python 2.7.11, and VS 2015 Community. Then I created the "Hello World" example (via yo), added "node-expat": "2.3.9" to the project dependencies, and then added "var x = require ('node-expat') to the extension initialization routine. When the extension activates, I get the above error.</p>
<p dir="auto">... does VSCode support extensions with binary dependencies? Should this be documented?</p>
<p dir="auto">EDIT: this appears to be a duplicate of bug <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="118914382" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/658" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/658/hovercard" href="https://github.com/microsoft/vscode/issues/658">#658</a></p> | <p dir="auto">Using the latest build of VS Code (0.10.6), the following crash occurs:</p>
<p dir="auto">Process: Electron [7389]<br>
Path: /Users/USER/Desktop/Visual Studio Code.app/Contents/MacOS/Electron<br>
Identifier: com.microsoft.VSCode<br>
Version: 0.10.6 (0.10.6)<br>
Code Type: X86-64 (Native)<br>
Parent Process: launchd [131]<br>
User ID: 501</p>
<p dir="auto">Date/Time: 2016-02-06 10:12:45.512 -0500<br>
OS Version: Mac OS X 10.8.5 (12F2560)<br>
Report Version: 10</p>
<p dir="auto">Interval Since Last Report: 230025 sec<br>
Crashes Since Last Report: 1<br>
Per-App Crashes Since Last Report: 1<br>
Anonymous UUID: 8592C13A-8FCF-0282-BE3B-51DFB56019F7</p>
<p dir="auto">Crashed Thread: 0 Dispatch queue: com.apple.main-thread</p>
<p dir="auto">Exception Type: EXC_BAD_ACCESS (SIGSEGV)<br>
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000</p>
<p dir="auto">VM Regions Near 0:<br>
--><br>
__TEXT 000000010cff3000-000000010cff4000 [ 4K] r-x/rwx SM=COW /Users/USER/Desktop/Visual Studio Code.app/Contents/MacOS/Electron</p>
<p dir="auto">Thread 0 Crashed:: Dispatch queue: com.apple.main-thread<br>
0 libsystem_c.dylib 0x00007fff8daae670 strlen + 16<br>
1 com.github.electron.framework 0x000000010eced932 0x10cffc000 + 30349618<br>
2 com.github.electron.framework 0x000000010d0747c0 atom::AtomBrowserMainParts::PreMainMessageLoopStart() + 16<br>
3 com.github.electron.framework 0x000000010d669d53 0x10cffc000 + 6741331<br>
4 com.github.electron.framework 0x000000010d66f55c 0x10cffc000 + 6763868<br>
5 com.github.electron.framework 0x000000010d669547 0x10cffc000 + 6739271<br>
6 com.github.electron.framework 0x000000010d5f345c 0x10cffc000 + 6255708<br>
7 com.github.electron.framework 0x000000010d5f2ab6 0x10cffc000 + 6253238<br>
8 com.github.electron.framework 0x000000010cffe24d AtomMain + 77<br>
9 com.microsoft.VSCode 0x000000010cff3eea main + 58<br>
10 libdyld.dylib 0x00007fff920b07e1 start + 1</p>
<p dir="auto">Thread 1:<br>
0 libsystem_kernel.dylib 0x00007fff928eb6d6 __workq_kernreturn + 10<br>
1 libsystem_c.dylib 0x00007fff8dac2f1c _pthread_workq_return + 25<br>
2 libsystem_c.dylib 0x00007fff8dac2ce3 _pthread_wqthread + 412<br>
3 libsystem_c.dylib 0x00007fff8daad191 start_wqthread + 13</p>
<p dir="auto">Thread 2:: Dispatch queue: com.apple.libdispatch-manager<br>
0 libsystem_kernel.dylib 0x00007fff928ebd16 kevent + 10<br>
1 libdispatch.dylib 0x00007fff937f6dea _dispatch_mgr_invoke + 883<br>
2 libdispatch.dylib 0x00007fff937f69ee _dispatch_mgr_thread + 54</p>
<p dir="auto">Thread 3:<br>
0 libsystem_kernel.dylib 0x00007fff928eb6d6 __workq_kernreturn + 10<br>
1 libsystem_c.dylib 0x00007fff8dac2f1c _pthread_workq_return + 25<br>
2 libsystem_c.dylib 0x00007fff8dac2ce3 _pthread_wqthread + 412<br>
3 libsystem_c.dylib 0x00007fff8daad191 start_wqthread + 13</p>
<p dir="auto">Thread 4:: WorkerPool/13827<br>
0 libsystem_kernel.dylib 0x00007fff928eb0fa __psynch_cvwait + 10<br>
1 libsystem_c.dylib 0x00007fff8dac4ff3 _pthread_cond_wait + 927<br>
2 com.github.electron.framework 0x000000010d1bd04b 0x10cffc000 + 1839179<br>
3 com.github.electron.framework 0x000000010d1cf44c 0x10cffc000 + 1913932<br>
4 com.github.electron.framework 0x000000010d1cf904 0x10cffc000 + 1915140<br>
5 com.github.electron.framework 0x000000010d1c9d8b 0x10cffc000 + 1891723<br>
6 libsystem_c.dylib 0x00007fff8dac0772 _pthread_start + 327<br>
7 libsystem_c.dylib 0x00007fff8daad1a1 thread_start + 13</p>
<p dir="auto">Thread 5:: WorkerPool/12811<br>
0 libsystem_kernel.dylib 0x00007fff928eb0fa __psynch_cvwait + 10<br>
1 libsystem_c.dylib 0x00007fff8dac4ff3 _pthread_cond_wait + 927<br>
2 com.github.electron.framework 0x000000010d1bd04b 0x10cffc000 + 1839179<br>
3 com.github.electron.framework 0x000000010d1cf44c 0x10cffc000 + 1913932<br>
4 com.github.electron.framework 0x000000010d1cf904 0x10cffc000 + 1915140<br>
5 com.github.electron.framework 0x000000010d1c9d8b 0x10cffc000 + 1891723<br>
6 libsystem_c.dylib 0x00007fff8dac0772 _pthread_start + 327<br>
7 libsystem_c.dylib 0x00007fff8daad1a1 thread_start + 13</p>
<p dir="auto">Thread 0 crashed with X86 Thread State (64-bit):<br>
rax: 0x00000000ffffffff rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0x0000000000000000<br>
rdi: 0x0000000000000000 rsi: 0x00007fff8c867990 rbp: 0x00007fff52c0c950 rsp: 0x00007fff52c0c918<br>
r8: 0x00007f9282a094d0 r9: 0x0000000013375880 r10: 0x00007f9281c1b0d0 r11: 0x00007fff8d7930d1<br>
r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x00000001108db475 r15: 0x00007f9282c014e8<br>
rip: 0x00007fff8daae670 rfl: 0x0000000000010286 cr2: 0x0000000000000000<br>
Logical CPU: 2</p>
<p dir="auto">Binary Images:<br>
0x10cff3000 - 0x10cff3ff7 +com.microsoft.VSCode (0.10.6 - 0.10.6) <44B59DC7-17C0-344E-9476-89F506703390> /Users/USER/Desktop/Visual Studio Code.app/Contents/MacOS/Electron<br>
0x10cffc000 - 0x110637fc7 +com.github.electron.framework (0) <43F22AD4-5877-3725-9B48-F48327AAB615> /Users/USER/Desktop/Visual Studio Code.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework<br>
0x110e30000 - 0x110e45ff7 +com.github.Squirrel (1.0 - 1) /Users/USER/Desktop/Visual Studio Code.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel<br>
0x110e66000 - 0x110ec9ff7 +org.reactivecocoa.ReactiveCocoa (1.0 - 1) <701B20DE-3ADD-3643-B52A-E05744C30DB3> /Users/USER/Desktop/Visual Studio Code.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa<br>
0x110f3f000 - 0x110f53fff +org.mantle.Mantle (1.0 - ???) <31915DD6-48E6-3706-A076-C9D4CE17F4F6> /Users/USER/Desktop/Visual Studio Code.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle<br>
0x110f6d000 - 0x111b26ff7 +libnode.dylib (0) /Users/USER/Desktop/Visual Studio Code.app/Contents/Frameworks/Electron Framework.framework/Versions/A/Libraries/libnode.dylib<br>
0x111f1e000 - 0x111f68ff7 com.apple.audio.midi.CoreMIDI (1.9 - 78) <28B1D3A5-973A-359A-99DC-18BE8C30C6B8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI<br>
0x111f98000 - 0x112932a97 com.apple.CoreGraphics (1.600.0 - 340.4) <1B66B1D3-C371-329C-92AB-45C262241649> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics<br>
0x7fff6cbf3000 - 0x7fff6cc2794f dyld (210.2.3) <8958FE97-5830-3928-BC38-23136E7D3783> /usr/lib/dyld<br>
0x7fff8aa40000 - 0x7fff8aa47fff libGFXShared.dylib (8.10.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib<br>
0x7fff8aa48000 - 0x7fff8aa55fff libbz2.1.0.dylib (29) /usr/lib/libbz2.1.0.dylib<br>
0x7fff8aca6000 - 0x7fff8ad80fff com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup<br>
0x7fff8ad81000 - 0x7fff8ad98fff com.apple.GenerationalStorage (1.1 - 132.3) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage<br>
0x7fff8ad99000 - 0x7fff8ad9afff liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib<br>
0x7fff8ad9b000 - 0x7fff8ade7ff7 libauto.dylib (185.4) /usr/lib/libauto.dylib<br>
0x7fff8ae41000 - 0x7fff8af13ff7 com.apple.CoreText (275.18 - 275.18) <1574E725-4AED-3439-B6AA-E30F6BD7A9ED> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText<br>
0x7fff8af7d000 - 0x7fff8afaeff7 com.apple.DictionaryServices (1.2 - 184.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices<br>
0x7fff8afaf000 - 0x7fff8affcfff com.apple.CoreMediaIO (309.0 - 4163.1) <8FD1C1A9-25C5-3B9E-A76D-BE813253B358> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO<br>
0x7fff8b030000 - 0x7fff8b2d4ff7 com.apple.CoreImage (8.4.0 - 1.0.1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage<br>
0x7fff8b2d5000 - 0x7fff8b320fff com.apple.CoreMedia (1.0 - 926.107) <405690E6-D857-3136-AC3A-5EDC6C3ABF60> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia<br>
0x7fff8b321000 - 0x7fff8b321fff com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate<br>
0x7fff8b322000 - 0x7fff8b3bcfff libvMisc.dylib (380.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib<br>
0x7fff8b3bd000 - 0x7fff8b52eff7 com.apple.QTKit (7.7.1 - 2599.54) <12F9CD59-5BCC-3847-BA6F-2002DC865DFE> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit<br>
0x7fff8b534000 - 0x7fff8b597fff com.apple.audio.CoreAudio (4.1.2 - 4.1.2) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio<br>
0x7fff8b598000 - 0x7fff8b600fff libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib<br>
0x7fff8b68c000 - 0x7fff8b6e6ff7 com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL<br>
0x7fff8b744000 - 0x7fff8b745ff7 libSystem.B.dylib (169.3) /usr/lib/libSystem.B.dylib<br>
0x7fff8b746000 - 0x7fff8b766fff libPng.dylib (854) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib<br>
0x7fff8b7af000 - 0x7fff8b81dfff com.apple.framework.IOKit (2.0.1 - 755.42.2) <18E64CC5-2671-3C47-B2C6-0EEEDF899461> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit<br>
0x7fff8b86a000 - 0x7fff8b8d7ff7 com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore<br>
0x7fff8b8d8000 - 0x7fff8b8dafff libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib<br>
0x7fff8b8db000 - 0x7fff8ba50fff com.apple.CFNetwork (596.6.4 - 596.6.4) <23B87D38-D2C1-38FE-8407-471F0CEB2748> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork<br>
0x7fff8ba51000 - 0x7fff8ba57ff7 libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib<br>
0x7fff8ba58000 - 0x7fff8ba65ff7 com.apple.NetAuth (4.0 - 4.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth<br>
0x7fff8ba66000 - 0x7fff8ba7dfff com.apple.CFOpenDirectory (10.8 - 151.10) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory<br>
0x7fff8ba7e000 - 0x7fff8baaafff com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211<br>
0x7fff8be96000 - 0x7fff8be99fff com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help<br>
0x7fff8be9a000 - 0x7fff8bee4ff7 libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib<br>
0x7fff8bee5000 - 0x7fff8cb12fff com.apple.AppKit (6.8 - 1187.40) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit<br>
0x7fff8cb14000 - 0x7fff8cb3cfff libJPEG.dylib (854) <000ADF07-A59C-36F8-9894-CD03F6CFBC1E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib<br>
0x7fff8cb94000 - 0x7fff8cbe0fff com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN<br>
0x7fff8cbe1000 - 0x7fff8cc1efef libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib<br>
0x7fff8cc1f000 - 0x7fff8cc33fff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis<br>
0x7fff8cc34000 - 0x7fff8cc47ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis<br>
0x7fff8cc48000 - 0x7fff8cca4ff7 com.apple.Symbolication (1.3 - 93) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication<br>
0x7fff8cca5000 - 0x7fff8cca7fff libCVMSPluginSupport.dylib (8.10.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib<br>
0x7fff8cd9a000 - 0x7fff8cda5ff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement<br>
0x7fff8cda6000 - 0x7fff8cdc8ff7 com.apple.Kerberos (2.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos<br>
0x7fff8cdc9000 - 0x7fff8ce1aff7 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration<br>
0x7fff8cf85000 - 0x7fff8d023ff7 com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink<br>
0x7fff8d026000 - 0x7fff8d05cfff com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols<br>
0x7fff8d09b000 - 0x7fff8d60bff7 com.apple.CoreAUC (6.22.03 - 6.22.03) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC<br>
0x7fff8d6c1000 - 0x7fff8d717fff com.apple.HIServices (1.20 - 417) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices<br>
0x7fff8d718000 - 0x7fff8d71aff7 com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print<br>
0x7fff8d71b000 - 0x7fff8d71cfff libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib<br>
0x7fff8d71d000 - 0x7fff8d724fff com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS<br>
0x7fff8d725000 - 0x7fff8da84fff com.apple.Foundation (6.8 - 945.19) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation<br>
0x7fff8da96000 - 0x7fff8daa4ff7 libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib<br>
0x7fff8daac000 - 0x7fff8db78ff7 libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib<br>
0x7fff8dba8000 - 0x7fff8dba9ff7 libsystem_sandbox.dylib (220.4) /usr/lib/system/libsystem_sandbox.dylib<br>
0x7fff8dbaa000 - 0x7fff8dbaeff7 com.apple.CommonPanels (1.2.5 - 94) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels<br>
0x7fff8dc64000 - 0x7fff8dc68ff7 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC<br>
0x7fff8dc69000 - 0x7fff8dc76fff com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression<br>
0x7fff8e52d000 - 0x7fff8e646fff com.apple.ImageIO.framework (3.2.2 - 854) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO<br>
0x7fff8e697000 - 0x7fff8e754ff7 com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync<br>
0x7fff8e755000 - 0x7fff8eb4cfff libLAPACK.dylib (1073.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib<br>
0x7fff8eb4d000 - 0x7fff8eb83fff libsystem_info.dylib (406.18) <32D9AC7E-3906-3EA7-9FEB-4BD333F14A01> /usr/lib/system/libsystem_info.dylib<br>
0x7fff8ebd1000 - 0x7fff8ece992f libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib<br>
0x7fff8edb4000 - 0x7fff8f0cbff7 com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore<br>
0x7fff8f0cc000 - 0x7fff8f0f7fff libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib<br>
0x7fff8f0f8000 - 0x7fff8f102fff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition<br>
0x7fff8f103000 - 0x7fff8f103fff com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices<br>
0x7fff8f104000 - 0x7fff8f3e1fff com.apple.security (7.0 - 55719.16.12) /System/Library/Frameworks/Security.framework/Versions/A/Security<br>
0x7fff8f3e2000 - 0x7fff8f3ffff7 com.apple.openscripting (1.3.6 - 148.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting<br>
0x7fff8f400000 - 0x7fff8f520fff com.apple.desktopservices (1.7.4 - 1.7.4) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv<br>
0x7fff8f77d000 - 0x7fff8f7d4ff7 com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface<br>
0x7fff8f7d5000 - 0x7fff8f7d5fff com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa<br>
0x7fff8f7d6000 - 0x7fff8f7d6fff libOpenScriptingUtil.dylib (148.3) /usr/lib/libOpenScriptingUtil.dylib<br>
0x7fff8f7d7000 - 0x7fff8f7e0fff com.apple.CommerceCore (1.0 - 26.3) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore<br>
0x7fff8f7e1000 - 0x7fff8f7e9ff7 libsystem_dnssd.dylib (379.38.1) /usr/lib/system/libsystem_dnssd.dylib<br>
0x7fff8f7ea000 - 0x7fff8fa1fff7 com.apple.CoreData (106.1 - 407.7) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData<br>
0x7fff8fa20000 - 0x7fff8fa6fff7 libcorecrypto.dylib (106.2) /usr/lib/system/libcorecrypto.dylib<br>
0x7fff8fd00000 - 0x7fff9011dfff FaceCoreLight (2.4.1) /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight<br>
0x7fff9025e000 - 0x7fff90262fff libCoreVMClient.dylib (32.5) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib<br>
0x7fff90545000 - 0x7fff90647fff libJP2.dylib (854) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib<br>
0x7fff90651000 - 0x7fff90667fff com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport<br>
0x7fff906c8000 - 0x7fff906d7fff com.apple.opengl (1.8.10 - 1.8.10) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL<br>
0x7fff909d4000 - 0x7fff909dffff libsystem_notify.dylib (98.6) <1E490CB2-9311-3B36-8372-37D3FB0FD818> /usr/lib/system/libsystem_notify.dylib<br>
0x7fff909e0000 - 0x7fff909e4fff libGIF.dylib (854) <21F4F4A3-6F84-3BC3-A736-AB990CE4AD3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib<br>
0x7fff90a9e000 - 0x7fff90c4cfff com.apple.QuartzCore (1.8 - 304.5) <5674D50C-D96C-3A2D-95C5-C93311C7FB56> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore<br>
0x7fff90c55000 - 0x7fff90d61ff7 libFontParser.dylib (84.11) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib<br>
0x7fff90df7000 - 0x7fff90e1eff7 com.apple.PerformanceAnalysis (1.16 - 16) <96A89CD5-16E9-37CA-8740-22B5DB5A4679> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis<br>
0x7fff90e1f000 - 0x7fff90e7efff com.apple.AE (645.6 - 645.7) <2F1E192C-DF34-3903-9F30-27B896699CA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE<br>
0x7fff90e7f000 - 0x7fff90e84fff com.apple.OpenDirectory (10.8 - 151.10) <51E52779-4F5A-36B5-9297-67138547DCA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory<br>
0x7fff90ecf000 - 0x7fff90ef0ff7 libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib<br>
0x7fff9104f000 - 0x7fff9105eff7 libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib<br>
0x7fff9105f000 - 0x7fff9105ffff com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib<br>
0x7fff91060000 - 0x7fff9115dfff libsqlite3.dylib (138.1) /usr/lib/libsqlite3.dylib<br>
0x7fff91164000 - 0x7fff91189ff7 libc++abi.dylib (26) /usr/lib/libc++abi.dylib<br>
0x7fff911b3000 - 0x7fff91202fff com.apple.framework.CoreWiFi (1.3 - 130.13) /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi<br>
0x7fff91203000 - 0x7fff91389fff libBLAS.dylib (1073.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib<br>
0x7fff9138f000 - 0x7fff91579ff7 com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation<br>
0x7fff91587000 - 0x7fff915b1ff7 com.apple.CoreVideo (1.8 - 99.4) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo<br>
0x7fff915b2000 - 0x7fff916afff7 libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib<br>
0x7fff916b0000 - 0x7fff91762ff7 com.apple.LaunchServices (539.14 - 539.14) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices<br>
0x7fff91fa6000 - 0x7fff91fe9ff7 com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices<br>
0x7fff91fea000 - 0x7fff91ffffff com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture<br>
0x7fff92000000 - 0x7fff92000fff com.apple.ApplicationServices (45 - 45) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices<br>
0x7fff92001000 - 0x7fff92060fff libTIFF.dylib (854) <29014639-6085-3F19-AE47-1026F70A3D0D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib<br>
0x7fff92061000 - 0x7fff92061fff com.apple.Carbon (154 - 155) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon<br>
0x7fff92079000 - 0x7fff92087ff7 libkxld.dylib (2050.48.19) /usr/lib/system/libkxld.dylib<br>
0x7fff920a3000 - 0x7fff920a7fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib<br>
0x7fff920a8000 - 0x7fff920adfff libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib<br>
0x7fff920ae000 - 0x7fff920b1ff7 libdyld.dylib (210.2.3) /usr/lib/system/libdyld.dylib<br>
0x7fff920f5000 - 0x7fff920fcff7 libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib<br>
0x7fff9211b000 - 0x7fff9211efff libRadiance.dylib (854) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib<br>
0x7fff92395000 - 0x7fff923b6fff com.apple.Ubiquity (1.2 - 243.15) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity<br>
0x7fff923b7000 - 0x7fff924d1fff com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD<br>
0x7fff924d2000 - 0x7fff924e4ff7 libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib<br>
0x7fff924e5000 - 0x7fff924e5fff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib<br>
0x7fff92513000 - 0x7fff9252eff7 libexpat.1.dylib (12) <95D59F1F-0A5C-3F33-BA97-26F7D796CE7A> /usr/lib/libexpat.1.dylib<br>
0x7fff92533000 - 0x7fff9253ffff com.apple.CoreBluetooth (100.9 - 1) <94C4EAB8-20E6-3892-BD9E-27952318CF32> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth<br>
0x7fff925d0000 - 0x7fff92682fff com.apple.Bluetooth (4.1.7 - 4.1.7f6) <2D72C6B0-5317-3004-83A7-F9975E637013> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth<br>
0x7fff92687000 - 0x7fff927d9fff com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox<br>
0x7fff9281f000 - 0x7fff92876ff7 com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA<br>
0x7fff92877000 - 0x7fff9287ffff liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib<br>
0x7fff92880000 - 0x7fff928a2ff7 libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib<br>
0x7fff928a3000 - 0x7fff928a3ffd com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit<br>
0x7fff928a4000 - 0x7fff928b0fff com.apple.CrashReporterSupport (10.8.3 - 418) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport<br>
0x7fff928d9000 - 0x7fff928f4ff7 libsystem_kernel.dylib (2050.48.19) <81945B94-D6CB-3B77-9E95-0429540B0DF0> /usr/lib/system/libsystem_kernel.dylib<br>
0x7fff9299a000 - 0x7fff92a27ff7 com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit<br>
0x7fff92a28000 - 0x7fff92a3bff7 libbsm.0.dylib (32) /usr/lib/libbsm.0.dylib<br>
0x7fff92fa4000 - 0x7fff9313ffef com.apple.vImage (6.0 - 6.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage<br>
0x7fff93140000 - 0x7fff933f7fff com.apple.MediaToolbox (1.0 - 926.107) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox<br>
0x7fff933f8000 - 0x7fff933f8fff libkeymgr.dylib (25) /usr/lib/system/libkeymgr.dylib<br>
0x7fff933f9000 - 0x7fff933fffff com.apple.DiskArbitration (2.5.2 - 2.5.2) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration<br>
0x7fff93400000 - 0x7fff9343aff7 com.apple.GSS (3.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS<br>
0x7fff9343b000 - 0x7fff9376bfff com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox<br>
0x7fff9378f000 - 0x7fff937bdff7 libsystem_m.dylib (3022.6) /usr/lib/system/libsystem_m.dylib<br>
0x7fff937be000 - 0x7fff937bfff7 libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib<br>
0x7fff937d2000 - 0x7fff937f1ff7 libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib<br>
0x7fff937f2000 - 0x7fff93807ff7 libdispatch.dylib (228.23) /usr/lib/system/libdispatch.dylib<br>
0x7fff93808000 - 0x7fff93827ff7 com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary<br>
0x7fff93828000 - 0x7fff9382afff com.apple.TrustEvaluationAgent (2.0 - 23) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent<br>
0x7fff9382b000 - 0x7fff9382cff7 libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib<br>
0x7fff9383e000 - 0x7fff93844fff libmacho.dylib (829) /usr/lib/system/libmacho.dylib<br>
0x7fff93cf2000 - 0x7fff9412efff com.apple.VideoToolbox (1.0 - 926.107) <6C851058-5598-3207-87E2-577135587425> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox<br>
0x7fff950ef000 - 0x7fff950f0fff libsystem_blocks.dylib (59) /usr/lib/system/libsystem_blocks.dylib<br>
0x7fff95120000 - 0x7fff951bbff7 com.apple.CoreSymbolication (3.0 - 117.3) <7722470A-2BA5-3526-9D3B-D3B9E5B517A7> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication<br>
0x7fff95200000 - 0x7fff9521afff com.apple.CoreMediaAuthoring (2.1 - 914) <5637F52D-3AB9-38FD-B851-265B9F5A2FE8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring<br>
0x7fff9522a000 - 0x7fff952a8fff com.apple.ApplicationServices.ATS (341.2 - 341.5) <6B5001BF-101E-3135-9D1A-AD83ECD73C7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS<br>
0x7fff953bf000 - 0x7fff953cafff com.apple.CommonAuth (3.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth<br>
0x7fff953cb000 - 0x7fff95490ff7 com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI<br>
0x7fff95491000 - 0x7fff954f9ff7 libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib<br>
0x7fff955b2000 - 0x7fff955d9fff com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls<br>
0x7fff955e5000 - 0x7fff955e9fff com.apple.IOSurface (86.0.5 - 86.0.5) <4841B89D-501E-306D-8891-3651AA9326E6> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface<br>
0x7fff958a5000 - 0x7fff95927fff com.apple.Heimdal (3.0 - 2.0) <716C152F-D299-3ACB-BCB0-E51F2D604BD1> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal<br>
0x7fff95b09000 - 0x7fff95b4cff7 com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom<br>
0x7fff95ba3000 - 0x7fff95c24fff com.apple.Metadata (10.7.0 - 707.13) <4F3EAB8E-CF5E-320E-A452-6CAFB96CF590> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata<br>
0x7fff95c25000 - 0x7fff95c2afff libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib<br>
0x7fff95c2b000 - 0x7fff95d89fef com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender<br>
0x7fff95e5e000 - 0x7fff95e9dff7 com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD<br>
0x7fff95e9e000 - 0x7fff95f07fff libstdc++.6.dylib (56) /usr/lib/libstdc++.6.dylib<br>
0x7fff95f41000 - 0x7fff95f90ff7 libFontRegistry.dylib (100.1) <0537E4AD-6CC5-37D1-9846-4F6C46735387> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib<br>
0x7fff96f33000 - 0x7fff96f8dfff com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore<br>
0x7fff96f8e000 - 0x7fff96fa5fff libGL.dylib (8.10.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib<br>
0x7fff96fa6000 - 0x7fff971a6fff libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib<br>
0x7fff971a7000 - 0x7fff971ebfff libcups.2.dylib (327.9) /usr/lib/libcups.2.dylib<br>
0x7fff97206000 - 0x7fff97208ff7 libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib<br>
0x7fff97209000 - 0x7fff972fefff libiconv.2.dylib (34) /usr/lib/libiconv.2.dylib<br>
0x7fff9764b000 - 0x7fff9764dfff com.apple.securityhi (4.0 - 55002) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI<br>
0x7fff9764e000 - 0x7fff976cdff7 com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation<br>
0x7fff976ce000 - 0x7fff976dcfff libcommonCrypto.dylib (60027) /usr/lib/system/libcommonCrypto.dylib<br>
0x7fff976dd000 - 0x7fff97783ff7 com.apple.CoreServices.OSServices (557.6 - 557.6) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices</p>
<p dir="auto">External Modification Summary:<br>
Calls made by other processes targeting this process:<br>
task_for_pid: 2<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: 3447<br>
thread_create: 2<br>
thread_set_state: 0</p>
<p dir="auto">VM Region Summary:<br>
ReadOnly portion of Libraries: Total=237.1M resident=175.0M(74%) swapped_out_or_unallocated=62.2M(26%)<br>
Writable regions: Total=94.0M written=11.8M(13%) resident=12.0M(13%) swapped_out=0K(0%) unallocated=82.0M(87%)</p>
<p dir="auto">REGION TYPE VIRTUAL<br>
=========== =======<br>
CG shared images 96K<br>
MALLOC 56.1M<br>
MALLOC guard page 48K<br>
Memory tag=255 554.1M<br>
Memory tag=255 (reserved) 256K reserved VM address space (unallocated)<br>
STACK GUARD 56.0M<br>
Stack 25.5M<br>
VM_ALLOCATE 16K<br>
__DATA 16.8M<br>
__IMAGE 528K<br>
__LINKEDIT 60.9M<br>
__TEXT 176.3M<br>
__UNICODE 544K<br>
mapped file 45.4M<br>
shared memory 308K<br>
=========== =======<br>
TOTAL 992.8M<br>
TOTAL, minus reserved VM space 992.6M</p>
<p dir="auto">Model: iMac11,3, BootROM IM112.0057.B01, 4 processors, Intel Core i7, 2.93 GHz, 12 GB, SMC 1.59f2<br>
Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB<br>
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x857F, 0x483634353155363446393333334700000000<br>
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020<br>
Memory Module: BANK 0/DIMM1, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353637334648302D4348392020<br>
Memory Module: BANK 1/DIMM1, 4 GB, DDR3, 1333 MHz, 0x857F, 0x483634353155363446393333334700000000<br>
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.72.0-P2P<br>
Bluetooth: Version 6.1.7f5 15859, 3 service, 21 devices, 3 incoming serial ports<br>
Network Service: AirPort, en1<br>
Serial ATA Device: Hitachi HDS722020ALA330, 2 TB<br>
Serial ATA Device: OPTIARC DVD RW AD-5670SC<br>
USB Device: hub_device, 0x0424 (SMSC), 0x2514, 0xfa100000 / 2<br>
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 4<br>
USB Device: HP LaserJet Professional M1212nf MFP, 0x03f0 (Hewlett Packard), 0x052a, 0xfa140000 / 5<br>
USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000 / 3<br>
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 8<br>
USB Device: hub_device, 0x0424 (SMSC), 0x2514, 0xfd100000 / 2<br>
USB Device: Standard USB Keyboard, 0x047b (Silitek Corp.), 0x0011, 0xfd140000 / 5<br>
USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 4<br>
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3</p> | 0 |
<p dir="auto">On a regular <code class="notranslate">TextField</code>, the <code class="notranslate">onChange</code> event handler receives an event parameter that allows to know the name of the <code class="notranslate">TextField</code> as well as the value that was changed to:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="onChange = ({ target: { name, value } }) => {
console.log('textfield changed', name, value); // -> { 'username': 'john-doe' }
}"><pre class="notranslate"><span class="pl-en">onChange</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">target</span>: <span class="pl-kos">{</span> name<span class="pl-kos">,</span> value <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'textfield changed'</span><span class="pl-kos">,</span> <span class="pl-s1">name</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// -> { 'username': 'john-doe' }</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">However, on a <code class="notranslate">TextField</code> with nested options, which renders internally a <code class="notranslate">Select</code>, this is no longer the case. The element given as <code class="notranslate">target</code> in the <code class="notranslate">onChange</code> event is the <code class="notranslate">li</code> of the dropdown list, which only has a <code class="notranslate">value</code>, but no <code class="notranslate">name</code>.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">The <code class="notranslate">onChange</code> event handler of a <code class="notranslate"><TextField name="xyz">{options}</TextField></code> should receive an event object where <code class="notranslate">event.target.name</code> is <code class="notranslate">"xyz"</code>.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">The <code class="notranslate">onChange</code> event handler of a <code class="notranslate"><TextField name="xyz">{options}</TextField></code> receives an event object where <code class="notranslate">event.target.name</code> is <code class="notranslate">undefined</code>.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Visit <a href="https://codesandbox.io/s/nkq35z76wj" rel="nofollow">https://codesandbox.io/s/nkq35z76wj</a></li>
<li>Open the codesandbox.io console on the right bottom area of the page</li>
<li>Change the name text field, see that it changes visually, and the name and value are present in the console</li>
<li>Now change the gender select field. See that it does not change, and the console prints out undefined in place of the actual field name.</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">Having the name reflected in the event target is not only more compatible with how actual form input events work in html, it is also convenient because you can use the same onChange event handler for many input elements, instead of dynamically having to generate a different event handler for different input elements of a form.</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>1.0.0-beta.17</td>
</tr>
<tr>
<td>React</td>
<td>16.0.0</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome latest</td>
</tr>
</tbody>
</table> | <p dir="auto">Tooltips cause horizontal scroll when resizing the window to a smaller one.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Tooltips won't cause horizontal scroll</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Tooltips cause horizontal scroll when the page is resized to a smaller breakpoint.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Open <a href="https://material-ui-1dab0.firebaseapp.com/demos/tooltips/" rel="nofollow">https://material-ui-1dab0.firebaseapp.com/demos/tooltips/</a> in desktop breakpoint size.</li>
<li>Start reducing the width of the window until you see the horizontal scroll bar</li>
<li>If you hover over each tooltip (even the tooltip to expand the example code), you'll see that the horizontal scroll disappear.</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">The <code class="notranslate">transform: translate3d</code> property in the tooltips are the root of the issue. The tooltip is translated to a position but it's never updated when resizing the window, so the tooltip stays out of the viewport.</p>
<p dir="auto">Using the layers tab on chrome devtools can be easily detected.</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.18</td>
</tr>
<tr>
<td>React</td>
<td>15.6.1</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome 61</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p>
<pre class="notranslate">What steps will reproduce the problem?
1. Attempt to build go (6g) with a gcc version which is different from what any of the
developers use, or with different versions of system libraries or tools
What is the expected output?
The go compiler successfully builds for the user who wants to use it, possibly printing
out a couple of new warning messages.
What do you see instead?
The go compiler fails to build, with a silly error message like
cc1: warnings being treated as errors
y.tab.c:5203:9: error: passing argument 1 of 'yyerror' discards qualifiers from pointer
target type
/home/cwalton/Development/go/src/cmd/gc/go.h:1148:6: note: expected 'char *' but
argument is of type 'const char *'
frustrating someone who just wanted to try a new programming language.
Which compiler are you using (5g, 6g, 8g, gccgo)?
Compiling 6g from a mercurial checkout of the release branch as described on the
"getting started" page
Which operating system are you using?
Exherbo Linux with gcc 4.5.3 and bison 2.5
Which revision are you using? (hg identify)
9d7967223815 (release-branch.r57) release/release.r57.2
Please provide any additional information below.
I "fixed" the issue by deleting "-Werror" from quietgcc.bash to get
a successful build which passed all tests and operates correctly.</pre> | <pre class="notranslate">discussion: <a href="http://golang.org/cl/5822049/" rel="nofollow">http://golang.org/cl/5822049/</a>
If we support this feature, we don't need to support handing of any relocations, linking
gcc compiled object files.
Pros: able to link in C++ in cgo; remove a lot of code in our linker.
Cons: dependent on gcc for linking cgo programs, even if I could make all gcc compiled
object files available as .syso files.</pre> | 0 |
<p dir="auto"><a href="http://bootply.com/94624" rel="nofollow">http://bootply.com/94624</a></p>
<p dir="auto">I can't get them to align correct even if I remove the list (Home) and leave only the buttons.</p> | <p dir="auto">A regular size button is properly vertically centered in a navbar:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<button type="submit" class="btn btn-primary navbar-btn" >
Save
</button>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">type</span>="<span class="pl-s">submit</span>" <span class="pl-c1">class</span>="<span class="pl-s">btn btn-primary navbar-btn</span>" <span class="pl-kos">></span>
Save
<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span></pre></div>
<p dir="auto">A xs button is NOT properly vertically centered in a navbar:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<button type="submit" class="btn btn-primary btn-xs navbar-btn" >
Save
</button>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">type</span>="<span class="pl-s">submit</span>" <span class="pl-c1">class</span>="<span class="pl-s">btn btn-primary btn-xs navbar-btn</span>" <span class="pl-kos">></span>
Save
<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span></pre></div>
<p dir="auto">css fix:</p>
<div class="highlight highlight-source-css notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=".btn-xs.navbar-btn {
margin-top: 12px;
}"><pre class="notranslate">.<span class="pl-c1">btn-xs</span>.<span class="pl-c1">navbar-btn</span> {
<span class="pl-c1">margin-top</span><span class="pl-kos">:</span> <span class="pl-c1">12<span class="pl-smi">px</span></span>;
}</pre></div>
<p dir="auto">(And this kind of thing most likely applies to other button sizes)</p> | 1 |
<p dir="auto"><em>Please make sure that this is a bug. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template</em></p>
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow):</li>
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04):Debian</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:</li>
<li>TensorFlow installed from (source or binary):binary</li>
<li>TensorFlow version (use command below):1.13.1,1.14.0,2.0.0a0,1.9.0</li>
<li>Python version:3.7,3.6</li>
<li>Bazel version (if compiling from source):</li>
<li>GCC/Compiler version (if compiling from source):</li>
<li>CUDA/cuDNN version:Cuda 10/7.5.0,7.4.2,7.4.1,7.4.0,Cuda 9 can't support 2060</li>
<li>GPU model and memory:rtx 2060 6GB</li>
</ul>
<p dir="auto">You can collect some of this information using our environment capture<br>
<a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">script</a><br>
You can also obtain the TensorFlow version with: 1. TF 1.0: <code class="notranslate">python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</code> 2. TF 2.0: <code class="notranslate">python -c "import tensorflow as tf; print(tf.version.GIT_VERSION, tf.version.VERSION)"</code></p>
<p dir="auto"><strong>Describe the current behavior</strong></p>
<p dir="auto"><strong>Describe the expected behavior</strong></p>
<p dir="auto"><strong>Code to reproduce the issue</strong><br>
conda activate base<br>
2.0.0-alpha0<br>
2019-05-29 19:58:31.543654: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA<br>
2019-05-29 19:58:31.557759: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcuda.so.1<br>
2019-05-29 19:58:31.670769: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1009] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero<br>
2019-05-29 19:58:31.672348: I tensorflow/compiler/xla/service/service.cc:162] XLA service 0x55c9b57a0a60 executing computations on platform CUDA. Devices:<br>
2019-05-29 19:58:31.672364: I tensorflow/compiler/xla/service/service.cc:169] StreamExecutor device (0): Graphics Device, Compute Capability 7.5<br>
2019-05-29 19:58:31.693201: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 2904000000 Hz<br>
2019-05-29 19:58:31.693619: I tensorflow/compiler/xla/service/service.cc:162] XLA service 0x55c9b580db30 executing computations on platform Host. Devices:<br>
2019-05-29 19:58:31.693637: I tensorflow/compiler/xla/service/service.cc:169] StreamExecutor device (0): ,<br>
2019-05-29 19:58:31.693791: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1467] Found device 0 with properties:<br>
name: Graphics Device major: 7 minor: 5 memoryClockRate(GHz): 1.71<br>
pciBusID: 0000:01:00.0<br>
totalMemory: 5.76GiB freeMemory: 5.17GiB<br>
2019-05-29 19:58:31.693804: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1546] Adding visible gpu devices: 0<br>
2019-05-29 19:58:31.693844: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcudart.so.10.0<br>
2019-05-29 19:58:31.694402: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1015] Device interconnect StreamExecutor with strength 1 edge matrix:<br>
2019-05-29 19:58:31.694413: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1021] 0<br>
2019-05-29 19:58:31.694419: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1034] 0: N<br>
2019-05-29 19:58:31.694516: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1149] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 4990 MB memory) -> physical GPU (device: 0, name: Graphics Device, pci bus id: 0000:01:00.0, compute capability: 7.5)<br>
Number of training examples: 60000<br>
Number of test examples: 10000<br>
Epoch 1/5<br>
2019-05-29 19:58:32.786674: W ./tensorflow/core/framework/model.h:202] Encountered a stop event that was not preceded by a start event.<br>
2019-05-29 19:58:36.114172: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcublas.so.10.0<br>
2019-05-29 19:58:36.288348: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcudnn.so.7<br>
2019-05-29 19:58:36.934479: E tensorflow/stream_executor/cuda/cuda_dnn.cc:338] Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR<br>
2019-05-29 19:58:36.945020: E tensorflow/stream_executor/cuda/cuda_dnn.cc:338] Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR<br>
2019-05-29 19:58:36.945127: W tensorflow/core/common_runtime/base_collective_executor.cc:214] BaseCollectiveExecutor::StartAbort Unknown: Failed to get convolution algorithm. This is probably because cuDNN failed to initialize, so try looking to see if a warning log message was printed above.<br>
[[{{node conv2d/Conv2D}}]]</p>
<p dir="auto"><strong>Other info / logs</strong><br>
Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.</p> | <p dir="auto"><em>Please make sure that this is a bug. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template</em></p>
<p dir="auto"><strong>System information</strong></p>
<ul dir="auto">
<li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow): Yes and No (described below)</li>
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Manjaro</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:</li>
<li>TensorFlow installed from (source or binary): tf-nightly-gpu (Dec 19, r1.13)</li>
<li>TensorFlow version (use command below): 1.13.0-dev20181219</li>
<li>Python version: 3.7.1</li>
<li>Bazel version (if compiling from source):</li>
<li>GCC/Compiler version (if compiling from source):</li>
<li>CUDA/cuDNN version: CUDA 10 with cuDNN 7.4.1</li>
<li>GPU model and memory: RTX 2070 8GB</li>
</ul>
<p dir="auto"><strong>Describe the current behavior</strong><br>
I'm running the CNN model on MNIST. When I'm running with the GPU, I am encountering<br>
<code class="notranslate">2018-12-20 20:09:13.644176: E tensorflow/stream_executor/cuda/cuda_dnn.cc:334] Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR</code></p>
<p dir="auto">I did some digging and realized that it is a memory issue (which shouldn't be the case as I have 32GB of RAM and 64GB of swap. I ran htop when running the model and I have 20+GB free, which is more than enough to fit the 8GB vRAM mappings.</p>
<p dir="auto">Using the <code class="notranslate">gpu_options.allow_growth = True</code> gets the model to work properly, and setting <code class="notranslate">os.environ['CUDA_VISIBLE_DEVICES'] = '-1'</code> also works. This means that I AM facing a memory issue, but I don't see how.</p>
<p dir="auto">Also, using <code class="notranslate">gpu_options.allow_growth = True</code> does not fix the same issue when trying to run tensorflow/models/official/mnist/ model, which should have a similar behavior with my code.</p>
<p dir="auto"><strong>Code to reproduce the issue</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import os
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
import math
import time
# Killing optional CPU driver warnings
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
# os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
tf.logging.set_verbosity(tf.logging.ERROR)
class Model:
def __init__(self, image, label):
"""
A Model class contains a computational graph that classifies images
to predictions. Each of its methods builds part of the graph
on Model initialization. Do not modify the constructor, as doing so
would break the autograder. You may, however, add class variables
to use in your graph-building. e.g. learning rate,
image: the input image to the computational graph as a tensor
label: the correct label of an image as a tensor
prediction: the output prediction of the computational graph,
produced by self.forward_pass()
optimize: the model's optimizing tensor produced by self.optimizer()
loss: the model's loss produced by computing self.loss_function()
accuracy: the model's prediction accuracy
"""
self.image = image
self.label = label
# TO-DO: Add any class variables you want to use.
self.prediction = self.forward_pass()
self.loss = self.loss_function()
self.optimize = self.optimizer()
self.accuracy = self.accuracy_function()
def forward_pass(self):
"""
Predicts a label given an image using convolution layers
:return: the prediction as a tensor
"""
filter_1 = tf.Variable(tf.truncated_normal([3, 3, 1, 8], stddev=0.1))
conv_1 = tf.nn.conv2d(self.image, filter_1, [1, 1, 1, 1], "SAME")
reshaped = tf.reshape(conv_1, shape=[50, -1])
L1 = reshaped.shape[1].value
L2 = 500
W1 = tf.Variable(tf.random_normal([L1, L2], mean=0, stddev=0.01))
b1 = tf.Variable(tf.random_normal([L2], mean=0, stddev=0.01))
relu_1 = tf.nn.relu(tf.matmul(reshaped, W1) + b1)
W2 = tf.Variable(tf.random_normal([L2, 10], mean=0, stddev=0.01))
b2 = tf.Variable(tf.random_normal([10], mean=0, stddev=0.01))
logits = tf.nn.relu(tf.matmul(relu_1, W2) + b2)
return logits
def loss_function(self):
"""
Calculates the model cross-entropy loss
:return: the loss of the model as a tensor
"""
loss = tf.losses.softmax_cross_entropy(onehot_labels=self.label, logits=self.prediction)
return loss
def optimizer(self):
"""
Optimizes the model loss using an Adam Optimizer
:return: the optimizer as a tensor
"""
learning_rate = 0.1
sgd = tf.train.GradientDescentOptimizer(learning_rate)
train = sgd.minimize(self.loss)
return train
def accuracy_function(self):
"""
Calculates the model's prediction accuracy by comparing
predictions to correct labels – no need to modify this
:return: the accuracy of the model as a tensor
"""
correct_prediction = tf.equal(tf.argmax(self.prediction, 1),
tf.argmax(self.label, 1))
return tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
def main():
t_start = time.time()
mnist = input_data.read_data_sets("data/mnist/", one_hot=True)
batch_sz = 50
batch = 2000
inputs = tf.placeholder(shape=[batch_sz, 28, 28, 1], dtype=tf.float32)
labels = tf.placeholder(shape=[batch_sz, 10], dtype=tf.float32)
model = Model(inputs, labels)
session_config = tf.ConfigProto(gpu_options=tf.GPUOptions(allow_growth=True))
sess = tf.Session(config=session_config)
# sess = tf.Session()
sess.run(tf.global_variables_initializer())
for i in range(batch):
next_image, next_label = mnist.train.next_batch(batch_sz)
next_image = next_image.reshape((batch_sz, 28, 28, 1))
sess.run(model.optimize, feed_dict={inputs: next_image, labels: next_label})
acc, test_images, test_labels = 0, mnist.test.images, mnist.test.labels
test_batch = math.ceil(len(test_images) / batch_sz)
for i in range(test_batch):
batch_images = test_images[i * batch_sz: (i + 1) * batch_sz]
batch_images = batch_images.reshape((batch_sz, 28, 28, 1))
batch_labes = test_labels[i * batch_sz: (i + 1) * batch_sz]
acc += sess.run(model.accuracy, feed_dict={inputs: batch_images, labels: batch_labes})
acc /= test_batch
print(acc)
print(time.time() - t_start, 'seconds')
return
if __name__ == '__main__':
main()"><pre class="notranslate"><code class="notranslate">import os
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
import math
import time
# Killing optional CPU driver warnings
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
# os.environ['CUDA_VISIBLE_DEVICES'] = '-1'
tf.logging.set_verbosity(tf.logging.ERROR)
class Model:
def __init__(self, image, label):
"""
A Model class contains a computational graph that classifies images
to predictions. Each of its methods builds part of the graph
on Model initialization. Do not modify the constructor, as doing so
would break the autograder. You may, however, add class variables
to use in your graph-building. e.g. learning rate,
image: the input image to the computational graph as a tensor
label: the correct label of an image as a tensor
prediction: the output prediction of the computational graph,
produced by self.forward_pass()
optimize: the model's optimizing tensor produced by self.optimizer()
loss: the model's loss produced by computing self.loss_function()
accuracy: the model's prediction accuracy
"""
self.image = image
self.label = label
# TO-DO: Add any class variables you want to use.
self.prediction = self.forward_pass()
self.loss = self.loss_function()
self.optimize = self.optimizer()
self.accuracy = self.accuracy_function()
def forward_pass(self):
"""
Predicts a label given an image using convolution layers
:return: the prediction as a tensor
"""
filter_1 = tf.Variable(tf.truncated_normal([3, 3, 1, 8], stddev=0.1))
conv_1 = tf.nn.conv2d(self.image, filter_1, [1, 1, 1, 1], "SAME")
reshaped = tf.reshape(conv_1, shape=[50, -1])
L1 = reshaped.shape[1].value
L2 = 500
W1 = tf.Variable(tf.random_normal([L1, L2], mean=0, stddev=0.01))
b1 = tf.Variable(tf.random_normal([L2], mean=0, stddev=0.01))
relu_1 = tf.nn.relu(tf.matmul(reshaped, W1) + b1)
W2 = tf.Variable(tf.random_normal([L2, 10], mean=0, stddev=0.01))
b2 = tf.Variable(tf.random_normal([10], mean=0, stddev=0.01))
logits = tf.nn.relu(tf.matmul(relu_1, W2) + b2)
return logits
def loss_function(self):
"""
Calculates the model cross-entropy loss
:return: the loss of the model as a tensor
"""
loss = tf.losses.softmax_cross_entropy(onehot_labels=self.label, logits=self.prediction)
return loss
def optimizer(self):
"""
Optimizes the model loss using an Adam Optimizer
:return: the optimizer as a tensor
"""
learning_rate = 0.1
sgd = tf.train.GradientDescentOptimizer(learning_rate)
train = sgd.minimize(self.loss)
return train
def accuracy_function(self):
"""
Calculates the model's prediction accuracy by comparing
predictions to correct labels – no need to modify this
:return: the accuracy of the model as a tensor
"""
correct_prediction = tf.equal(tf.argmax(self.prediction, 1),
tf.argmax(self.label, 1))
return tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
def main():
t_start = time.time()
mnist = input_data.read_data_sets("data/mnist/", one_hot=True)
batch_sz = 50
batch = 2000
inputs = tf.placeholder(shape=[batch_sz, 28, 28, 1], dtype=tf.float32)
labels = tf.placeholder(shape=[batch_sz, 10], dtype=tf.float32)
model = Model(inputs, labels)
session_config = tf.ConfigProto(gpu_options=tf.GPUOptions(allow_growth=True))
sess = tf.Session(config=session_config)
# sess = tf.Session()
sess.run(tf.global_variables_initializer())
for i in range(batch):
next_image, next_label = mnist.train.next_batch(batch_sz)
next_image = next_image.reshape((batch_sz, 28, 28, 1))
sess.run(model.optimize, feed_dict={inputs: next_image, labels: next_label})
acc, test_images, test_labels = 0, mnist.test.images, mnist.test.labels
test_batch = math.ceil(len(test_images) / batch_sz)
for i in range(test_batch):
batch_images = test_images[i * batch_sz: (i + 1) * batch_sz]
batch_images = batch_images.reshape((batch_sz, 28, 28, 1))
batch_labes = test_labels[i * batch_sz: (i + 1) * batch_sz]
acc += sess.run(model.accuracy, feed_dict={inputs: batch_images, labels: batch_labes})
acc /= test_batch
print(acc)
print(time.time() - t_start, 'seconds')
return
if __name__ == '__main__':
main()
</code></pre></div> | 1 |
<p dir="auto"><strong>Migrated issue, originally created by Ronny Pfannschmidt (<a href="https://github.com/RonnyPfannschmidt">@RonnyPfannschmidt</a>)</strong></p>
<p dir="auto">this problem has shown up when porting to oracle, which reported a random error uppon seeing the sql</p>
<p dir="auto">after inspection i was sure the code was certainly wrong - at least the join condition makes absolutely no sense there</p>
<p dir="auto">imho it should be an error to pass a relationship there</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import Column, Integer, ForeignKey
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, Session
Base = declarative_base()
class Fun(Base):
__tablename__ = 'fun'
id = Column(Integer, primary_key=True)
pos = Column(Integer)
class FunDetail(Base):
__tablename__ = 'fun_detail'
id = Column(Integer, primary_key=True)
fun_id = Column(Integer, ForeignKey('fun.id'))
fun = relationship(Fun)
pos = Column(Integer)
s = Session()
print s.query(FunDetail).order_by(FunDetail.pos, FunDetail.fun)
"><pre class="notranslate"><code class="notranslate">from sqlalchemy import Column, Integer, ForeignKey
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, Session
Base = declarative_base()
class Fun(Base):
__tablename__ = 'fun'
id = Column(Integer, primary_key=True)
pos = Column(Integer)
class FunDetail(Base):
__tablename__ = 'fun_detail'
id = Column(Integer, primary_key=True)
fun_id = Column(Integer, ForeignKey('fun.id'))
fun = relationship(Fun)
pos = Column(Integer)
s = Session()
print s.query(FunDetail).order_by(FunDetail.pos, FunDetail.fun)
</code></pre></div>
<p dir="auto">results in</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="SELECT fun_detail.id AS fun_detail_id, fun_detail.fun_id AS fun_detail_fun_id, fun_detail.pos AS fun_detail_pos
FROM fun_detail ORDER BY fun_detail.pos, fun.id = fun_detail.fun_id"><pre class="notranslate"><code class="notranslate">SELECT fun_detail.id AS fun_detail_id, fun_detail.fun_id AS fun_detail_fun_id, fun_detail.pos AS fun_detail_pos
FROM fun_detail ORDER BY fun_detail.pos, fun.id = fun_detail.fun_id
</code></pre></div> | <p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p>
<p dir="auto">consolidating <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384616635" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/1328" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/1328/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/1328">#1328</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384628315" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/2797" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/2797/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/2797">#2797</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384628720" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/2845" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/2845/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/2845">#2845</a> as these are all dealing with the same thing from different angles.</p>
<p dir="auto">SomeClass.some_m2o, which refers to OtherEntity as a many-to-one, would be interpreted:</p>
<ol dir="auto">
<li>
<p dir="auto">for <code class="notranslate">sess.query(SomeClass.some_m2o)</code> as <code class="notranslate">sess.query(OtherEntity)</code></p>
</li>
<li>
<p dir="auto">for <code class="notranslate">sess.query(SomeClass).filter(SomeClass.some_m2o == OtherEntity)</code> as <code class="notranslate">filter(SomeClass.other_entity_id == OtherEntity.id)</code></p>
</li>
<li>
<p dir="auto">for <code class="notranslate">sess.query(SomeClass).order_by(SomeClass.some_m2o), group_by(SomeClass.some_m2o)</code>, as <code class="notranslate">order_by/group_by SomeClass.other_entity_id</code></p>
</li>
<li>
<p dir="auto">as is currently the case, <code class="notranslate">sess.query(SomeClass).filter(SomeClass.some_m2o == other_entity)</code> compares to other_entity.id</p>
</li>
</ol>
<p dir="auto">any other <code class="notranslate">query.something(SomeClass.m2o..something)</code> type requests should get put here.</p> | 1 |
<h3 dir="auto">Proposed new feature or change:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@jit(nopython=True)
def slidingWindow(a,window):
'''
Make an ndarray with a sliding window of the first dimension(axis = 0)
Parameters
----------
a : array_like
Array to add sliding window to
window : int
Size of sliding window
Returns
-------
Array that is a view of the original array with a added dimension of size w.
'''
if window < 1:
raise Exception('Arg: window must be at least 1.')
if window > a.shape[0]:
raise Exception('Arg: window cannot bigger than a.shape[0]')
shape = (a.shape[0] - window + 1,) + a.shape[1:] + (window,)
strides = a.strides + (a.strides[0],)
return np.lib.stride_tricks.as_strided(a, shape=shape, strides=strides)
def TSPctlInterMean(m,d,p1,p2):
'''
TSMean for interval:[p1,p2] in past d dates
p1/p2: in np.array([0.1,0.25,0.5,0.75,0.9])
'''
if m.dtype == 'bool':
raise Exception('Cannot be Bool!!!')
size = m.size
if size == 1:
raise Exception('Cannot be Scalar!!!')
rowNum,colNum = m.shape[0],m.shape[1]
if rowNum < d:
raise Exception('RowNum Cannot Lesser than d!!!')
m_ = m.copy()
m_3d = slidingWindow(m_,d) #3 dimension (i,j,k:rowNum-d+1,column,d), m_3d[:,0,:] is 2-DimensionSlideWindow for 1th column
PctMat1 = np.nanpercentile(m_3d,p1 * 100,axis = 2).reshape(rowNum-d+1,colNum,1) #percentile p for each row
PctMat2 = np.nanpercentile(m_3d,p2 * 100,axis = 2).reshape(rowNum-d+1,colNum,1) #percentile p for each row
indLogic1 = m_3d >= PctMat1
indLogic2 = m_3d <= PctMat2
indLogic = np.logical_and(indLogic1,indLogic2)
#return indLogic
m_3d_slice = m_3d[indLogic] #cannot keep dimension
return bt.nanmean(m_3d_slice,axis=2)"><pre class="notranslate"><span class="pl-en">@<span class="pl-en">jit</span>(<span class="pl-s1">nopython</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">slidingWindow</span>(<span class="pl-s1">a</span>,<span class="pl-s1">window</span>):
<span class="pl-s">'''</span>
<span class="pl-s"> Make an ndarray with a sliding window of the first dimension(axis = 0)</span>
<span class="pl-s"> Parameters</span>
<span class="pl-s"> ----------</span>
<span class="pl-s"> a : array_like</span>
<span class="pl-s"> Array to add sliding window to</span>
<span class="pl-s"> window : int</span>
<span class="pl-s"> Size of sliding window</span>
<span class="pl-s"></span>
<span class="pl-s"> Returns</span>
<span class="pl-s"> -------</span>
<span class="pl-s"> Array that is a view of the original array with a added dimension of size w.</span>
<span class="pl-s"> '''</span>
<span class="pl-k">if</span> <span class="pl-s1">window</span> <span class="pl-c1"><</span> <span class="pl-c1">1</span>:
<span class="pl-k">raise</span> <span class="pl-v">Exception</span>(<span class="pl-s">'Arg: window must be at least 1.'</span>)
<span class="pl-k">if</span> <span class="pl-s1">window</span> <span class="pl-c1">></span> <span class="pl-s1">a</span>.<span class="pl-s1">shape</span>[<span class="pl-c1">0</span>]:
<span class="pl-k">raise</span> <span class="pl-v">Exception</span>(<span class="pl-s">'Arg: window cannot bigger than a.shape[0]'</span>)
<span class="pl-s1">shape</span> <span class="pl-c1">=</span> (<span class="pl-s1">a</span>.<span class="pl-s1">shape</span>[<span class="pl-c1">0</span>] <span class="pl-c1">-</span> <span class="pl-s1">window</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span>,) <span class="pl-c1">+</span> <span class="pl-s1">a</span>.<span class="pl-s1">shape</span>[<span class="pl-c1">1</span>:] <span class="pl-c1">+</span> (<span class="pl-s1">window</span>,)
<span class="pl-s1">strides</span> <span class="pl-c1">=</span> <span class="pl-s1">a</span>.<span class="pl-s1">strides</span> <span class="pl-c1">+</span> (<span class="pl-s1">a</span>.<span class="pl-s1">strides</span>[<span class="pl-c1">0</span>],)
<span class="pl-k">return</span> <span class="pl-s1">np</span>.<span class="pl-s1">lib</span>.<span class="pl-s1">stride_tricks</span>.<span class="pl-en">as_strided</span>(<span class="pl-s1">a</span>, <span class="pl-s1">shape</span><span class="pl-c1">=</span><span class="pl-s1">shape</span>, <span class="pl-s1">strides</span><span class="pl-c1">=</span><span class="pl-s1">strides</span>)
<span class="pl-k">def</span> <span class="pl-v">TSPctlInterMean</span>(<span class="pl-s1">m</span>,<span class="pl-s1">d</span>,<span class="pl-s1">p1</span>,<span class="pl-s1">p2</span>):
<span class="pl-s">'''</span>
<span class="pl-s"> TSMean for interval:[p1,p2] in past d dates </span>
<span class="pl-s"> p1/p2: in np.array([0.1,0.25,0.5,0.75,0.9])</span>
<span class="pl-s"> '''</span>
<span class="pl-k">if</span> <span class="pl-s1">m</span>.<span class="pl-s1">dtype</span> <span class="pl-c1">==</span> <span class="pl-s">'bool'</span>:
<span class="pl-k">raise</span> <span class="pl-v">Exception</span>(<span class="pl-s">'Cannot be Bool!!!'</span>)
<span class="pl-s1">size</span> <span class="pl-c1">=</span> <span class="pl-s1">m</span>.<span class="pl-s1">size</span>
<span class="pl-k">if</span> <span class="pl-s1">size</span> <span class="pl-c1">==</span> <span class="pl-c1">1</span>:
<span class="pl-k">raise</span> <span class="pl-v">Exception</span>(<span class="pl-s">'Cannot be Scalar!!!'</span>)
<span class="pl-s1">rowNum</span>,<span class="pl-s1">colNum</span> <span class="pl-c1">=</span> <span class="pl-s1">m</span>.<span class="pl-s1">shape</span>[<span class="pl-c1">0</span>],<span class="pl-s1">m</span>.<span class="pl-s1">shape</span>[<span class="pl-c1">1</span>]
<span class="pl-k">if</span> <span class="pl-s1">rowNum</span> <span class="pl-c1"><</span> <span class="pl-s1">d</span>:
<span class="pl-k">raise</span> <span class="pl-v">Exception</span>(<span class="pl-s">'RowNum Cannot Lesser than d!!!'</span>)
<span class="pl-s1">m_</span> <span class="pl-c1">=</span> <span class="pl-s1">m</span>.<span class="pl-en">copy</span>()
<span class="pl-s1">m_3d</span> <span class="pl-c1">=</span> <span class="pl-en">slidingWindow</span>(<span class="pl-s1">m_</span>,<span class="pl-s1">d</span>) <span class="pl-c">#3 dimension (i,j,k:rowNum-d+1,column,d), m_3d[:,0,:] is 2-DimensionSlideWindow for 1th column</span>
<span class="pl-v">PctMat1</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">nanpercentile</span>(<span class="pl-s1">m_3d</span>,<span class="pl-s1">p1</span> <span class="pl-c1">*</span> <span class="pl-c1">100</span>,<span class="pl-s1">axis</span> <span class="pl-c1">=</span> <span class="pl-c1">2</span>).<span class="pl-en">reshape</span>(<span class="pl-s1">rowNum</span><span class="pl-c1">-</span><span class="pl-s1">d</span><span class="pl-c1">+</span><span class="pl-c1">1</span>,<span class="pl-s1">colNum</span>,<span class="pl-c1">1</span>) <span class="pl-c">#percentile p for each row </span>
<span class="pl-v">PctMat2</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">nanpercentile</span>(<span class="pl-s1">m_3d</span>,<span class="pl-s1">p2</span> <span class="pl-c1">*</span> <span class="pl-c1">100</span>,<span class="pl-s1">axis</span> <span class="pl-c1">=</span> <span class="pl-c1">2</span>).<span class="pl-en">reshape</span>(<span class="pl-s1">rowNum</span><span class="pl-c1">-</span><span class="pl-s1">d</span><span class="pl-c1">+</span><span class="pl-c1">1</span>,<span class="pl-s1">colNum</span>,<span class="pl-c1">1</span>) <span class="pl-c">#percentile p for each row </span>
<span class="pl-s1">indLogic1</span> <span class="pl-c1">=</span> <span class="pl-s1">m_3d</span> <span class="pl-c1">>=</span> <span class="pl-v">PctMat1</span>
<span class="pl-s1">indLogic2</span> <span class="pl-c1">=</span> <span class="pl-s1">m_3d</span> <span class="pl-c1"><=</span> <span class="pl-v">PctMat2</span>
<span class="pl-s1">indLogic</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">logical_and</span>(<span class="pl-s1">indLogic1</span>,<span class="pl-s1">indLogic2</span>)
<span class="pl-c">#return indLogic</span>
<span class="pl-s1">m_3d_slice</span> <span class="pl-c1">=</span> <span class="pl-s1">m_3d</span>[<span class="pl-s1">indLogic</span>] <span class="pl-c">#cannot keep dimension </span>
<span class="pl-k">return</span> <span class="pl-s1">bt</span>.<span class="pl-en">nanmean</span>(<span class="pl-s1">m_3d_slice</span>,<span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)</pre></div>
<p dir="auto"><code class="notranslate">m1 = np.random.randn(300,3000)</code><br>
<code class="notranslate">TSPctlInterMean(m1 ,21,0.2,0.7)</code> will raise Error!!!<br>
<code class="notranslate">m_3d_slice = m_3d[indLogic]</code> will be a vector<br>
how can I keep the same dimension with m_3d<br>
Thanks!!!</p> | <p dir="auto">-Operating System: Raspbian Stretch (9)<br>
-How Python was installed: Python 3.5.3 is default Python3 on Stretch<br>
-How numpy was installed: pip installed under virtual environment (version 1.17.3)<br>
-Python2.7 is also installed by default</p>
<p dir="auto">I want to use OpenVINO's dldt library for inference on raspberry pi 3. I've run into issues before but following some instructions <a href="https://github.com/opencv/dldt/blob/2019/inference-engine/README.md#build-for-raspbian-stretch-os">here</a>, I built the most recent version of the library using cmake for native compilation under raspbian stretch (It took hours).</p>
<p dir="auto">I first noticed the error when running their model optimizer python code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python3 <dldt_dir>/model-optimizer/mo.py --input_model [input model] --data_type [data type] --output_dir [output_dir]
Traceback (most recent call last):
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/__init__.py", line 17, in <module>
from . import multiarray
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/multiarray.py", line 14, in <module>
from . import overrides
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/overrides.py", line 7, in <module>
from numpy.core._multiarray_umath import (
ImportError: libf77blas.so.3: cannot open shared object file: No such file or directory
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/__init__.py", line 142, in <module>
from . import core
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/__init__.py", line 47, in <module>
raise ImportError(msg)
ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy c-extensions failed.
- Try uninstalling and reinstalling numpy.
- If you have already done that, then:
1. Check that you expected to use Python3.5 from "/home/pi/.virtualenvs/openvino/bin/python",
and that you have no directories in your PATH or PYTHONPATH that can
interfere with the Python and numpy version "1.17.3" you're trying to use.
2. If (1) looks fine, you can open a new issue at
https://github.com/numpy/numpy/issues. Please include details on:
- how you installed Python
- how you installed numpy
- your operating system
- whether or not you have multiple versions of Python installed
- if you built from source, your compiler versions and ideally a build log
- If you're working with a numpy git repository, try `git clean -xdf`
(removes all files not under version control) and rebuild numpy.
Note: this error has many possible causes, so please don't comment on
an existing issue about this - open a new one instead.
Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory"><pre class="notranslate"><code class="notranslate">$ python3 <dldt_dir>/model-optimizer/mo.py --input_model [input model] --data_type [data type] --output_dir [output_dir]
Traceback (most recent call last):
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/__init__.py", line 17, in <module>
from . import multiarray
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/multiarray.py", line 14, in <module>
from . import overrides
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/overrides.py", line 7, in <module>
from numpy.core._multiarray_umath import (
ImportError: libf77blas.so.3: cannot open shared object file: No such file or directory
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/__init__.py", line 142, in <module>
from . import core
File "/home/pi/.virtualenvs/openvino/lib/python3.5/site-packages/numpy/core/__init__.py", line 47, in <module>
raise ImportError(msg)
ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy c-extensions failed.
- Try uninstalling and reinstalling numpy.
- If you have already done that, then:
1. Check that you expected to use Python3.5 from "/home/pi/.virtualenvs/openvino/bin/python",
and that you have no directories in your PATH or PYTHONPATH that can
interfere with the Python and numpy version "1.17.3" you're trying to use.
2. If (1) looks fine, you can open a new issue at
https://github.com/numpy/numpy/issues. Please include details on:
- how you installed Python
- how you installed numpy
- your operating system
- whether or not you have multiple versions of Python installed
- if you built from source, your compiler versions and ideally a build log
- If you're working with a numpy git repository, try `git clean -xdf`
(removes all files not under version control) and rebuild numpy.
Note: this error has many possible causes, so please don't comment on
an existing issue about this - open a new one instead.
Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory
</code></pre></div>
<p dir="auto">However I quickly found out that this problem persists when importing numpy from Python3</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> import numpy as np
[...]
Importing the numpy c-extensions failed.
[...]
Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory"><pre class="notranslate"><code class="notranslate">>>> import numpy as np
[...]
Importing the numpy c-extensions failed.
[...]
Original error was: libf77blas.so.3: cannot open shared object file: No such file or directory
</code></pre></div>
<p dir="auto">I've tried uninstalling and reinstalling numpy. I've made sure that numpy worked in Python3 before installing the dldt library.<br>
Please help. You're my only hope.</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=jencompgeek" rel="nofollow">Jennifer Hickey</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6663?redirect=false" rel="nofollow">SPR-6663</a></strong> and commented</p>
<p dir="auto">Just switched to the new <code class="notranslate">@Scheduled</code>, configured only with the default task:annotation-driven/. I noticed that my <code class="notranslate">@Scheduled</code> task was being executed more frequently than expected. I have Spring/Struts integration that creates a child web app context on init of ActionServlet. Looks like when the child app context is created, an event is published to the parent root WAC. This event causes the ScheduledAnnotationBeanPostProcessor in the root WAC to execute ScheduledTaskRegistrar.afterPropertiesSet again, which schedules all tasks again. So I end up with the same task scheduled to execute at a fixed rate twice.</p>
<p dir="auto">Stack trace on init of the Struts ActionServlet:<br>
ScheduledTaskRegistrar.afterPropertiesSet() line: 107<br>
ScheduledAnnotationBeanPostProcessor.onApplicationEvent(ContextRefreshedEvent) line: 135<br>
ScheduledAnnotationBeanPostProcessor.onApplicationEvent(ApplicationEvent) line: 1<br>
SimpleApplicationEventMulticaster.multicastEvent(ApplicationEvent) line: 97<br>
XmlWebApplicationContext(AbstractApplicationContext).publishEvent(ApplicationEvent) line: 294<br>
XmlWebApplicationContext(AbstractApplicationContext).publishEvent(ApplicationEvent) line: 296<br>
XmlWebApplicationContext(AbstractApplicationContext).finishRefresh() line: 858<br>
XmlWebApplicationContext(AbstractApplicationContext).refresh() line: 419<br>
ContextLoaderPlugIn.createWebApplicationContext(WebApplicationContext) line: 356<br>
ContextLoaderPlugIn.initWebApplicationContext() line: 297<br>
ContextLoaderPlugIn.init(ActionServlet, ModuleConfig) line: 227<br>
ActionServlet.initModulePlugIns(ModuleConfig) line: 871<br>
ActionServlet.init() line: 359<br>
ActionServlet(GenericServlet).init(ServletConfig) line: 212</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 GA</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="398101633" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11322" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11322/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11322">#11322</a> ScheduledAnnotationBeanPostProcessor registers schedules twice in web application (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=kdonald" rel="nofollow">Keith Donald</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5395?redirect=false" rel="nofollow">SPR-5395</a></strong> and commented</p>
<p dir="auto">I am seeing side-effects in an integration test that initializes a Spring ApplicationContext using <code class="notranslate">@ContextConfiguration</code>. Specifically, close() on the context does not appear to be being called, ever. I noticed this because one of my DispoableBeans is not receiving a destroy() callback and that is what is causing the side-effect [which pops up when a <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/test/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/test">@test</a> runs in another, unrelated TestCase class].</p>
<p dir="auto">I understand a test ApplicationContext is cached between test methods, but I would still expect the context to be closed after all tests have run, before moving on to the next test class in the suite.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0 M1</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="398087391" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9379" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9379/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9379">#9379</a> Support for <code class="notranslate">@DirtiesContext</code> at the test class level (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398094206" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10311" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10311/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10311">#10311</a> Reload the application context for each test in a class with a class level annotation</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398087391" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/9379" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/9379/hovercard" href="https://github.com/spring-projects/spring-framework/issues/9379">#9379</a> Support for <code class="notranslate">@DirtiesContext</code> at the test class level</li>
</ul> | 0 |
<p dir="auto">use cmd + d to select more word, but the focus will jump to top line..</p> | <p dir="auto">I use <code class="notranslate">cmd-d</code> with selected word and I expect the window to scroll to the next found occurrence -- but instead the window scrolls to top on the first <code class="notranslate">select-next</code>, then scrolls to the found word on the second <code class="notranslate">select-next</code>, then again to the top on the third and so on.</p> | 1 |
<p dir="auto">I see my error here, but to support rust I will submit this bug as requested.</p>
<p dir="auto">MacBookPro - OSX 10.10 - x64 intel -</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Fresh log v0.2.1
Fresh libc v0.1.1
Fresh bitflags v0.1.0
Fresh gcc v0.1.7
Fresh unsafe-any v0.2.1
Fresh rustc-serialize v0.2.10
Fresh pkg-config v0.1.7
Fresh matches v0.1.2
Fresh mucell v0.1.12
Fresh unicase v0.0.3
Fresh mime v0.0.7
Fresh url v0.2.17
Fresh time v0.1.15
Fresh openssl-sys v0.2.18
Fresh openssl v0.2.18
Fresh cookie v0.1.9
Fresh hyper v0.1.9
Fresh websocket v0.10.3"><pre class="notranslate"><code class="notranslate"> Fresh log v0.2.1
Fresh libc v0.1.1
Fresh bitflags v0.1.0
Fresh gcc v0.1.7
Fresh unsafe-any v0.2.1
Fresh rustc-serialize v0.2.10
Fresh pkg-config v0.1.7
Fresh matches v0.1.2
Fresh mucell v0.1.12
Fresh unicase v0.0.3
Fresh mime v0.0.7
Fresh url v0.2.17
Fresh time v0.1.15
Fresh openssl-sys v0.2.18
Fresh openssl v0.2.18
Fresh cookie v0.1.9
Fresh hyper v0.1.9
Fresh websocket v0.10.3
</code></pre></div>
<p dir="auto">Compiling testlib v0.0.1 (file:///Users/scott/repos/test_app)<br>
Running <code class="notranslate">rustc src/main.rs --crate-name test_app --crate-type bin -g --out-dir /Users/scott/repos/test_app/target --emit=dep-info,link -L dependency=/Users/scott/repos/test_app/target -L dependency=/Users/scott/repos/test_app/target/deps --extern rustc-serialize=/Users/scott/repos/test_app/target/deps/librustc-serialize-181d5959361aa206.rlib --extern websocket=/Users/scott/repos/test_app/target/deps/libwebsocket-e2d678e8a9089abd.rlib --extern livesocket=/Users/scott/repos/test_app/target/libtestlib-b1f31b9645bad55b.rlib -L native=/Users/scott/repos/test_app/target/build/time-2215e3ac75eaa2c7/out</code></p>
<p dir="auto">src/main.rs:19:16: 19:25 error: parenthesized parameters may only be used with a trait [E0214]<br>
src/main.rs:19 let words: Vec(&str) = input.words().collect();</p>
<p dir="auto">src/main.rs:19:19: 19:25 error: associated type bindings are not allowed here [E0229]<br>
src/main.rs:19 let words: Vec(&str) = input.words().collect();<br>
^~~~~~<br>
error: internal compiler error: unexpected panic<br>
note: the compiler unexpectedly panicked. this is a bug.<br>
note: we would appreciate a bug report: <a href="http://doc.rust-lang.org/complement-bugreport.html" rel="nofollow">http://doc.rust-lang.org/complement-bugreport.html</a><br>
note: run with <code class="notranslate">RUST_BACKTRACE=1</code> for a backtrace<br>
thread 'rustc' panicked at 'assertion failed: !generic_bounds.has_escaping_regions()', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/librustc_typeck/check/mod.rs:1826</p>
<p dir="auto">stack backtrace:<br>
1: 0x109d28947 - sys::backtrace::write::he402374d097c734cvbu<br>
2: 0x109d4edfc - failure::on_fail::hed9b34e067ca7da1qbB<br>
3: 0x109cb0208 - rt::unwind::begin_unwind_inner::h7c63803321d7204cmTA<br>
4: 0x10687d94c - rt::unwind::begin_unwind::h8602087355689510853<br>
5: 0x1068daaa0 - check::FnCtxt<'a, 'tcx>::add_obligations_for_parameters::h7f082a14921c02246Nm<br>
6: 0x10691b4d3 - check::wf::BoundsChecker<'cx, 'tcx>.TypeFolder<'tcx>::fold_ty::ha55680a6ab46ecc2Fxj<br>
7: 0x10693b9e5 - check::GatherLocalsVisitor<'a, 'tcx>.Visitor<'v>::visit_local::hd09d95956c7da86886k<br>
8: 0x106922286 - check::check_fn::h4985f8d75a08ff763dl<br>
9: 0x10693a77f - check::check_bare_fn::h995c71688f4975c3v3k<br>
10: 0x106932287 - check::check_item::ha4b08dad0c8499ae8ll<br>
11: 0x106a01cf3 - check_crate::closure.32081<br>
12: 0x1069fd24f - check_crate::h89c36ac38cf567e2DNy<br>
13: 0x1063c316b - driver::phase_3_run_analysis_passes::h5a89a1160de7ae6eNFa<br>
14: 0x1063a96dc - driver::compile_input::h4f8de4738327a360Bba<br>
15: 0x106471c9e - run_compiler::hfa201cb78154d87an9b<br>
16: 0x10646edaf - thunk::F.Invoke<A, R>::invoke::h11184981586525590284<br>
17: 0x10646da40 - rt::unwind::try::try_fn::h2812590929445923530<br>
18: 0x109dc52a9 - rust_try_inner<br>
19: 0x109dc5296 - rust_try<br>
20: 0x10646e104 - thunk::F.Invoke<A, R>::invoke::h9675590542894749928<br>
21: 0x109d394b3 - sys:🧵:thread_start::h63de676196642ba2J3w<br>
22: 0x7fff9a7b12fc - _pthread_body<br>
23: 0x7fff9a7b1279 - _pthread_body</p>
<p dir="auto">Could not compile <code class="notranslate">test_app</code>.</p>
<p dir="auto">Caused by:<br>
Process didn't exit successfully: <code class="notranslate">rustc src/main.rs --crate-name test_app --crate-type bin -g --out-dir /Users/scott/repos/test_app/target --emit=dep-info,link -L dependency=/Users/scott/repos/test_app/target -L dependency=/Users/scott/repos/test_app/target/deps --extern rustc-serialize=/Users/scott/repos/test_app/target/deps/librustc-serialize-181d5959361aa206.rlib --extern websocket=/Users/scott/repos/test_app/target/deps/libwebsocket-e2d678e8a9089abd.rlib --extern testlib=/Users/scott/repos/test_app/target/libtestlib-b1f31b9645bad55b.rlib -L native=/Users/scott/repos/test_app/target/build/time-2215e3ac75eaa2c7/out</code> (status=101)</p> | <p dir="auto">Minimal example to reproduce (using parenthesis instead of <> ):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fn main() {
let v: Vec(&str) = vec!['1','2'];
}"><pre class="notranslate"><code class="notranslate">fn main() {
let v: Vec(&str) = vec!['1','2'];
}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/D/s/o/test-rs git:master ❯❯❯ RUST_BACKTRACE=1 rustc src/main.rs
src/main.rs:2:12: 2:21 error: parenthesized parameters may only be used with a trait [E0214]
src/main.rs:2 let v: Vec(&str) = vec!['1','2'];
^~~~~~~~~
src/main.rs:2:15: 2:21 error: associated type bindings are not allowed here [E0229]
src/main.rs:2 let v: Vec(&str) = vec!['1','2'];
^~~~~~
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'assertion failed: !predicates.has_escaping_regions()', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/librustc_typeck/check/mod.rs:1887
stack backtrace:
1: 0x103b1725b - sys::backtrace::write::hf72be5f813c90d15u5C
2: 0x103b42918 - panicking::on_panic::h357b9ffd8bc8f79dSWI
3: 0x103a5f7f7 - rt::unwind::begin_unwind_inner::h12b438ebbd8042edUFI
4: 0x100184bbf - rt::unwind::begin_unwind::h4407626155523256809
5: 0x1001f01b1 - check::FnCtxt<'a, 'tcx>::add_obligations_for_parameters::hedc68c4e9f8bb7eaR3o
6: 0x1002348de - check::wf::BoundsChecker<'cx, 'tcx>.TypeFolder<'tcx>::fold_ty::h81005dd8c26ce0f4dxl
7: 0x100259d85 - check::GatherLocalsVisitor<'a, 'tcx>.Visitor<'tcx>::visit_local::hbbae7f527d661f07Jln
8: 0x10023d4d5 - check::check_fn::h1d6196fc5f338991ssn
9: 0x1002583ef - check::check_bare_fn::h866934e1757608268hn
10: 0x100250650 - check::check_item::h403800fd4efc7443MAn
11: 0x100328962 - check_crate::closure.36029
12: 0x1003235ca - check_crate::hae957740b683eaa4IhC
13: 0x10005b6e7 - driver::phase_3_run_analysis_passes::hdf5ccffdc8a743bcsGa
14: 0x100041f96 - driver::compile_input::h7fdf739785f6d9d4Rba
15: 0x1001027d3 - run_compiler::hb484336e43423a0fv2b
16: 0x1001002f5 - thunk::F.Invoke<A, R>::invoke::h11654417678186204529
17: 0x1000ff6b7 - rt::unwind::try::try_fn::h10741634765121132143
18: 0x103bc6f68 - rust_try_inner
19: 0x103bc6f55 - rust_try
20: 0x1000ffa55 - thunk::F.Invoke<A, R>::invoke::h13457747256212984027
21: 0x103b2d83d - sys::thread::create::thread_start::h937519545136f3ecJBH
22: 0x7fff94a06267 - _pthread_body
23: 0x7fff94a061e4 - _pthread_start"><pre class="notranslate"><code class="notranslate">~/D/s/o/test-rs git:master ❯❯❯ RUST_BACKTRACE=1 rustc src/main.rs
src/main.rs:2:12: 2:21 error: parenthesized parameters may only be used with a trait [E0214]
src/main.rs:2 let v: Vec(&str) = vec!['1','2'];
^~~~~~~~~
src/main.rs:2:15: 2:21 error: associated type bindings are not allowed here [E0229]
src/main.rs:2 let v: Vec(&str) = vec!['1','2'];
^~~~~~
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'assertion failed: !predicates.has_escaping_regions()', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/librustc_typeck/check/mod.rs:1887
stack backtrace:
1: 0x103b1725b - sys::backtrace::write::hf72be5f813c90d15u5C
2: 0x103b42918 - panicking::on_panic::h357b9ffd8bc8f79dSWI
3: 0x103a5f7f7 - rt::unwind::begin_unwind_inner::h12b438ebbd8042edUFI
4: 0x100184bbf - rt::unwind::begin_unwind::h4407626155523256809
5: 0x1001f01b1 - check::FnCtxt<'a, 'tcx>::add_obligations_for_parameters::hedc68c4e9f8bb7eaR3o
6: 0x1002348de - check::wf::BoundsChecker<'cx, 'tcx>.TypeFolder<'tcx>::fold_ty::h81005dd8c26ce0f4dxl
7: 0x100259d85 - check::GatherLocalsVisitor<'a, 'tcx>.Visitor<'tcx>::visit_local::hbbae7f527d661f07Jln
8: 0x10023d4d5 - check::check_fn::h1d6196fc5f338991ssn
9: 0x1002583ef - check::check_bare_fn::h866934e1757608268hn
10: 0x100250650 - check::check_item::h403800fd4efc7443MAn
11: 0x100328962 - check_crate::closure.36029
12: 0x1003235ca - check_crate::hae957740b683eaa4IhC
13: 0x10005b6e7 - driver::phase_3_run_analysis_passes::hdf5ccffdc8a743bcsGa
14: 0x100041f96 - driver::compile_input::h7fdf739785f6d9d4Rba
15: 0x1001027d3 - run_compiler::hb484336e43423a0fv2b
16: 0x1001002f5 - thunk::F.Invoke<A, R>::invoke::h11654417678186204529
17: 0x1000ff6b7 - rt::unwind::try::try_fn::h10741634765121132143
18: 0x103bc6f68 - rust_try_inner
19: 0x103bc6f55 - rust_try
20: 0x1000ffa55 - thunk::F.Invoke<A, R>::invoke::h13457747256212984027
21: 0x103b2d83d - sys::thread::create::thread_start::h937519545136f3ecJBH
22: 0x7fff94a06267 - _pthread_body
23: 0x7fff94a061e4 - _pthread_start
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" rustc --version
rustc 1.0.0-nightly (f4e0ce66a 2015-03-19) (built 2015-03-20)"><pre class="notranslate"><code class="notranslate"> rustc --version
rustc 1.0.0-nightly (f4e0ce66a 2015-03-19) (built 2015-03-20)
</code></pre></div> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => Latest master branch (following latest commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/92c0709c494d86d94894e443acef00ac41f5967c/hovercard" href="https://github.com/opencv/opencv/commit/92c0709c494d86d94894e443acef00ac41f5967c"><tt>92c0709</tt></a>)</li>
<li>Operating System / Platform => Debian Linux BeagleBone Black 4.4.9-ti-r25</li>
<li>Compiler => GCC Version 4.9.2 (Debian 4.9.2-10)</li>
<li>CMake => v3.5.2</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">CMake Build Error - Directory names used in OpenCVUtils regular expressions containing non-alphanumeric characters such as '+' in <code class="notranslate">../c++/</code> cause cmake to fail. Renaming the parent directory from "C++" to "Cxx" allows cmake to proceed. Note though that in the cmake output below, the directory <code class="notranslate">/usr/bin/c++</code> is also used.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-- The CXX compiler identification is GNU 4.9.2
-- The C compiler identification is GNU 4.9.2
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Detected version of GNU GCC: 49 (409)
RegularExpression::compile(): Nested *?+.
RegularExpression::compile(): Error in compile.
CMake Error at cmake/OpenCVUtils.cmake:120 (if):
if given arguments:
"/home/debian/Desktop/Sandbox/C++/opencv/Build" "MATCHES" "^/home/debian/Desktop/Sandbox/C++/opencv" "OR" "/home/debian/Desktop/Sandbox/C++/opencv/Build" "MATCHES" "^/home/debian/Desktop/Sandbox/C++/opencv/Build" "OR" "(" "OPENCV_EXTRA_MODULES_PATH" "AND" "/home/debian/Desktop/Sandbox/C++/opencv/Build" "MATCHES" "^" ")"
Regular expression "^/home/debian/Desktop/Sandbox/C++/opencv" cannot
compile
Call Stack (most recent call first):
cmake/OpenCVUtils.cmake:135 (ocv_is_opencv_directory)
CMakeLists.txt:488 (ocv_include_directories)
-- Configuring incomplete, errors occurred!"><pre class="notranslate"><code class="notranslate">-- The CXX compiler identification is GNU 4.9.2
-- The C compiler identification is GNU 4.9.2
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Detected version of GNU GCC: 49 (409)
RegularExpression::compile(): Nested *?+.
RegularExpression::compile(): Error in compile.
CMake Error at cmake/OpenCVUtils.cmake:120 (if):
if given arguments:
"/home/debian/Desktop/Sandbox/C++/opencv/Build" "MATCHES" "^/home/debian/Desktop/Sandbox/C++/opencv" "OR" "/home/debian/Desktop/Sandbox/C++/opencv/Build" "MATCHES" "^/home/debian/Desktop/Sandbox/C++/opencv/Build" "OR" "(" "OPENCV_EXTRA_MODULES_PATH" "AND" "/home/debian/Desktop/Sandbox/C++/opencv/Build" "MATCHES" "^" ")"
Regular expression "^/home/debian/Desktop/Sandbox/C++/opencv" cannot
compile
Call Stack (most recent call first):
cmake/OpenCVUtils.cmake:135 (ocv_is_opencv_directory)
CMakeLists.txt:488 (ocv_include_directories)
-- Configuring incomplete, errors occurred!
</code></pre></div>
<h5 dir="auto">Steps to reproduce</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cd ~; mkdir C++ && cd C++
git clone <opencv repo> opencv; cd opencv
mkdir Build && cd Build
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_CUDA=OFF -D WITH_CUFFT=OFF -D WITH_CUBLAS=OFF -D WITH_NVCUVID=OFF -D WITH_OPENCL=OFF -D WITH_OPENCLAMDFFT=OFF -D WITH_OPENCLAMDBLAS=OFF -D BUILD_opencv_apps=OFF -D BUILD_DOCS=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_TESTS=OFF -D ENABLE_NEON=on .."><pre class="notranslate"><code class="notranslate">cd ~; mkdir C++ && cd C++
git clone <opencv repo> opencv; cd opencv
mkdir Build && cd Build
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_CUDA=OFF -D WITH_CUFFT=OFF -D WITH_CUBLAS=OFF -D WITH_NVCUVID=OFF -D WITH_OPENCL=OFF -D WITH_OPENCLAMDFFT=OFF -D WITH_OPENCLAMDBLAS=OFF -D BUILD_opencv_apps=OFF -D BUILD_DOCS=OFF -D BUILD_PERF_TESTS=OFF -D BUILD_TESTS=OFF -D ENABLE_NEON=on ..
</code></pre></div> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => <g-emoji class="g-emoji" alias="grey_question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2754.png">❔</g-emoji></li>
<li>Operating System / Platform => <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 => <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> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.2.0.32</li>
<li>Operating System / Platform => Windows 10 64 Bit</li>
<li>Compiler => Visual Studio 2017</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">I am getting the following error when performing inference with SSD MobileNet v2 custom trained model using OpenCV cv.dnn_Net.forward():</p>
<p dir="auto">cv2.error: OpenCV(4.2.0) C:\projects\opencv-python\opencv\modules\dnn\src\dnn.cpp:562: error: (-2:Unspecified error) Can't create layer "FeatureExtractor/MobilenetV2/expanded_conv_2/add" of type "AddV2" in function 'cv::dnn::dnn4_v20191202::LayerData::getLayerInstance'</p>
<p dir="auto">I trained the model using TensorFlow 1.15.0 and can perform inference in TensorFlow and TensorFlow Lite without an issue; is only when I use dnn-module with .pb and .pbtxt files that I get the error above. I have tried downgrading OpenCV, but earlier versions give different errors. In Ubuntu 18.04.4, installing OpenCV from source, I do not get any errors.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">OpenCV TensorFlow Object Detection API:<br>
python tf_text_graph_ssd.py --input frozen_graph.pb --config ssd_mobilenet_v2_coco.config --output graph.pbtxt</p>
<p dir="auto">Inference using Python script from OpenCV wiki:<br>
import cv2 as cv<br>
cvNet = cv.dnn.readNetFromTensorflow('frozen_graph.pb', 'graph.pbtxt')</p>
<p dir="auto">img = cv.imread('example.jpg')<br>
rows = img.shape[0]<br>
cols = img.shape[1]<br>
cvNet.setInput(cv.dnn.blobFromImage(img, size=(300, 300), swapRB=True, crop=False))<br>
cvOut = cvNet.forward()</p>
<p dir="auto">for detection in cvOut[0,0,:,:]:<br>
score = float(detection[2])<br>
if score > 0.3:<br>
left = detection[3] * cols<br>
top = detection[4] * rows<br>
right = detection[5] * cols<br>
bottom = detection[6] * rows<br>
cv.rectangle(img, (int(left), int(top)), (int(right), int(bottom)), (23, 230, 210), thickness=2)</p>
<p dir="auto">cv.imshow('img', img)<br>
cv.waitKey()</p>
<h5 dir="auto">Issue submission checklist</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I report the issue, it's not a question
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I checked the problem with documentation, FAQ, open issues,<br>
answers.opencv.org, Stack Overflow, etc and have not found solution
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I updated to latest OpenCV version and the issue is still there
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> There is reproducer code and related data files: videos, images, onnx, etc<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32305778/77545175-0a876e00-6e78-11ea-8bb2-af4071908503.png"><img src="https://user-images.githubusercontent.com/32305778/77545175-0a876e00-6e78-11ea-8bb2-af4071908503.png" alt="example" style="max-width: 100%;"></a>
</li>
</ul> | <p dir="auto"><strong>System information (version)</strong><br>
OpenCV => 4.2.0<br>
Operating System / Platform => Windows 10 64 bit<br>
Compiler => Visual Studio 2019<br>
TensorFlow 2.1.0</p>
<p dir="auto"><strong>Detailed description</strong><br>
I have trained a MobileNetV2 using tf.keras. Then I exported the model as frozen graph *.pb file, and tried to load the network using cv::dnn::readNetFromTensorflow(). When I run the app the following error occurs:<br>
<code class="notranslate">OpenCV(4.2.0) Error: Unspecified error (Can't create layer "expanded_conv_add/add" of type "AddV2") in cv::dnn::dnn4_v20191202::LayerData::getLayerInstance, file C:\build\master_winpack-build-win64-vc14\opencv\modules\dnn\src\dnn.cpp, line 562 </code></p>
<p dir="auto">When using TensorFlow version 1.14 for creating the model and then save the frozen graph, this kind of error does not appear</p>
<p dir="auto"><strong>Steps to reproduce</strong><br>
The .pb file is found inside the attached .zip file</p>
<p dir="auto"><code class="notranslate">_net = cv::dnn::readNetFromTensorflow(pathToPbFile);</code></p>
<p dir="auto"><a href="https://github.com/opencv/opencv/files/4091426/MobileNetV2Alpha0.10.zip">MobileNetV2Alpha0.10.zip</a></p> | 1 |
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="02-03 16:11:35.369 5156 5173 I flutter : Exception caught while building Overlay-[GlobalKey 536735121]
02-03 16:11:35.369 5156 5173 I flutter : 'packages/flutter/src/widgets/framework.dart': Failed assertion: line 1398: '_dependants.isEmpty' is not true.
02-03 16:11:35.370 5156 5173 I flutter : Stack trace:
02-03 16:11:35.374 5156 5173 I flutter : #0 _AssertionError._throwNew (dart:core-patch/errors_patch.dart:27)
02-03 16:11:35.375 5156 5173 I flutter : #1 InheritedElement.debugDeactivated.<anonymous closure> (packages/flutter/src/widgets/framework.dart:1398)
02-03 16:11:35.375 5156 5173 I flutter : #2 InheritedElement.debugDeactivated (packages/flutter/src/widgets/framework.dart:1397)
02-03 16:11:35.375 5156 5173 I flutter : #3 _InactiveElements._deactivate.<anonymous closure> (packages/flutter/src/widgets/framework.dart:557)
02-03 16:11:35.375 5156 5173 I flutter : #4 _InactiveElements._deactivate (packages/flutter/src/widgets/framework.dart:557)
02-03 16:11:35.375 5156 5173 I flutter : #5 OneChildRenderObjectElement.visitChildren (packages/flutter/src/widgets/framework.dart:1715)
02-03 16:11:35.375 5156 5173 I flutter : #6 _InactiveElements._deactivate (packages/flutter/src/widgets/framework.dart:556)
02-03 16:11:35.375 5156 5173 I flutter : #7 ComponentElement.visitChildren (packages/flutter/src/widgets/framework.dart:1213)
02-03 16:11:35.375 5156 5173 I flutter : #8 _InactiveElements._deactivate (packages/flutter/src/widgets/framework.dart:556)
02-03 16:11:35.375 5156 5173 I flutter : #9 ComponentElement.visitChildren (packages/flutter/src/widgets/framework.dart:1213)
02-03 16:11:35.375 5156 5173 I flutter : #10 _InactiveElements._deactivate (packages/flutter/src/widgets/framework.dart:556)
02-03 16:11:35.375 5156 5173 I flutter : #11 ComponentElement.visitChildren (packages/flutter/src/widgets/framework.dart:1213)"><pre class="notranslate"><span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.369</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> <span class="pl-c1">Exception</span> caught <span class="pl-k">while</span> building <span class="pl-c1">Overlay</span><span class="pl-k">-</span>[<span class="pl-c1">GlobalKey</span> <span class="pl-c1">536735121</span>]
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.369</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> <span class="pl-s">'packages/flutter/src/widgets/framework.dart'</span><span class="pl-k">:</span> <span class="pl-c1">Failed</span> assertion<span class="pl-k">:</span> line <span class="pl-c1">1398</span><span class="pl-k">:</span> <span class="pl-s">'_dependants.isEmpty'</span> <span class="pl-k">is</span> not <span class="pl-c1">true</span>.
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.370</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> <span class="pl-c1">Stack</span> trace<span class="pl-k">:</span>
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.374</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">0</span> <span class="pl-c1">_AssertionError</span>._throwNew (dart<span class="pl-k">:</span>core<span class="pl-k">-</span>patch<span class="pl-k">/</span>errors_patch.dart<span class="pl-k">:</span><span class="pl-c1">27</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">1</span> <span class="pl-c1">InheritedElement</span>.debugDeactivated.<span class="pl-k"><</span>anonymous closure<span class="pl-k">></span> (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">1398</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">2</span> <span class="pl-c1">InheritedElement</span>.debugDeactivated (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">1397</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">3</span> <span class="pl-c1">_InactiveElements</span>._deactivate.<span class="pl-k"><</span>anonymous closure<span class="pl-k">></span> (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">557</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">4</span> <span class="pl-c1">_InactiveElements</span>._deactivate (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">557</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">5</span> <span class="pl-c1">OneChildRenderObjectElement</span>.visitChildren (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">1715</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">6</span> <span class="pl-c1">_InactiveElements</span>._deactivate (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">556</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">7</span> <span class="pl-c1">ComponentElement</span>.visitChildren (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">1213</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">8</span> <span class="pl-c1">_InactiveElements</span>._deactivate (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">556</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">9</span> <span class="pl-c1">ComponentElement</span>.visitChildren (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">1213</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">10</span> <span class="pl-c1">_InactiveElements</span>._deactivate (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">556</span>)
<span class="pl-c1">02</span><span class="pl-k">-</span><span class="pl-c1">03</span> <span class="pl-c1">16</span><span class="pl-k">:</span><span class="pl-c1">11</span><span class="pl-k">:</span><span class="pl-c1">35.375</span> <span class="pl-c1">5156</span> <span class="pl-c1">5173</span> <span class="pl-c1">I</span> flutter <span class="pl-k">:</span> #<span class="pl-c1">11</span> <span class="pl-c1">ComponentElement</span>.visitChildren (packages<span class="pl-k">/</span>flutter<span class="pl-k">/</span>src<span class="pl-k">/</span>widgets<span class="pl-k">/</span>framework.dart<span class="pl-k">:</span><span class="pl-c1">1213</span>)</pre></div> | <h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">followed the instructions at:<br>
<a href="https://flutter.io/web-analogs/#vertical-gradient" rel="nofollow">https://flutter.io/web-analogs/#vertical-gradient</a></p>
<p dir="auto">...but the background is white. Parent containers have no background color.</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" new Container(
height: 10.0,
decoration: new BoxDecoration(
gradient: new LinearGradient(
begin: const Alignment(0.0, -1.0),
end: const Alignment(0.0, 0.6),
colors: <Color>[
const Color(0xffef5350),
const Color(0x00ef5350)
],
),
),
),"><pre class="notranslate"> <span class="pl-k">new</span> <span class="pl-c1">Container</span>(
height<span class="pl-k">:</span> <span class="pl-c1">10.0</span>,
decoration<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">BoxDecoration</span>(
gradient<span class="pl-k">:</span> <span class="pl-k">new</span> <span class="pl-c1">LinearGradient</span>(
begin<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">Alignment</span>(<span class="pl-c1">0.0</span>, <span class="pl-k">-</span><span class="pl-c1">1.0</span>),
end<span class="pl-k">:</span> <span class="pl-k">const</span> <span class="pl-c1">Alignment</span>(<span class="pl-c1">0.0</span>, <span class="pl-c1">0.6</span>),
colors<span class="pl-k">:</span> <span class="pl-k"><</span><span class="pl-c1">Color</span><span class="pl-k">></span>[
<span class="pl-k">const</span> <span class="pl-c1">Color</span>(<span class="pl-c1">0xffef5350</span>),
<span class="pl-k">const</span> <span class="pl-c1">Color</span>(<span class="pl-c1">0x00ef5350</span>)
],
),
),
),</pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/378599/35071810-f1900624-fb96-11e7-9627-89bd1e42084b.png"><img src="https://user-images.githubusercontent.com/378599/35071810-f1900624-fb96-11e7-9627-89bd1e42084b.png" alt="image" style="max-width: 100%;"></a></p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Launching lib/main.dart on Android SDK built for x86 in debug mode...
Initializing gradle...
Resolving dependencies...
Running 'gradlew assembleDebug'...
Built build/app/outputs/apk/app-debug.apk (31.6MB).
Installing build/app/outputs/apk/app.apk...
I/FlutterActivityDelegate(18737): onResume setting current activity to this
I/zygote (18737): Do partial code cache collection, code=29KB, data=23KB
I/zygote (18737): After code cache collection, code=28KB, data=23KB
I/zygote (18737): Increasing code cache capacity to 128KB
Syncing files to device Android SDK built for x86...
I/DynamiteModule(18737): Considering local module com.google.android.gms.firebase_database:4 and remote module com.google.android.gms.firebase_database:6
I/DynamiteModule(18737): Selected remote version of com.google.android.gms.firebase_database, version >= 6
W/zygote (18737): Unsupported class loader
W/zygote (18737): Skipping duplicate class check due to unsupported classloader
I/zygote (18737): The ClassLoaderContext is a special shared library.
I/zygote (18737): The ClassLoaderContext is a special shared library.
I/flutter (18737): ON TOKEN REFRESH: dMzPx27bFgQ:APA91bHU90q6ap1hWQG-pobCi3BEw1qBDhZZd9pLtavXm3riuw7uyKU7a4QB72p4g6FfaW4ZWb9dlXtWgfKu5bIh7JhQWkUtR-Lvs4kiECZ0e3IZD-tBqP6VnKiOso1BT2MAeHdM-cGp, old: null
W/linker (18737): /data/app/com.google.android.gms-RLCRcG5Tz9PHefS2F24zew==/lib/x86/libgmscore.so: is missing DT_SONAME will use basename as a replacement: "libgmscore.so"
W/linker (18737): "/data/app/com.google.android.gms-RLCRcG5Tz9PHefS2F24zew==/lib/x86/libconscrypt_gmscore_jni.so" unused DT entry: type 0xf arg 0x91
W/linker (18737): /data/app/com.google.android.gms-RLCRcG5Tz9PHefS2F24zew==/lib/x86/libconscrypt_gmscore_jni.so: is missing DT_SONAME will use basename as a replacement: "libconscrypt_gmscore_jni.so"
V/NativeCrypto(18737): Registering com/google/android/gms/org/conscrypt/NativeCrypto's 276 native methods...
I/ProviderInstaller(18737): Installed default security provider GmsCore_OpenSSL
I/zygote (18737): Do partial code cache collection, code=60KB, data=47KB
I/zygote (18737): After code cache collection, code=60KB, data=47KB
I/zygote (18737): Increasing code cache capacity to 256KB
I/flutter (18737): on config changed
W/BiChannelGoogleApi(18737): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
W/BiChannelGoogleApi(18737): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
I/flutter (18737): got initial connectionn: ConnectivityResult.mobile
I/flutter (18737): [WARNING] network connectivity changed: true
I/flutter (18737): [WARNING] firebase connectivity changed: true
I/flutter (18737): chat screen connectivity changed: true
I/flutter (18737): [WARNING] network connectivity changed: true
I/zygote (18737): Do full code cache collection, code=121KB, data=92KB
I/zygote (18737): After code cache collection, code=109KB, data=65KB
I/zygote (18737): Do partial code cache collection, code=120KB, data=82KB
I/zygote (18737): Background concurrent copying GC freed 44040(1726KB) AllocSpace objects, 12(372KB) LOS objects, 50% free, 3MB/6MB, paused 1.035ms total 144.230ms
I/zygote (18737): After code cache collection, code=120KB, data=82KB
I/zygote (18737): Increasing code cache capacity to 512KB
I/zygote (18737): Do full code cache collection, code=243KB, data=171KB
I/zygote (18737): After code cache collection, code=224KB, data=134KB
I/zygote (18737): Do partial code cache collection, code=239KB, data=156KB
I/zygote (18737): After code cache collection, code=239KB, data=156KB
I/zygote (18737): Increasing code cache capacity to 1024KB"><pre class="notranslate"><code class="notranslate">Launching lib/main.dart on Android SDK built for x86 in debug mode...
Initializing gradle...
Resolving dependencies...
Running 'gradlew assembleDebug'...
Built build/app/outputs/apk/app-debug.apk (31.6MB).
Installing build/app/outputs/apk/app.apk...
I/FlutterActivityDelegate(18737): onResume setting current activity to this
I/zygote (18737): Do partial code cache collection, code=29KB, data=23KB
I/zygote (18737): After code cache collection, code=28KB, data=23KB
I/zygote (18737): Increasing code cache capacity to 128KB
Syncing files to device Android SDK built for x86...
I/DynamiteModule(18737): Considering local module com.google.android.gms.firebase_database:4 and remote module com.google.android.gms.firebase_database:6
I/DynamiteModule(18737): Selected remote version of com.google.android.gms.firebase_database, version >= 6
W/zygote (18737): Unsupported class loader
W/zygote (18737): Skipping duplicate class check due to unsupported classloader
I/zygote (18737): The ClassLoaderContext is a special shared library.
I/zygote (18737): The ClassLoaderContext is a special shared library.
I/flutter (18737): ON TOKEN REFRESH: dMzPx27bFgQ:APA91bHU90q6ap1hWQG-pobCi3BEw1qBDhZZd9pLtavXm3riuw7uyKU7a4QB72p4g6FfaW4ZWb9dlXtWgfKu5bIh7JhQWkUtR-Lvs4kiECZ0e3IZD-tBqP6VnKiOso1BT2MAeHdM-cGp, old: null
W/linker (18737): /data/app/com.google.android.gms-RLCRcG5Tz9PHefS2F24zew==/lib/x86/libgmscore.so: is missing DT_SONAME will use basename as a replacement: "libgmscore.so"
W/linker (18737): "/data/app/com.google.android.gms-RLCRcG5Tz9PHefS2F24zew==/lib/x86/libconscrypt_gmscore_jni.so" unused DT entry: type 0xf arg 0x91
W/linker (18737): /data/app/com.google.android.gms-RLCRcG5Tz9PHefS2F24zew==/lib/x86/libconscrypt_gmscore_jni.so: is missing DT_SONAME will use basename as a replacement: "libconscrypt_gmscore_jni.so"
V/NativeCrypto(18737): Registering com/google/android/gms/org/conscrypt/NativeCrypto's 276 native methods...
I/ProviderInstaller(18737): Installed default security provider GmsCore_OpenSSL
I/zygote (18737): Do partial code cache collection, code=60KB, data=47KB
I/zygote (18737): After code cache collection, code=60KB, data=47KB
I/zygote (18737): Increasing code cache capacity to 256KB
I/flutter (18737): on config changed
W/BiChannelGoogleApi(18737): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
W/BiChannelGoogleApi(18737): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms
I/flutter (18737): got initial connectionn: ConnectivityResult.mobile
I/flutter (18737): [WARNING] network connectivity changed: true
I/flutter (18737): [WARNING] firebase connectivity changed: true
I/flutter (18737): chat screen connectivity changed: true
I/flutter (18737): [WARNING] network connectivity changed: true
I/zygote (18737): Do full code cache collection, code=121KB, data=92KB
I/zygote (18737): After code cache collection, code=109KB, data=65KB
I/zygote (18737): Do partial code cache collection, code=120KB, data=82KB
I/zygote (18737): Background concurrent copying GC freed 44040(1726KB) AllocSpace objects, 12(372KB) LOS objects, 50% free, 3MB/6MB, paused 1.035ms total 144.230ms
I/zygote (18737): After code cache collection, code=120KB, data=82KB
I/zygote (18737): Increasing code cache capacity to 512KB
I/zygote (18737): Do full code cache collection, code=243KB, data=171KB
I/zygote (18737): After code cache collection, code=224KB, data=134KB
I/zygote (18737): Do partial code cache collection, code=239KB, data=156KB
I/zygote (18737): After code cache collection, code=239KB, data=156KB
I/zygote (18737): Increasing code cache capacity to 1024KB
</code></pre></div>
<p dir="auto"><strong>Run <code class="notranslate">flutter analyze</code> and attach any output of that command also.</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:21:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:22:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:23:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:24:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:25:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:26:19 • strong_mode_implicit_dynamic_type
error • Missing parameter type for 'localeName' at lib/i18n/chq_messages_all.dart:29:35 • strong_mode_implicit_dynamic_parameter
error • Type 'dynamic' of the switch expression isn't assignable to the type 'String' of case expressions at lib/i18n/chq_messages_all.dart:30:11 • switch_expression_not_assignable
error • Missing parameter type for 'locale' at lib/i18n/chq_messages_all.dart:64:50 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'String' at lib/i18n/chq_messages_all.dart:65:42 • argument_type_not_assignable
error • Missing parameter type for '_' at lib/i18n/chq_messages_all.dart:66:19 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm0' at lib/i18n/chq_messages_de.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_de.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_de.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_de.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_de.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_de.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_de.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_de.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_de.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_de.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_de.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_de.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_de.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_de.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_de.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_de.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_de.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_de.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_de.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_de.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_de.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_de.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_de.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_de.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_de.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_de.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_de.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_de.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_de.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_de.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_de.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_de.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_de.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_de.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_de.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_de.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_de.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_de.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_de.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_de.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_de.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_de.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_de.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_de.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_de.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_de.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_de.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_de.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_de.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_de.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_en.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_en.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_en.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_en.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_en.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_en.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_en.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_en.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_en.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_en.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_en.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_en.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_en.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_en.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_en.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_en.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_en.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_en.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_en.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_en.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_en.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_en.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_en.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_en.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_en.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_en.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_en.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_en.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_en.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_en.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_en.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_en.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_en.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_en.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_en.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_en.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_en.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_en.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_en.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_en.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_en.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_en.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_en.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_en.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_en.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_en.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_en.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_en.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_en.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_en.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_es.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_es.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_es.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_es.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_es.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_es.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_es.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_es.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_es.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_es.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_es.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_es.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_es.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_es.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_es.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_es.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_es.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_es.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_es.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_es.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_es.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_es.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_es.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_es.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_es.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_es.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_es.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_es.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_es.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_es.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_es.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_es.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_es.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_es.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_es.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm25' at lib/i18n/chq_messages_es.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_es.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_es.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_es.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_es.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_es.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_es.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_es.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_es.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_es.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_es.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_es.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_es.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_es.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_es.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_es.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_es.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_es.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_fr.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_fr.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_fr.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_fr.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_fr.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_fr.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_fr.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_fr.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_fr.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_fr.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_fr.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_fr.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_fr.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_fr.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_fr.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_fr.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_fr.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_fr.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_fr.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_fr.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_fr.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_fr.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_fr.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_fr.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_fr.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_fr.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_fr.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_fr.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_fr.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_fr.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_fr.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_fr.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_fr.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_fr.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_fr.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_fr.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_fr.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_fr.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_fr.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_fr.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_fr.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_fr.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_fr.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_fr.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_fr.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_fr.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_fr.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_fr.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_fr.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_fr.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_it.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_it.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_it.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_it.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_it.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_it.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_it.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_it.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_it.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_it.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_it.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_it.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_it.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_it.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_it.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_it.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_it.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_it.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_it.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_it.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_it.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_it.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_it.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_it.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_it.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_it.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_it.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_it.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_it.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_it.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_it.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_it.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_it.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_it.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_it.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_it.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_it.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_it.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_it.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_it.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_it.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_it.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_it.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_it.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_it.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_it.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_it.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_it.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_it.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_it.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_pt.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_pt.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_pt.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_pt.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_pt.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_pt.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_pt.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_pt.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_pt.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_pt.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_pt.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_pt.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_pt.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_pt.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_pt.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_pt.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_pt.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_pt.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_pt.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_pt.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_pt.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_pt.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_pt.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_pt.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_pt.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_pt.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_pt.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_pt.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_pt.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_pt.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_pt.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_pt.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_pt.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_pt.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_pt.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_pt.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_pt.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_pt.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_pt.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_pt.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_pt.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_pt.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_pt.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_pt.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_pt.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_pt.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_pt.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_pt.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_pt.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_pt.dart:85:36 • strong_mode_implicit_dynamic_map_literal
lint • Close instances of `dart.core.Sink` at lib/service/firestore_rest.dart:29:26 • close_sinks"><pre class="notranslate"><code class="notranslate"> error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:21:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:22:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:23:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:24:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:25:19 • strong_mode_implicit_dynamic_type
error • Missing type arguments for generic type 'Future<dynamic>' at lib/i18n/chq_messages_all.dart:26:19 • strong_mode_implicit_dynamic_type
error • Missing parameter type for 'localeName' at lib/i18n/chq_messages_all.dart:29:35 • strong_mode_implicit_dynamic_parameter
error • Type 'dynamic' of the switch expression isn't assignable to the type 'String' of case expressions at lib/i18n/chq_messages_all.dart:30:11 • switch_expression_not_assignable
error • Missing parameter type for 'locale' at lib/i18n/chq_messages_all.dart:64:50 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'String' at lib/i18n/chq_messages_all.dart:65:42 • argument_type_not_assignable
error • Missing parameter type for '_' at lib/i18n/chq_messages_all.dart:66:19 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm0' at lib/i18n/chq_messages_de.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_de.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_de.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_de.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_de.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_de.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_de.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_de.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_de.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_de.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_de.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_de.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_de.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_de.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_de.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_de.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_de.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_de.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_de.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_de.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_de.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_de.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_de.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_de.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_de.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_de.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_de.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_de.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_de.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_de.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_de.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_de.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_de.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_de.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_de.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_de.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_de.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_de.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_de.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_de.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_de.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_de.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_de.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_de.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_de.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_de.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_de.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_de.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_de.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_de.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_de.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_de.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_de.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_de.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_en.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_en.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_en.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_en.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_en.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_en.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_en.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_en.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_en.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_en.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_en.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_en.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_en.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_en.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_en.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_en.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_en.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_en.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_en.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_en.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_en.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_en.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_en.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_en.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_en.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_en.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_en.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_en.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_en.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_en.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_en.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_en.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_en.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_en.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_en.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_en.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_en.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_en.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_en.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_en.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_en.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_en.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_en.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_en.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_en.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_en.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_en.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_en.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_en.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_en.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_en.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_en.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_en.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_en.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_es.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_es.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_es.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_es.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_es.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_es.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_es.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_es.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_es.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_es.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_es.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_es.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_es.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_es.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_es.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_es.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_es.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_es.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_es.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_es.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_es.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_es.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_es.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_es.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_es.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_es.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_es.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_es.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_es.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_es.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_es.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_es.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_es.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_es.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_es.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_es.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_es.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm25' at lib/i18n/chq_messages_es.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_es.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_es.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_es.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_es.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_es.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_es.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_es.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_es.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_es.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_es.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_es.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_es.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_es.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_es.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_es.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_es.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_es.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_es.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_fr.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_fr.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_fr.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_fr.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_fr.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_fr.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_fr.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_fr.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_fr.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_fr.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_fr.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_fr.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_fr.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_fr.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_fr.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_fr.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_fr.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_fr.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_fr.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_fr.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_fr.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_fr.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_fr.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_fr.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_fr.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_fr.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_fr.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_fr.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_fr.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_fr.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_fr.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_fr.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_fr.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_fr.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_fr.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_fr.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_fr.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_fr.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_fr.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_fr.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_fr.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_fr.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_fr.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_fr.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_fr.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_fr.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_fr.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_fr.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_fr.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_fr.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_fr.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_fr.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_fr.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_fr.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_it.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_it.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_it.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_it.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_it.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_it.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_it.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_it.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_it.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_it.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_it.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_it.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_it.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_it.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_it.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_it.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_it.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_it.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_it.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_it.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_it.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_it.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_it.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_it.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_it.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_it.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_it.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_it.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_it.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_it.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_it.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_it.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_it.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_it.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_it.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_it.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_it.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_it.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_it.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_it.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_it.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_it.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_it.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_it.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_it.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_it.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_it.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_it.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_it.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_it.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_it.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_it.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_it.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_it.dart:85:36 • strong_mode_implicit_dynamic_map_literal
error • Missing return type for 'm0' at lib/i18n/chq_messages_pt.dart:20:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:20:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm1' at lib/i18n/chq_messages_pt.dart:22:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numBg' at lib/i18n/chq_messages_pt.dart:22:13 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:22:38 • argument_type_not_assignable
error • Missing return type for 'm2' at lib/i18n/chq_messages_pt.dart:24:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:24:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm3' at lib/i18n/chq_messages_pt.dart:26:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:26:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm4' at lib/i18n/chq_messages_pt.dart:28:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:28:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm5' at lib/i18n/chq_messages_pt.dart:30:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:30:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm6' at lib/i18n/chq_messages_pt.dart:32:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'inviterName' at lib/i18n/chq_messages_pt.dart:32:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm7' at lib/i18n/chq_messages_pt.dart:34:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:34:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm8' at lib/i18n/chq_messages_pt.dart:36:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:36:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm9' at lib/i18n/chq_messages_pt.dart:38:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:38:13 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm10' at lib/i18n/chq_messages_pt.dart:40:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:40:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm11' at lib/i18n/chq_messages_pt.dart:42:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:42:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'date' at lib/i18n/chq_messages_pt.dart:42:20 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm12' at lib/i18n/chq_messages_pt.dart:44:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:44:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm13' at lib/i18n/chq_messages_pt.dart:46:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'timeString' at lib/i18n/chq_messages_pt.dart:46:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm14' at lib/i18n/chq_messages_pt.dart:48:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'game' at lib/i18n/chq_messages_pt.dart:48:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm15' at lib/i18n/chq_messages_pt.dart:50:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:50:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm16' at lib/i18n/chq_messages_pt.dart:52:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:52:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm17' at lib/i18n/chq_messages_pt.dart:54:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:54:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm18' at lib/i18n/chq_messages_pt.dart:56:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'clanName' at lib/i18n/chq_messages_pt.dart:56:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm19' at lib/i18n/chq_messages_pt.dart:58:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:58:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm20' at lib/i18n/chq_messages_pt.dart:60:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:60:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm21' at lib/i18n/chq_messages_pt.dart:62:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'name' at lib/i18n/chq_messages_pt.dart:62:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm22' at lib/i18n/chq_messages_pt.dart:64:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'days' at lib/i18n/chq_messages_pt.dart:64:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:64:38 • argument_type_not_assignable
error • Missing return type for 'm23' at lib/i18n/chq_messages_pt.dart:66:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numDays' at lib/i18n/chq_messages_pt.dart:66:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm24' at lib/i18n/chq_messages_pt.dart:68:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'hours' at lib/i18n/chq_messages_pt.dart:68:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:68:39 • argument_type_not_assignable
error • Missing return type for 'm25' at lib/i18n/chq_messages_pt.dart:70:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'minutes' at lib/i18n/chq_messages_pt.dart:70:14 • strong_mode_implicit_dynamic_parameter
error • The argument type 'dynamic' can't be assigned to the parameter type 'int' at lib/i18n/chq_messages_pt.dart:70:41 • argument_type_not_assignable
error • Missing return type for 'm26' at lib/i18n/chq_messages_pt.dart:72:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'numWeeks' at lib/i18n/chq_messages_pt.dart:72:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm27' at lib/i18n/chq_messages_pt.dart:74:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'tag' at lib/i18n/chq_messages_pt.dart:74:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm28' at lib/i18n/chq_messages_pt.dart:76:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'idx' at lib/i18n/chq_messages_pt.dart:76:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm29' at lib/i18n/chq_messages_pt.dart:78:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'charactersRemaining' at lib/i18n/chq_messages_pt.dart:78:14 • strong_mode_implicit_dynamic_parameter
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_pt.dart:78:35 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm30' at lib/i18n/chq_messages_pt.dart:80:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'characterLimit' at lib/i18n/chq_messages_pt.dart:80:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for 'm31' at lib/i18n/chq_messages_pt.dart:82:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for 'X' at lib/i18n/chq_messages_pt.dart:82:14 • strong_mode_implicit_dynamic_parameter
error • Missing return type for '_notInlinedMessages' at lib/i18n/chq_messages_pt.dart:85:3 • strong_mode_implicit_dynamic_return
error • Missing parameter type for '_' at lib/i18n/chq_messages_pt.dart:85:30 • strong_mode_implicit_dynamic_parameter
error • Missing type arguments for map literal at lib/i18n/chq_messages_pt.dart:85:36 • strong_mode_implicit_dynamic_map_literal
lint • Close instances of `dart.core.Sink` at lib/service/firestore_rest.dart:29:26 • close_sinks
</code></pre></div>
<h2 dir="auto">Flutter Doctor</h2>
<p dir="auto"><strong>Paste the output of running <code class="notranslate">flutter doctor</code> here.</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Mac OS X 10.13.2 17C205, locale en-US, channel alpha-chq)
• Flutter at /Users/deborah/flutter
• Framework revision 0bd83f8c34 (13 days ago), 2018-01-04 18:01:44 -0800
• Engine revision edaecdc8b8
• Tools Dart version 1.25.0-dev.11.0
• Engine Dart version 2.0.0-edge.d8ae797298c3a6cf8dc9f4558707bd2672224d3e
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/deborah/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[-] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
• ios-deploy 1.8.6
✗ ios-deploy out of date (1.9.2 is required). To upgrade:
brew upgrade ios-deploy
• CocoaPods version 1.3.1
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] IntelliJ IDEA Community Edition (version 2017.3.2)
• Flutter plugin version 20.0.3
• Dart plugin version 173.4127.31
[✓] Connected devices
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.1.0 (API 27) (emulator)
• iPhone • b08050db65c1aecd9eda3ffc2bd8a89148c82a46 • ios • iOS 11.2.2 "><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Mac OS X 10.13.2 17C205, locale en-US, channel alpha-chq)
• Flutter at /Users/deborah/flutter
• Framework revision 0bd83f8c34 (13 days ago), 2018-01-04 18:01:44 -0800
• Engine revision edaecdc8b8
• Tools Dart version 1.25.0-dev.11.0
• Engine Dart version 2.0.0-edge.d8ae797298c3a6cf8dc9f4558707bd2672224d3e
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/deborah/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[-] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
• ios-deploy 1.8.6
✗ ios-deploy out of date (1.9.2 is required). To upgrade:
brew upgrade ios-deploy
• CocoaPods version 1.3.1
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] IntelliJ IDEA Community Edition (version 2017.3.2)
• Flutter plugin version 20.0.3
• Dart plugin version 173.4127.31
[✓] Connected devices
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.1.0 (API 27) (emulator)
• iPhone • b08050db65c1aecd9eda3ffc2bd8a89148c82a46 • ios • iOS 11.2.2
</code></pre></div>
<blockquote>
<p dir="auto">For more information about diagnosing and reporting Flutter bugs, please see <a href="https://flutter.io/bug-reports/" rel="nofollow">https://flutter.io/bug-reports/</a>.</p>
</blockquote> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.2</li>
<li>Operating System / Platform => Fedora Rawhide</li>
<li>Compiler => GCC 10</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">opencv fails to build with vtk 9.0. First issue is that VTK 9 no longer sets VTK_RENDERING_BACKEND. This at least can worked around by passing that option to cmake.</p>
<p dir="auto">Testing builds here: <a href="https://copr.fedorainfracloud.org/coprs/orion/vtk9.0/builds/" rel="nofollow">https://copr.fedorainfracloud.org/coprs/orion/vtk9.0/builds/</a></p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.5</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">The documentation for color conversions does not explain what _FULL does, e.g. <a href="https://docs.opencv.org/4.5.0/d8/d01/group__imgproc__color__conversions.html#gga4e0972be5de079fed4e3a10e24ef5ef0ae0070d7e97f1e565cc0992d038e5498e" rel="nofollow">https://docs.opencv.org/4.5.0/d8/d01/group__imgproc__color__conversions.html#gga4e0972be5de079fed4e3a10e24ef5ef0ae0070d7e97f1e565cc0992d038e5498e</a><br>
I believe this should be explained for each color conversion as there are different interpretations on forums.</p>
<h5 dir="auto">Issue submission checklist</h5>
<ul dir="auto">
<li>[*] I report the issue, it's not a question</li>
<li>[*] I checked the problem with documentation, FAQ, open issues,<br>
answers.opencv.org, Stack Overflow, etc and have not found solution<br>
There are some places with answers like:<br>
<a href="https://stackoverflow.com/questions/34200353/why-isnt-inrange-function-detecting-blue-color-when-i-have-given-it-the-entire" rel="nofollow">https://stackoverflow.com/questions/34200353/why-isnt-inrange-function-detecting-blue-color-when-i-have-given-it-the-entire</a><br>
or<br>
<a href="https://stackoverflow.com/questions/21782420/difference-between-hsv-and-hsv-full-in-opencv" rel="nofollow">https://stackoverflow.com/questions/21782420/difference-between-hsv-and-hsv-full-in-opencv</a></li>
</ul>
<p dir="auto">but they actually give different answers (full gives H in [0,255] in one, [0,360] in the other).</p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">In visual studio, i got this error in every d.ts file under node_modules\rxjs\add\observable\ :<br>
<strong>Invalid module name in augmentation, module '../../Observable' cannot be found.</strong><br>
example code: <strong>declare module '../../Observable' {</strong></p>
<p dir="auto">how to fix that please?</p> | <p dir="auto">I have a class called Webpack, which I augment to add a new method <code class="notranslate">addLess</code> like so:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// addLess.ts
import { Webpack } from '../webpack';
declare module '../webpack' {
interface Webpack {
addLess(): Webpack;
}
}
const lessConfiguration = {
module: {
loaders: [
{ test: /\.less$/, loader: "style!css!less" }
]
}
};
class Implementation extends Webpack {
addLess(): Webpack {
return this.mergeModule('less', lessConfiguration);
}
}
Webpack.prototype.addLess = Implementation.prototype.addLess;"><pre class="notranslate"><span class="pl-c">// addLess.ts</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Webpack</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'../webpack'</span><span class="pl-kos">;</span>
<span class="pl-k">declare</span> module <span class="pl-s">'../webpack'</span> <span class="pl-kos">{</span>
<span class="pl-k">interface</span> <span class="pl-smi">Webpack</span> <span class="pl-kos">{</span>
<span class="pl-c1">addLess</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">Webpack</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">lessConfiguration</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">module</span>: <span class="pl-kos">{</span>
<span class="pl-c1">loaders</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>less<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-c1">loader</span>: <span class="pl-s">"style!css!less"</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">class</span> <span class="pl-smi">Implementation</span> <span class="pl-k">extends</span> <span class="pl-smi">Webpack</span> <span class="pl-kos">{</span>
<span class="pl-en">addLess</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">Webpack</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">mergeModule</span><span class="pl-kos">(</span><span class="pl-s">'less'</span><span class="pl-kos">,</span> <span class="pl-s1">lessConfiguration</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-smi">Webpack</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">addLess</span> <span class="pl-c1">=</span> <span class="pl-smi">Implementation</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">addLess</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">This works great in the current typescript project, but if I compile (with declarations), and try to use the compiled project in another project, the new method is not shown in intellisense in Visual Studio, and it is shown as an error if I try to use it anyway.<br>
However, if I make sure something is exported from the module above it works as expected. For example, I can work around the issue by exporting the class <code class="notranslate">Implementation</code> like so:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// addLess.ts
import { Webpack } from '../webpack';
declare module '../webpack' {
interface Webpack {
addLess(): Webpack;
}
}
const lessConfiguration = {
module: {
loaders: [
{ test: /\.less$/, loader: "style!css!less" }
]
}
};
export class Implementation extends Webpack {
addLess(): Webpack {
return this.mergeModule('less', lessConfiguration);
}
}
Webpack.prototype.addLess = Implementation.prototype.addLess;"><pre class="notranslate"><span class="pl-c">// addLess.ts</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Webpack</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'../webpack'</span><span class="pl-kos">;</span>
<span class="pl-k">declare</span> module <span class="pl-s">'../webpack'</span> <span class="pl-kos">{</span>
<span class="pl-k">interface</span> <span class="pl-smi">Webpack</span> <span class="pl-kos">{</span>
<span class="pl-c1">addLess</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">Webpack</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">lessConfiguration</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">module</span>: <span class="pl-kos">{</span>
<span class="pl-c1">loaders</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>less<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-c1">loader</span>: <span class="pl-s">"style!css!less"</span> <span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">Implementation</span> <span class="pl-k">extends</span> <span class="pl-smi">Webpack</span> <span class="pl-kos">{</span>
<span class="pl-en">addLess</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">Webpack</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">mergeModule</span><span class="pl-kos">(</span><span class="pl-s">'less'</span><span class="pl-kos">,</span> <span class="pl-s1">lessConfiguration</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-smi">Webpack</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">addLess</span> <span class="pl-c1">=</span> <span class="pl-smi">Implementation</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">addLess</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">However, this means that I am exporting something, that should be private to the module.</p>
<p dir="auto">This issue is only in Visual Studio. When compiling with <code class="notranslate">gulp-typescript</code> using typescript 1.8.2, 1.8.5, 1.8.6 or 1.8.7 I get no errors - with or without the extra export.</p>
<p dir="auto">I am using Visual Studio 2015 update 1 with the extension for Typescript 1.8.4.</p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 1903
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: 1903
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>
<ol dir="auto">
<li>Have a 1366x768 monitor</li>
<li>Open "Edit zones"</li>
<li>Realize that the window is taller than 768 pixels</li>
<li>Drag it down so you can resize it maybe</li>
<li>Realize it's not resizeable</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Window is resizeable and/or fits on any reasonable screen</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Window is too tall and not resizeable</p>
<h1 dir="auto">Screenshots</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/ba20f5d89b8af707f48bde9257ab5e68d19c9c245dc2fe954b40bb46c157ba97/68747470733a2f2f692e696d6775722e636f6d2f596938647933392e706e67"><img src="https://camo.githubusercontent.com/ba20f5d89b8af707f48bde9257ab5e68d19c9c245dc2fe954b40bb46c157ba97/68747470733a2f2f692e696d6775722e636f6d2f596938647933392e706e67" alt="" data-canonical-src="https://i.imgur.com/Yi8dy39.png" style="max-width: 100%;"></a></p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide a description of the new feature</h2>
<p dir="auto">I want word meanings feature in powertoys as it is in spotlight.</p> | 0 |
<h1 dir="auto">JavaScript powered by TypeScript</h1>
<p dir="auto">This proposal outlines the ability to provide a rich JavaScript development experience, by using and extending the capabilities present in TypeScript</p>
<h2 dir="auto">The problem</h2>
<ul dir="auto">
<li>JavaScript intellisense is a mixed bag today. The experiences differ, and it is often inconsistent and/or inaccurate. For example:
<ul dir="auto">
<li>Execution based intellisense falls down on highly dynamic code (e.g. if code depends on external resources or user interaction), behaves differently on different hardware (due to timeout limits in allowing execution), and can be unpredictable (sometimes working or not-working based on seemingly unrelated edits)</li>
<li>Static analysis engines that do in depth code analysis such as tracking call-sites and conditional branches, can often be resource hungry (especially on large code bases) and requires a great deal of code & maintenance to handle the various JavaScript patterns used in the long tail of common libraries & modules</li>
</ul>
</li>
<li>Types are great in TypeScript, and provide for accurate & consistent intellisense, but lots of developers want to keep writing JavaScript directly, or can't address all the TypeScript errors if migrating their existing JavaScript projects. Thus:
<ul dir="auto">
<li>Some of the best JavaScript library definitions are in TypeScript, but are inaccessible to JavaScript developers</li>
<li>Even those wanting to move to projects (or part of them) to TypeScript have a tough challenge converting, due to TypeScript syntax and errors that typically occurs if one just renames a .js file to .ts</li>
</ul>
</li>
<li>Types can be modeled in other ways in JavaScript, such as the common JsDoc comment format, but IDE support and modelling of existing libraries in these other formats is spotty at best</li>
<li>In Visual Studio currently, the integration across JavaScript tooling is poor, resulting in a less than stellar experience if working across areas:
<ul dir="auto">
<li>The JavaScript language service - which is execution based, the Node Tools for Visual Studio - which is analysis based, and the TypeScript tooling - which has a static type system, have limited to zero integration points when authoring code across these project types</li>
<li>Beyond not understanding code across contexts, this results in a disparate editing experience, with ES6 syntax support, auto-formatting, intellisense behavior, etc… all slightly different across the three. (Not to mention the duplicate engineering in writing features and fixing bugs across three implementations)</li>
</ul>
</li>
</ul>
<h2 dir="auto">The opportunity</h2>
<p dir="auto">If the TypeScript language service could be enhanced to work with JavaScript code:</p>
<ul dir="auto">
<li>The extensive library definitions provided by the TypeScript ecosystem could be leveraged, allowing for rich intellisense for common libraries.</li>
<li>Many of the challenges with execution based or analysis engine based intellisense could be avoided (though others occurs, as outlined further below).</li>
<li>As well as JavaScript leveraging the types defined in TypeScript, TypeScript could understand (to a degree) the code in JavaScript files.</li>
<li>This provides an ability to mix TypeScript & JavaScript code within a project, and also gradually migrate code if desired.</li>
<li>The ability of TypeScript to compile ES6+ constructs (classes, arrow functions, modules, etc…) down to ES5 code, could be applied to JavaScript as well (effectively allowing the authoring of ES6 JavaScript to run in ES5 engines). This applies to potentially other features in TypeScript also (e.g. providing JSX support based on TypeScript's TSX support).</li>
<li>Code across (currently) different project types could share context (e.g. browser targeted ES5 JavaScript could understand Node modules written in ES6 JavaScript, and could both leverage interfaces defined in TypeScript).</li>
<li>The editing experience and settings would be consistent across the experiences (and in Visual Studio for example, engineering costs for maintaining three implementations could be spent instead on improving the one).</li>
<li>Being based on the current TypeScript codebase would make this JavaScript experience available outside of Visual Studio (and for very cheap where the TypeScript language service is already used, e.g. the Sublime plugin, the VS Code editor, etc…).</li>
</ul>
<h2 dir="auto">The challenges</h2>
<ul dir="auto">
<li>How to declare and use types within JavaScript (e.g. JsDoc, lib.d.ts, node.d.ts, 3rd party library definitions, custom code, inference, etc…)?</li>
<li>How to support common JavaScript patterns not supported by TypeScript today (RequireJS & CommonJS modules, constructor & prototype properties, etc…)?</li>
<li>How to feed JavaScript into TypeScript compilations (e.g. what files to pick up, compiler options, etc…)?</li>
<li>Assuming the above can be solved, what is the resulting JavaScript developer experience (e.g. making TypeScript "invisible" if just interested in writing JavaScript, the intellisense experience when type inference fails, example project structures and settings for different project types, how to author mixed code or migrate existing code)?</li>
</ul>
<p dir="auto">The above challenges are covered in the following separate write-ups:</p>
<ul dir="auto">
<li><a href="https://github.com/Microsoft/TypeScript/issues/4790" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/4790/hovercard">JavaScript types in TypeScript</a></li>
<li><a href="https://github.com/Microsoft/TypeScript/issues/4791" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/4791/hovercard">JavaScript module systems in TypeScript</a></li>
<li><a href="https://github.com/Microsoft/TypeScript/issues/4792" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/4792/hovercard">JavaScript in TypeScript compilations</a></li>
<li><a href="https://github.com/Microsoft/TypeScript/issues/4793" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/4793/hovercard">JavaScript developer experience</a></li>
</ul> | <p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.9.0-dev (nightly)</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="// A self-contained demonstration of the problem follows...
function <T>(arg: T|T[]) {
if (Array.isArray(arg)) {
// arg expected to be T[] here, and it has type T[] (works as expected)
} else {
// arg expected to be T here, but it is has type T|T[] (unexpected behaviour)
}
}"><pre class="notranslate"><span class="pl-c">// A self-contained demonstration of the problem follows...</span>
<span class="pl-k">function</span> <span class="pl-c1"><</span><span class="pl-smi">T</span><span class="pl-c1">></span><span class="pl-kos">(</span><span class="pl-s1">arg</span>: <span class="pl-smi">T</span><span class="pl-c1">|</span><span class="pl-smi">T</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-smi">Array</span><span class="pl-kos">.</span><span class="pl-en">isArray</span><span class="pl-kos">(</span><span class="pl-s1">arg</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c">// arg expected to be T[] here, and it has type T[] (works as expected)</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span>
<span class="pl-c">// arg expected to be T here, but it is has type T|T[] (unexpected behaviour)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">Torch fails to install with GPU support after following the instructions at <a href="https://github.com/pytorch/pytorch#from-source">https://github.com/pytorch/pytorch#from-source</a>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import torch
torch.cuda.is_available() # returns False
torch.cuda.device_count() # returns 0"><pre class="notranslate"><code class="notranslate">import torch
torch.cuda.is_available() # returns False
torch.cuda.device_count() # returns 0
</code></pre></div>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="git clone --recursive https://github.com/pytorch/pytorch
cd pytorch
MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install"><pre class="notranslate"><code class="notranslate">git clone --recursive https://github.com/pytorch/pytorch
cd pytorch
MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install
</code></pre></div>
<p dir="auto">Log:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install
Building wheel torch-1.0.0a0+4c11dee
running install
setup.py::run()
running build_deps
setup.py::build_deps::run()
+ SYNC_COMMAND=cp
++ command -v rsync
+ '[' -x /usr/bin/rsync ']'
+ SYNC_COMMAND='rsync -lptgoD'
+ CMAKE_COMMAND=cmake
++ command -v cmake3
+ [[ -x '' ]]
+ USE_CUDA=0
+ USE_FBGEMM=0
+ USE_ROCM=0
+ USE_NNPACK=0
+ USE_MKLDNN=0
+ USE_QNNPACK=0
+ USE_GLOO_IBVERBS=0
+ CAFFE2_STATIC_LINK_CUDA=0
+ RERUN_CMAKE=1
+ [[ 5 -gt 0 ]]
+ case "$1" in
+ USE_CUDA=1
+ shift
+ [[ 4 -gt 0 ]]
+ case "$1" in
+ USE_NNPACK=1
+ shift
+ [[ 3 -gt 0 ]]
+ case "$1" in
+ USE_MKLDNN=1
+ shift
+ [[ 2 -gt 0 ]]
+ case "$1" in
+ USE_QNNPACK=1
+ shift
+ [[ 1 -gt 0 ]]
+ case "$1" in
+ break
+ CMAKE_INSTALL='make install'
+ BUILD_SHARED_LIBS=ON
+ USER_CFLAGS=
+ USER_LDFLAGS=
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
++ uname
+ '[' Darwin == Darwin ']'
+ '[' -d /usr/local/opt/ccache/libexec ']'
+++ dirname ../tools/build_pytorch_libs.sh
++ cd ../tools/..
+++ pwd
++ printf '%q\n' /Users/carlos/Downloads/pytorch
+ BASE_DIR=/Users/carlos/Downloads/pytorch
+ TORCH_LIB_DIR=/Users/carlos/Downloads/pytorch/torch/lib
+ INSTALL_DIR=/Users/carlos/Downloads/pytorch/torch/lib/tmp_install
+ THIRD_PARTY_DIR=/Users/carlos/Downloads/pytorch/third_party
+ C_FLAGS=
+ C_FLAGS=' -DOMPI_SKIP_MPICXX=1'
+ LDFLAGS=
+ LD_POSTFIX=.so
++ uname
+ [[ Darwin == \D\a\r\w\i\n ]]
+ LDFLAGS=' -Wl,-rpath,@loader_path'
+ LD_POSTFIX=.dylib
+ CPP_FLAGS=' -std=c++11 '
+ THD_FLAGS=
+ [[ 0 -eq 1 ]]
+ CUDA_NVCC_FLAGS=' -DOMPI_SKIP_MPICXX=1'
+ [[ -z '' ]]
+ CUDA_DEVICE_DEBUG=0
+ '[' -z '' ']'
++ getconf _NPROCESSORS_ONLN
+ MAX_JOBS=8
+ BUILD_TYPE=Release
+ [[ -n '' ]]
+ [[ -n '' ]]
+ echo 'Building in Release mode'
Building in Release mode
+ mkdir -p /Users/carlos/Downloads/pytorch/torch/lib/tmp_install
+ for arg in '"$@"'
+ [[ caffe2 == \c\a\f\f\e\2 ]]
+ build_caffe2
+ [[ -z '' ]]
+ EXTRA_CAFFE2_CMAKE_FLAGS=()
+ [[ -n '' ]]
+ [[ -n /anaconda3/lib/python3.6/site-packages ]]
+ EXTRA_CAFFE2_CMAKE_FLAGS+=("-DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH")
+ [[ 1 -eq 1 ]]
+ cmake /Users/carlos/Downloads/pytorch -DPYTHON_EXECUTABLE=/anaconda3/bin/python -DPYTHON_LIBRARY=/anaconda3/lib/libpython3.6m.dylib -DPYTHON_INCLUDE_DIR=/anaconda3/include/python3.6m -DBUILDING_WITH_TORCH_LIBS=ON -DTORCH_BUILD_VERSION=1.0.0a0+4c11dee -DCMAKE_BUILD_TYPE=Release -DBUILD_TORCH=ON -DBUILD_PYTHON=ON -DBUILD_SHARED_LIBS=ON -DBUILD_BINARY=OFF -DBUILD_TEST=ON -DINSTALL_TEST=ON -DBUILD_CAFFE2_OPS=ON -DONNX_NAMESPACE=onnx_torch -DUSE_CUDA=1 -DUSE_DISTRIBUTED=ON -DUSE_FBGEMM=0 -DUSE_NUMPY= -DNUMPY_INCLUDE_DIR=/anaconda3/lib/python3.6/site-packages/numpy/core/include -DUSE_SYSTEM_NCCL=OFF -DNCCL_INCLUDE_DIR= -DNCCL_ROOT_DIR= -DNCCL_SYSTEM_LIB= -DCAFFE2_STATIC_LINK_CUDA=0 -DUSE_ROCM=0 -DUSE_NNPACK=1 -DUSE_LEVELDB=OFF -DUSE_LMDB=OFF -DUSE_OPENCV=OFF -DUSE_QNNPACK=1 -DUSE_FFMPEG=OFF -DUSE_GLOG=OFF -DUSE_GFLAGS=OFF -DUSE_SYSTEM_EIGEN_INSTALL=OFF -DCUDNN_INCLUDE_DIR=/usr/local/cuda/include -DCUDNN_LIB_DIR=/usr/local/cuda/lib -DCUDNN_LIBRARY=/usr/local/cuda/lib/libcudnn.7.dylib -DUSE_MKLDNN=1 -DNCCL_EXTERNAL=1 -DCMAKE_INSTALL_PREFIX=/Users/carlos/Downloads/pytorch/torch/lib/tmp_install -DCMAKE_C_FLAGS= -DCMAKE_CXX_FLAGS= '-DCMAKE_EXE_LINKER_FLAGS= -Wl,-rpath,@loader_path ' '-DCMAKE_SHARED_LINKER_FLAGS= -Wl,-rpath,@loader_path ' -DTHD_SO_VERSION=1 -DCMAKE_PREFIX_PATH=/anaconda3/lib/python3.6/site-packages
-- CLANG_VERSION_STRING: 9.1
-- std::exception_ptr is supported.
-- NUMA is disabled
-- Turning off deprecation warning due to glog.
-- Current compiler supports avx2 extension. Will build perfkernels.
-- Current compiler supports avx512f extension. Will build fbgemm.
-- Building using own protobuf under third_party per request.
-- Use custom protobuf build.
-- Caffe2 protobuf include directory: $<BUILD_INTERFACE:/Users/carlos/Downloads/pytorch/third_party/protobuf/src>$<INSTALL_INTERFACE:include>
-- The BLAS backend of choice:MKL
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl - guide - pthread - m]
-- Library mkl: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl - guide - pthread - m]
-- Library mkl: not found
CMake Warning at cmake/Dependencies.cmake:77 (message):
MKL could not be found. Defaulting to Eigen
Call Stack (most recent call first):
CMakeLists.txt:201 (include)
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl - guide - pthread - m]
-- Library mkl: not found
-- MKL library not found
-- Checking for [Accelerate]
-- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Accelerate.framework
-- This BLAS uses the F2C return conventions
-- Found a library with BLAS API (accelerate).
-- Brace yourself, we are building NNPACK
-- Found PythonInterp: /anaconda3/bin/python (found version "3.6.6")
-- Failed to find LLVM FileCheck
-- git Version: v1.4.0-505be96a
-- Version: 1.4.0
-- Performing Test HAVE_THREAD_SAFETY_ATTRIBUTES -- failed to compile
-- Performing Test HAVE_STD_REGEX -- success
-- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
-- Performing Test HAVE_POSIX_REGEX -- success
-- Performing Test HAVE_STEADY_CLOCK -- success
-- Using third party subdirectory Eigen.
Python 3.6.6 :: Anaconda custom (64-bit)
-- Found PythonInterp: /anaconda3/bin/python (found suitable version "3.6.6", minimum required is "2.7")
-- Could NOT find pybind11 (missing: pybind11_DIR)
-- Could NOT find pybind11 (missing: pybind11_INCLUDE_DIR)
-- Using third_party/pybind11.
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "7.0")
-- Caffe2: CUDA detected: 10.0
-- Caffe2: CUDA nvcc is: /usr/local/cuda/bin/nvcc
-- Caffe2: CUDA toolkit directory: /usr/local/cuda
-- Caffe2: Header version is: 10.0
-- Found cuDNN: v7.4.1 (include: /usr/local/cuda/include, library: /usr/local/cuda/lib/libcudnn.7.dylib)
-- Automatic GPU detection failed. Building for common architectures.
-- Autodetected CUDA architecture(s): 3.0;3.5;5.0;5.2;6.0;6.1;7.0;7.0+PTX
-- Added CUDA NVCC flags for: -gencode;arch=compute_30,code=sm_30;-gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-gencode;arch=compute_70,code=sm_70;-gencode;arch=compute_70,code=compute_70
-- Could NOT find CUB (missing: CUB_INCLUDE_DIR)
--
-- ******** Summary ********
-- CMake version : 3.13.0
-- CMake command : /anaconda3/lib/python3.6/site-packages/cmake/data/CMake.app/Contents/bin/cmake
-- System : Darwin
-- C++ compiler : /Library/Developer/CommandLineTools/usr/bin/clang++
-- C++ compiler version : 9.1.0.9020039
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -Wno-deprecated-declarations
-- Build type : Release
-- Compile definitions :
-- CMAKE_PREFIX_PATH : /anaconda3/lib/python3.6/site-packages
-- CMAKE_INSTALL_PREFIX : /Users/carlos/Downloads/pytorch/torch/lib/tmp_install
-- CMAKE_MODULE_PATH : /Users/carlos/Downloads/pytorch/cmake/Modules;/Users/carlos/Downloads/pytorch/cmake/public/../Modules_CUDA_fix
--
-- ONNX version : 1.3.0
-- ONNX NAMESPACE : onnx_torch
-- ONNX_BUILD_TESTS : OFF
-- ONNX_BUILD_BENCHMARKS : OFF
-- ONNX_USE_LITE_PROTO : OFF
-- ONNXIFI_DUMMY_BACKEND : OFF
--
-- Protobuf compiler :
-- Protobuf includes :
-- Protobuf libraries :
-- BUILD_ONNX_PYTHON : OFF
-- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor
-- Removing -DNDEBUG from compile flags
-- MAGMA not found. Compiling without MAGMA support
-- Could not find hardware support for NEON on this machine.
-- No OMAP3 processor on this machine.
-- No OMAP4 processor on this machine.
-- AVX compiler support found
-- AVX2 compiler support found
-- Atomics: using GCC intrinsics
-- Found a library with LAPACK API. (accelerate)
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "5.5")
disabling ROCM because NOT USE_ROCM is set
-- MIOpen not found. Compiling without MIOpen support
CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:21 (cmake_policy):
The OLD behavior for policy CMP0048 will be removed from a future version
of CMake.
The cmake-policies(7) manual explains that the OLD behaviors of all
policies are deprecated and that a policy should be set to OLD only under
specific short-term circumstances. Projects should be ported to the NEW
behavior and not rely on setting a policy to OLD.
CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:22 (cmake_policy):
The OLD behavior for policy CMP0054 will be removed from a future version
of CMake.
The cmake-policies(7) manual explains that the OLD behaviors of all
policies are deprecated and that a policy should be set to OLD only under
specific short-term circumstances. Projects should be ported to the NEW
behavior and not rely on setting a policy to OLD.
-- Detecting Intel(R) MKL: trying mklml_intel
-- Intel(R) MKL: include /Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn/external/mklml_mac_2018.0.3.20180406/include
-- Intel(R) MKL: lib /Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn/external/mklml_mac_2018.0.3.20180406/lib/libmklml.dylib
-- Intel(R) MKL: OpenMP lib /Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn/external/mklml_mac_2018.0.3.20180406/lib/libiomp5.dylib
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- VTune profiling environment is unset
CMake Warning (dev) at cmake/public/mkldnn.cmake:1 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
CMake variable MKLDNN_ROOT is set to:
/Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn
For compatibility, CMake is ignoring the variable.
Call Stack (most recent call first):
cmake/Dependencies.cmake:1308 (INCLUDE)
CMakeLists.txt:201 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Using python found in /anaconda3/bin/python
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Configuring build for SLEEF-v3.2
Target system: Darwin-18.2.0
Target processor: x86_64
Host system: Darwin-18.2.0
Host processor: x86_64
Detected C compiler: AppleClang @ /Library/Developer/CommandLineTools/usr/bin/clang
-- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef
-- Building shared libs : OFF
-- MPFR : /usr/local/lib/libmpfr.dylib
-- MPFR header file in /usr/local/include
-- GMP : /usr/local/lib/libgmp.dylib
-- RUNNING_ON_TRAVIS : 0
-- COMPILER_SUPPORTS_OPENMP :
-- Using python found in /anaconda3/bin/python
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS)
-- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS)
-- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND)
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "7.5")
-- NCCL operators skipped due to no CUDA support
-- Including IDEEP operators
-- Excluding image processing operators due to no opencv
-- Excluding video processing operators due to no opencv
-- MPI operators skipped due to no MPI support
-- Include Observer library
-- Using lib/python3.6/site-packages as python relative installation path
-- Automatically generating missing __init__.py files.
-- A previous caffe2 cmake run already created the __init__.py files.
CMake Warning at CMakeLists.txt:389 (message):
Generated cmake files are only fully tested if one builds with system glog,
gflags, and protobuf. Other settings may generate files that are not well
tested.
--
-- ******** Summary ********
-- General:
-- CMake version : 3.13.0
-- CMake command : /anaconda3/lib/python3.6/site-packages/cmake/data/CMake.app/Contents/bin/cmake
-- System : Darwin
-- C++ compiler : /Library/Developer/CommandLineTools/usr/bin/clang++
-- C++ compiler version : 9.1.0.9020039
-- BLAS : MKL
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -Wno-deprecated-declarations -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -Wno-invalid-partial-specialization -Wno-typedef-redefinition -Wno-unknown-warning-option -Wno-unused-private-field -Wno-inconsistent-missing-override -Wno-aligned-allocation-unavailable -Wno-c++14-extensions -Wno-constexpr-not-const -Wno-missing-braces -Qunused-arguments -faligned-new -Wno-unused-private-field -Wno-missing-braces -Wno-c++14-extensions -Wno-constexpr-not-const
-- Build type : Release
-- Compile definitions : ONNX_NAMESPACE=onnx_torch;USE_GCC_ATOMICS=1;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1
-- CMAKE_PREFIX_PATH : /anaconda3/lib/python3.6/site-packages
-- CMAKE_INSTALL_PREFIX : /Users/carlos/Downloads/pytorch/torch/lib/tmp_install
--
-- TORCH_VERSION : 1.0.0
-- CAFFE2_VERSION : 1.0.0
-- BUILD_ATEN_MOBILE : OFF
-- BUILD_ATEN_ONLY : OFF
-- BUILD_BINARY : OFF
-- BUILD_CUSTOM_PROTOBUF : ON
-- Link local protobuf : ON
-- BUILD_DOCS : OFF
-- BUILD_PYTHON : ON
-- Python version : 3.6.6
-- Python executable : /anaconda3/bin/python
-- Pythonlibs version : 3.6.6
-- Python library : /anaconda3/lib/libpython3.6m.dylib
-- Python includes : /anaconda3/include/python3.6m
-- Python site-packages: lib/python3.6/site-packages
-- BUILD_CAFFE2_OPS : ON
-- BUILD_SHARED_LIBS : ON
-- BUILD_TEST : ON
-- USE_ASAN : OFF
-- USE_CUDA : 1
-- CUDA static link : 0
-- USE_CUDNN : ON
-- CUDA version : 10.0
-- cuDNN version : 7.4.1
-- CUDA root directory : /usr/local/cuda
-- CUDA library : /usr/local/cuda/lib/libcuda.dylib
-- cudart library : /usr/local/cuda/lib/libcudart_static.a;-Wl,-rpath,/usr/local/cuda/lib
-- cublas library : /usr/local/cuda/lib/libcublas.dylib
-- cufft library : /usr/local/cuda/lib/libcufft.dylib
-- curand library : /usr/local/cuda/lib/libcurand.dylib
-- cuDNN library : /usr/local/cuda/lib/libcudnn.7.dylib
-- nvrtc : /usr/local/cuda/lib/libnvrtc.dylib
-- CUDA include path : /usr/local/cuda/include
-- NVCC executable : /usr/local/cuda/bin/nvcc
-- CUDA host compiler : /Library/Developer/CommandLineTools/usr/bin/clang
-- USE_TENSORRT : OFF
-- USE_ROCM : 0
-- USE_EIGEN_FOR_BLAS : ON
-- USE_FBGEMM : 0
-- USE_FFMPEG : OFF
-- USE_GFLAGS : OFF
-- USE_GLOG : OFF
-- USE_LEVELDB : OFF
-- USE_LITE_PROTO : OFF
-- USE_LMDB : OFF
-- USE_METAL : OFF
-- USE_MKL : OFF
-- USE_MKLDNN : ON
-- USE_MOBILE_OPENGL : OFF
-- USE_NCCL : OFF
-- USE_NNPACK : 1
-- USE_NUMPY : ON
-- USE_OBSERVERS : ON
-- USE_OPENCL : OFF
-- USE_OPENCV : OFF
-- USE_OPENMP : OFF
-- USE_PROF : OFF
-- USE_QNNPACK : 1
-- USE_REDIS : OFF
-- USE_ROCKSDB : OFF
-- USE_ZMQ : OFF
-- USE_DISTRIBUTED : ON
-- USE_MPI : OFF
-- USE_GLOO : OFF
-- USE_GLOO_IBVERBS : OFF
-- Public Dependencies : Threads::Threads;caffe2::mkldnn
-- Private Dependencies : qnnpack;nnpack;cpuinfo;fp16;aten_op_header_gen;onnxifi_loader
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/carlos/Downloads/pytorch/build
+ make install -j8
[ 0%] Built target onnxifi_loader
[ 0%] Built target clog
[ 0%] Built target js_embed
[ 0%] Built target pthreadpool
[ 0%] Built target gtest
[ 1%] Built target benchmark
[ 2%] Built target libprotobuf-lite
[ 3%] Built target onnxifi_dummy
[ 3%] Built target ATEN_CPU_FILES_GEN_TARGET
[ 3%] Built target ATEN_CUDA_FILES_GEN_TARGET
[ 5%] Built target c10
[ 5%] Built target common
[ 5%] Built target mkrename
[ 5%] Built target mkdisp
[ 5%] Built target mkalias
[ 9%] Built target mkldnn
[ 10%] Built target mkmasked_gnuabi
[ 10%] Built target mkrename_gnuabi
[ 14%] Built target libprotobuf
[ 14%] Built target arraymap
[ 14%] Built target c10_utils_hip
[ 14%] Built target c10_utils_gpu
[ 14%] Built target torch_shm_manager
[ 14%] Built target c10_utils_cpu
[ 14%] Built target cpuinfo
[ 14%] Built target nnpack_reference_layers
[ 14%] Built target gtest_main
[ 14%] Built target onnxifi_wrapper
[ 14%] Built target __aten_op_header_gen
[ 15%] Built target headers
[ 15%] Built target benchmark_main
[ 15%] Built target renamedsp256.h_generated
[ 15%] Built target c10_cuda
[ 15%] Built target dispavx.c_generated
[ 15%] Built target renameAVX.h_generated
[ 15%] Built target renameSSE2.h_generated
[ 15%] Built target renameSSE4.h_generated
[ 15%] Built target renameFMA4.h_generated
[ 15%] Built target renameAVX2128.h_generated
[ 15%] Built target renameAVX2.h_generated
[ 15%] Built target dispsse.c_generated
[ 15%] Built target renamedsp128.h_generated
[ 15%] Built target renameAVX512F.h_generated
[ 15%] Generating alias_avx512f.h
[ 15%] Built target c10_utils_gpu_test
[ 15%] Built target c10_utils_hip_test
[ 15%] Built target c10_utils_cpu_test
[ 17%] Built target nnpack
[ 17%] Built target qnnpack
[ 17%] Built target c10_typeid_test
[ 17%] Built target c10_intrusive_ptr_test
[ 17%] Built target alias_avx512f.h_generated
[ 17%] Built target c10_TypeTraits_test
[ 18%] Built target c10_registry_test
[ 18%] Built target c10_TypeList_test
[ 18%] Built target c10_InlineStreamGuard_test
[ 18%] Built target c10_logging_test
[ 18%] Built target c10_Metaprogramming_test
[ 18%] Built target c10_InlineDeviceGuard_test
[ 18%] Built target c10_Array_test
[ 18%] Built target c10_flags_test
[ 19%] Built target c10_OpSchema_test
[ 19%] Built target c10_TensorTypeId_test
[ 19%] Built target c10_StreamGuard_test
[ 19%] Built target c10_DeviceGuard_test
[ 19%] Built target dispavx_obj
[ 19%] Built target c10_cuda_CUDATest
[ 19%] Built target sleefsse2
[ 20%] Built target sleeffma4
[ 20%] Built target sleefavx
[ 20%] Built target sleefsse4
[ 20%] Built target sleefavx2128
[ 20%] Built target sleefavx2
[ 21%] Built target dispsse_obj
[ 21%] Built target sleefavx512f
[ 26%] Built target libprotoc
[ 26%] Built target sleef
[ 26%] Built target protoc
[ 27%] Built target gen_onnx_proto
[ 27%] Built target Caffe2_PROTO
[ 27%] Built target onnx_proto
[ 27%] Built target caffe2_protos
[ 28%] Built target Caffe2_perfkernels_avx
[ 28%] Built target Caffe2_perfkernels_avx2
[ 30%] Built target onnx
[ 59%] Built target caffe2
[ 59%] Built target shm
[ 59%] Built target caffe2_module_test_dynamic
[ 59%] Built target caffe2_observers
[ 59%] Built target caffe2_pybind11_state
[ 60%] Built target THD
[ 60%] Linking CXX shared library ../lib/libcaffe2_gpu.dylib
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 60%] Built target python_copy_files
[ 80%] Built target caffe2_gpu
[ 80%] Linking CXX executable ../bin/batch_matmul_op_gpu_test
[ 80%] Linking CXX executable ../bin/operator_fallback_gpu_test
[ 80%] Linking CXX executable ../bin/operator_gpu_test
[ 80%] Linking CXX executable ../bin/conv_op_cache_cudnn_test
[ 80%] Linking CXX executable ../bin/utility_ops_gpu_test
[ 80%] Linking CXX executable ../bin/roi_align_op_gpu_test
[ 80%] Linking CXX executable ../bin/elementwise_op_gpu_test
[ 81%] Linking CXX shared module python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so
[ 81%] Built target conv_op_cache_cudnn_test
[ 81%] Built target operator_gpu_test
[ 81%] Built target batch_matmul_op_gpu_test
[ 81%] Built target elementwise_op_gpu_test
[ 81%] Built target utility_ops_gpu_test
[ 81%] Built target operator_fallback_gpu_test
[ 81%] Built target roi_align_op_gpu_test
[ 81%] Built target caffe2_pybind11_state_gpu
[ 81%] Linking CXX executable ../bin/net_gpu_test
[ 81%] Linking CXX executable ../bin/context_gpu_test
[ 81%] Linking CXX executable ../bin/blob_gpu_test
[ 81%] Linking CXX executable ../bin/dead_code_elim_test
[ 81%] Linking CXX executable ../bin/cudnn_test
[ 81%] Linking CXX executable ../bin/conv_to_nnpack_transform_test
[ 81%] Linking CXX executable ../bin/cuda_rng_test
[ 81%] Linking CXX executable ../bin/depthwise3x3_conv_op_test
[ 81%] Built target conv_to_nnpack_transform_test
[ 81%] Built target dead_code_elim_test
[ 81%] Built target cudnn_test
[ 81%] Built target cuda_rng_test
[ 81%] Built target context_gpu_test
[ 81%] Built target depthwise3x3_conv_op_test
[ 81%] Linking CXX executable ../bin/nnpack_test
[ 81%] Linking CXX executable ../bin/distributed_test
[ 81%] Linking CXX executable ../bin/converter_nomigraph_test
[ 81%] Built target net_gpu_test
[ 81%] Linking CXX executable ../bin/backend_cutting_test
[ 81%] Linking CXX executable ../bin/blob_test
[ 81%] Linking CXX executable ../bin/integer_divider_test
[ 81%] Built target blob_gpu_test
[ 81%] Linking CXX executable ../bin/int8_roi_align_op_test
[ 81%] Linking CXX executable ../bin/workspace_test
[ 82%] Built target distributed_test
[ 82%] Built target converter_nomigraph_test
[ 82%] Built target backend_cutting_test
[ 82%] Built target nnpack_test
[ 82%] Built target integer_divider_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 82%] Built target int8_roi_align_op_test
Scanning dependencies of target cuda_optional_test
[ 82%] Linking CXX executable ../bin/utility_ops_test
[ 82%] Linking CXX executable ../bin/int8_test
[ 82%] Linking CXX executable ../bin/fatal_signal_asan_no_sig_test
[ 82%] Built target workspace_test
[ 82%] Linking CXX executable ../bin/cuda_optional_test
[ 82%] Linking CXX executable ../bin/test_parallel
[ 82%] Linking CXX executable ../bin/generate_proposals_op_util_nms_test
[ 82%] Built target blob_test
[ 82%] Linking CXX executable ../bin/boolean_unmask_ops_test
[ 82%] Linking CXX executable ../bin/conv_transpose_op_mobile_test
[ 82%] Built target test_parallel
[ 82%] Built target fatal_signal_asan_no_sig_test
[ 82%] Built target int8_test
[ 82%] Built target cuda_optional_test
[ 82%] Built target generate_proposals_op_util_nms_test
[ 83%] Linking CXX executable ../bin/scalar_test
[ 83%] Linking CXX executable ../bin/ssa_test
[ 83%] Built target boolean_unmask_ops_test
[ 83%] Linking CXX executable ../bin/batch_matmul_op_test
[ 83%] Built target utility_ops_test
[ 83%] Linking CXX executable ../bin/operator_schema_test
[ 83%] Built target conv_transpose_op_mobile_test
[ 84%] Linking CXX executable ../bin/time_observer_test
[ 84%] Linking CXX executable ../bin/wrapdim_test
[ 84%] Linking CXX executable ../bin/timer_test
[ 84%] Linking CXX executable ../bin/inline_container_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_schema_test.dir/core/operator_schema_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_schema_test.dir/core/operator_schema_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 84%] Built target scalar_test
[ 84%] Built target wrapdim_test
[ 84%] Built target batch_matmul_op_test
[ 84%] Built target time_observer_test
[ 84%] Built target timer_test
[ 84%] Built target operator_schema_test
[ 84%] Linking CXX executable ../bin/common_test
[ 84%] Built target ssa_test
[ 84%] Linking CXX executable ../bin/TopoSortTest
[ 84%] Linking CXX executable ../bin/TarjansImplTest
[ 84%] Linking CXX executable ../bin/SubgraphMatcherTest
[ 84%] Built target inline_container_test
[ 84%] Linking CXX executable ../bin/cpuid_test
[ 84%] Linking CXX executable ../bin/NeuralNetTest
[ 84%] Linking CXX executable ../bin/simple_queue_test
[ 84%] Linking CXX executable ../bin/apply_test
[ 84%] Built target TarjansImplTest
[ 84%] Built target cpuid_test
[ 84%] Built target TopoSortTest
[ 84%] Built target common_test
[ 84%] Built target NeuralNetTest
[ 84%] Built target SubgraphMatcherTest
[ 84%] Built target simple_queue_test
[ 84%] Built target apply_test
[ 84%] Linking CXX executable ../bin/MatchTest
[ 84%] Linking CXX executable ../bin/stream_test
[ 84%] Linking CXX executable ../bin/GraphTest
[ 84%] Linking CXX executable ../bin/common_subexpression_elimination_test
[ 84%] Linking CXX executable ../bin/BinaryMatchImplTest
[ 84%] Linking CXX executable ../bin/AlgorithmsTest
[ 84%] Linking CXX executable ../bin/observer_test
[ 84%] Linking CXX executable ../bin/device_test
[ 84%] Built target BinaryMatchImplTest
[ 84%] Built target common_subexpression_elimination_test
[ 84%] Built target AlgorithmsTest
[ 84%] Built target GraphTest
[ 84%] Built target device_test
[ 84%] Built target observer_test
[ 84%] Built target MatchTest
[ 84%] Built target stream_test
[ 84%] Linking CXX executable ../bin/cast_test
[ 85%] Linking CXX executable ../bin/predictor_test
[ 85%] Linking CXX executable ../bin/proto_utils_test
[ 85%] Linking CXX executable ../bin/reshape_op_gpu_test
[ 85%] Linking CXX executable ../bin/event_gpu_test
[ 85%] Linking CXX executable ../bin/math_test
[ 85%] Linking CXX executable ../bin/transform_test
[ 85%] Linking CXX executable ../bin/verify_api_visibility
[ 85%] Built target verify_api_visibility
[ 85%] Built target proto_utils_test
[ 85%] Built target math_test
[ 85%] Built target transform_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 85%] Built target event_gpu_test
[ 85%] Built target reshape_op_gpu_test
[ 85%] Linking CXX executable ../bin/operator_test
[ 85%] Built target predictor_test
[ 85%] Linking CXX executable ../bin/fixed_divisor_test
[ 85%] Linking CXX executable ../bin/pattern_net_transform_test
[ 85%] Linking CXX executable ../bin/net_simple_refcount_test
[ 85%] Built target cast_test
[ 85%] Linking CXX executable ../bin/scalar_tensor_test
[ 86%] Linking CXX executable ../bin/atest
[ 86%] Linking CXX executable ../bin/module_test
[ 86%] Linking CXX executable ../bin/init_test
[ 86%] Built target net_simple_refcount_test
[ 86%] Built target fixed_divisor_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_test.dir/core/operator_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_test.dir/core/operator_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 86%] Built target pattern_net_transform_test
[ 86%] Built target scalar_tensor_test
[ 86%] Built target atest
[ 86%] Built target init_test
[ 86%] Built target module_test
[ 86%] Built target operator_test
Scanning dependencies of target cuda_half_test
[ 86%] Linking CXX executable ../bin/apply_utils_test
[ 86%] Linking CXX executable ../bin/generate_proposals_op_util_boxes_test
[ 86%] Linking CXX executable ../bin/event_test
[ 86%] Linking CXX executable ../bin/graph_test
[ 86%] Linking CXX executable ../bin/context_test
[ 86%] Linking CXX executable ../bin/basic
[ 87%] Linking CXX executable ../bin/cuda_half_test
[ 87%] Linking CXX executable ../bin/smart_tensor_printer_test
[ 87%] Built target event_test
[ 87%] Built target context_test
[ 87%] Built target basic
[ 87%] Built target apply_utils_test
[ 87%] Built target graph_test
[ 87%] Built target generate_proposals_op_util_boxes_test
[ 87%] Built target smart_tensor_printer_test
[ 87%] Built target cuda_half_test
[ 87%] Linking CXX executable ../bin/tbb_init_test
[ 87%] Linking CXX executable ../bin/undefined_tensor_test
[ 87%] Linking CXX executable ../bin/half_test
[ 87%] Linking CXX executable ../bin/native_test
[ 87%] Linking CXX executable ../bin/weakref_test
[ 87%] Linking CXX executable ../bin/math_gpu_test
[ 87%] Linking CXX executable ../bin/string_ops_test
[ 87%] Linking CXX executable ../bin/dlconvertor_test
[ 87%] Built target weakref_test
[ 87%] Built target undefined_tensor_test
[ 87%] Built target half_test
[ 87%] Built target native_test
[ 87%] Built target dlconvertor_test
[ 88%] Linking CXX executable ../bin/net_test
[ 88%] Built target tbb_init_test
[ 88%] Built target string_ops_test
[ 88%] Built target math_gpu_test
[ 88%] Linking CXX executable ../bin/stats_test
[ 88%] Linking CXX executable ../bin/elementwise_op_test
[ 88%] Linking CXX executable ../bin/text_file_reader_utils_test
Scanning dependencies of target cuda_packedtensoraccessor_test
[ 88%] Linking CXX executable ../bin/mobile_test
[ 88%] Linking CXX executable ../bin/net_dag_utils_test
[ 88%] Linking CXX executable ../bin/cuda_packedtensoraccessor_test
[ 88%] Linking CXX executable ../bin/generate_proposals_op_test
[ 88%] Built target stats_test
[ 88%] Built target text_file_reader_utils_test
[ 88%] Built target elementwise_op_test
[ 88%] Built target mobile_test
[ 88%] Built target net_dag_utils_test
[ 88%] Built target generate_proposals_op_test
[ 88%] Linking CXX executable ../bin/net_async_tracing_test
[ 88%] Linking CXX executable ../bin/parallel_net_test
[ 88%] Linking CXX executable ../bin/broadcast_test
[ 88%] Built target net_test
[ 88%] Built target cuda_packedtensoraccessor_test
[ 88%] Built target net_async_tracing_test
[ 88%] Built target broadcast_test
[ 88%] Built target parallel_net_test
[ 88%] Linking CXX shared library ../../lib/libcaffe2_detectron_ops_gpu.dylib
[ 88%] Linking CXX shared library ../../lib/libtorch.dylib
[ 89%] Built target caffe2_detectron_ops_gpu
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../../lib/libprotobuf.a(type.pb.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 94%] Built target torch
[ 94%] Linking CXX executable ../bin/test_jit
[ 95%] Linking CXX executable ../bin/test_api
[ 95%] Built target test_jit
[ 96%] Built target test_api
[ 96%] Linking CXX shared library ../../lib/libtorch_python.dylib
[100%] Built target torch_python
Install the project...
-- Install configuration: "Release"
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a(arenastring.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a(atomicops_internals_x86_msvc.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(arenastring.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(atomicops_internals_x86_msvc.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(gzip_stream.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(error_listener.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnx.a(defs.cc.o) has no symbols
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_DeviceGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_StreamGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_TensorTypeId_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_OpSchema_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_flags_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_InlineDeviceGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_InlineStreamGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_logging_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_registry_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_Array_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_Metaprogramming_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_TypeList_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_TypeTraits_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_intrusive_ptr_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_typeid_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_cuda_CUDATest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/basic (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/basic (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/atest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/atest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/half_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/half_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/broadcast_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/broadcast_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/wrapdim_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/wrapdim_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dlconvertor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dlconvertor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/native_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/native_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_tensor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_tensor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/test_parallel (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/test_parallel (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/undefined_tensor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/undefined_tensor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/verify_api_visibility (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/verify_api_visibility (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/tbb_init_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/tbb_init_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/weakref_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/weakref_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/graph_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/graph_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/init_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/init_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/module_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/module_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_async_tracing_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_async_tracing_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_dag_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_dag_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_simple_refcount_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_simple_refcount_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/observer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/observer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_schema_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_schema_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/parallel_net_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/parallel_net_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stats_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stats_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/timer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/timer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/transform_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/transform_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/workspace_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/workspace_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fixed_divisor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fixed_divisor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fatal_signal_asan_no_sig_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fatal_signal_asan_no_sig_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/simple_queue_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/simple_queue_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/proto_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/proto_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cpuid_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cpuid_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/smart_tensor_printer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/smart_tensor_printer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cast_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cast_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/predictor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/predictor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/AlgorithmsTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/AlgorithmsTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/BinaryMatchImplTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/BinaryMatchImplTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/GraphTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/GraphTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/MatchTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/MatchTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/NeuralNetTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/NeuralNetTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/SubgraphMatcherTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/SubgraphMatcherTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TarjansImplTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TarjansImplTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TopoSortTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TopoSortTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/inline_container_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/inline_container_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/time_observer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/time_observer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/ssa_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/ssa_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/boolean_unmask_ops_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/boolean_unmask_ops_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_transpose_op_mobile_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_transpose_op_mobile_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_boxes_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_boxes_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_nms_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_nms_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/string_ops_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/string_ops_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/text_file_reader_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/text_file_reader_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_roi_align_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_roi_align_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/backend_cutting_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/backend_cutting_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/converter_nomigraph_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/converter_nomigraph_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dead_code_elim_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dead_code_elim_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/device_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/device_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/distributed_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/distributed_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/mobile_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/mobile_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/nnpack_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/nnpack_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/depthwise3x3_conv_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/depthwise3x3_conv_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_subexpression_elimination_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_subexpression_elimination_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_to_nnpack_transform_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_to_nnpack_transform_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/pattern_net_transform_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/pattern_net_transform_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/integer_divider_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/integer_divider_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/integer_divider_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_rng_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_rng_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_rng_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stream_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stream_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stream_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_half_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_half_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_half_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_optional_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_optional_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_optional_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_packedtensoraccessor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_packedtensoraccessor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_packedtensoraccessor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin/torch_shm_manager (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_utils_cpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_utils_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_utils_hip_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
+ ls build.ninja
ls: build.ninja: No such file or directory
+ [[ ON == \O\N ]]
++ pwd
++ cd ..
++ pwd
+ echo 'Copying Caffe2 proto files from /Users/carlos/Downloads/pytorch/build/caffe2/proto to /Users/carlos/Downloads/pytorch/caffe2/proto'
Copying Caffe2 proto files from /Users/carlos/Downloads/pytorch/build/caffe2/proto to /Users/carlos/Downloads/pytorch/caffe2/proto
++ find caffe2/proto
+ echo 'All the files in caffe2/proto are caffe2/proto
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm.pb.cc
caffe2/proto/torch.pb.cc
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/Makefile
caffe2/proto/hsm.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/__init__.py
caffe2/proto/CTestTestfile.cmake
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/torch.pb.h
caffe2/proto/prof_dag.pb.cc
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/caffe2.pb.h
caffe2/proto/hsm_pb2.py
caffe2/proto/predictor_consts.pb.h
caffe2/proto/prof_dag.pb.h'
All the files in caffe2/proto are caffe2/proto
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm.pb.cc
caffe2/proto/torch.pb.cc
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/Makefile
caffe2/proto/hsm.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/__init__.py
caffe2/proto/CTestTestfile.cmake
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/torch.pb.h
caffe2/proto/prof_dag.pb.cc
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/caffe2.pb.h
caffe2/proto/hsm_pb2.py
caffe2/proto/predictor_consts.pb.h
caffe2/proto/prof_dag.pb.h
++ pwd
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/__init__.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/caffe2_legacy_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/caffe2_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/hsm_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/metanet_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/predictor_consts_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/prof_dag_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/torch_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
++ uname
+ [[ Darwin == \D\a\r\w\i\n ]]
+ echo 'Updating all install_names in /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib'
Updating all install_names in /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib
+ pushd /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib
~/Downloads/pytorch/torch/lib/tmp_install/lib ~/Downloads/pytorch/build
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib
+ install_name_tool -id @rpath/libc10.dylib libc10.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib
+ install_name_tool -id @rpath/libc10_cuda.dylib libc10_cuda.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib
+ install_name_tool -id @rpath/libcaffe2.dylib libcaffe2.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib
+ install_name_tool -id @rpath/libcaffe2_detectron_ops_gpu.dylib libcaffe2_detectron_ops_gpu.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib
+ install_name_tool -id @rpath/libcaffe2_gpu.dylib libcaffe2_gpu.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib
+ install_name_tool -id @rpath/libcaffe2_module_test_dynamic.dylib libcaffe2_module_test_dynamic.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib
+ install_name_tool -id @rpath/libcaffe2_observers.dylib libcaffe2_observers.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libiomp5.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libiomp5.dylib
+ install_name_tool -id @rpath/libiomp5.dylib libiomp5.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib
+ install_name_tool -id @rpath/libmkldnn.0.14.0.dylib libmkldnn.0.14.0.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.dylib
+ install_name_tool -id @rpath/libmkldnn.0.dylib libmkldnn.0.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.dylib
+ install_name_tool -id @rpath/libmkldnn.dylib libmkldnn.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmklml.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmklml.dylib
+ install_name_tool -id @rpath/libmklml.dylib libmklml.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi.dylib
+ install_name_tool -id @rpath/libonnxifi.dylib libonnxifi.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_dummy.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_dummy.dylib
+ install_name_tool -id @rpath/libonnxifi_dummy.dylib libonnxifi_dummy.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib
+ install_name_tool -id @rpath/libshm.dylib libshm.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib
+ install_name_tool -id @rpath/libtorch.1.dylib libtorch.1.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.dylib
+ install_name_tool -id @rpath/libtorch.dylib libtorch.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib
+ install_name_tool -id @rpath/libtorch_python.dylib libtorch_python.dylib
+ popd
~/Downloads/pytorch/build
+ pushd /Users/carlos/Downloads/pytorch/torch/lib
~/Downloads/pytorch/torch/lib ~/Downloads/pytorch/build
++ date
+ echo 'tools/build_pytorch_libs.sh succeeded at Sat Dec 1 17:57:01 EST 2018'
tools/build_pytorch_libs.sh succeeded at Sat Dec 1 17:57:01 EST 2018
+ echo 'removing /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/cmake and /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python'
removing /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/cmake and /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python
+ rm -rf /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/cmake
+ rm -rf /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python
++ pwd
+ echo 'Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib to /Users/carlos/Downloads/pytorch/torch/lib'
Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib to /Users/carlos/Downloads/pytorch/torch/lib
+ rsync -lptgoD -r /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libTHD.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libclog.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcpuinfo.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libiomp5.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmklml.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libnnpack.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnx.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnx_proto.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_dummy.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_loader.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotoc.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libpthreadpool.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libqnnpack.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libsleef.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/pkgconfig /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6 .
+ '[' -d /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib64/ ']'
++ cd ../..
++ pwd
++ pwd
+ echo 'Copying /Users/carlos/Downloads/pytorch/aten/src/generic/THNN.h to /Users/carlos/Downloads/pytorch/torch/lib'
Copying /Users/carlos/Downloads/pytorch/aten/src/generic/THNN.h to /Users/carlos/Downloads/pytorch/torch/lib
+ rsync -lptgoD ../../aten/src/THNN/generic/THNN.h .
+ rsync -lptgoD ../../aten/src/THCUNN/generic/THCUNN.h .
++ pwd
+ echo 'Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/include to /Users/carlos/Downloads/pytorch/torch/lib'
Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/include to /Users/carlos/Downloads/pytorch/torch/lib
+ rsync -lptgoD -r /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/include .
+ '[' -d /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin/ ']'
+ rsync -lptgoD -r /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin//protoc /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin//torch_shm_manager .
+ popd
~/Downloads/pytorch/build
copying torch/lib/tmp_install/share/cmake/ONNX/ONNXTargets-release.cmake -> torch/share/cmake/ONNX
copying torch/lib/tmp_install/share/cmake/Caffe2/Caffe2Targets-release.cmake -> torch/share/cmake/Caffe2
running build
running build_py
setup.py::build_py::run()
running create_version_file
-- Building version 1.0.0a0+4c11dee
copying torch/version.py -> build/lib.macosx-10.7-x86_64-3.6/torch
copying caffe2/proto/prof_dag_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/metanet_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/__init__.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/torch_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/caffe2_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/predictor_consts_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/caffe2_legacy_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/hsm_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying torch/lib/libtorch_python.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmkldnn.0.14.0.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libtorch.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_gpu.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_observers.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmkldnn.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libiomp5.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_module_test_dynamic.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_detectron_ops_gpu.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libonnxifi.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmkldnn.0.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libtorch.1.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libc10.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libshm.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libc10_cuda.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmklml.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libonnxifi_dummy.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-10.7-x86_64-3.6/torch/share/cmake/Caffe2
running build_ext
-- Building with NumPy bindings
-- Detected cuDNN at /usr/local/cuda/lib/libcudnn.7.dylib, /usr/local/cuda/include
-- Not using MIOpen
-- Detected CUDA at /usr/local/cuda
-- Using MKLDNN
-- Not using NCCL
-- Building with THD distributed package
-- Building without c10d distributed package
Skipped writing torch/csrc/nn/THNN.cpp
Skipped writing torch/csrc/nn/THCUNN.cpp
WARNING: derivative ignored for _indices
WARNING: derivative ignored for _values
WARNING: derivative ignored for indices
Skipped writing torch/csrc/autograd/generated/VariableType.h
WARNING: derivative ignored for _indices
WARNING: derivative ignored for indices
Skipped writing torch/csrc/autograd/generated/VariableType_0.cpp
WARNING: derivative ignored for _values
Skipped writing torch/csrc/autograd/generated/VariableType_1.cpp
Skipped writing torch/csrc/autograd/generated/VariableType_2.cpp
Skipped writing torch/csrc/autograd/generated/VariableType_3.cpp
Skipped writing torch/csrc/autograd/generated/VariableType_4.cpp
WARNING: derivative ignored for _indices
WARNING: derivative ignored for _values
WARNING: derivative ignored for indices
Skipped writing torch/csrc/autograd/generated/VariableTypeEverything.cpp
Skipped writing torch/csrc/autograd/generated/Functions.h
Skipped writing torch/csrc/autograd/generated/Functions.cpp
Skipped writing torch/csrc/autograd/generated/python_functions.h
Skipped writing torch/csrc/autograd/generated/python_functions.cpp
Skipped writing torch/csrc/autograd/generated/python_variable_methods.cpp
Skipped writing torch/csrc/autograd/generated/python_variable_methods_dispatch.h
Skipped writing torch/csrc/autograd/generated/python_torch_functions.cpp
Skipped writing torch/csrc/autograd/generated/python_torch_functions_dispatch.h
Skipped writing torch/csrc/autograd/generated/python_nn_functions.cpp
Skipped writing torch/csrc/autograd/generated/python_nn_functions.h
Skipped writing torch/csrc/autograd/generated/python_nn_functions_dispatch.h
Skipped writing torch/csrc/autograd/generated/variable_factories.h
Skipped writing torch/csrc/jit/generated/register_aten_ops_0.cpp
Skipped writing torch/csrc/jit/generated/register_aten_ops_1.cpp
Skipped writing torch/csrc/jit/generated/register_aten_ops_2.cpp
Skipped writing torch/csrc/jit/generated/aten_interned_strings.h
Copying extension caffe2.python.caffe2_pybind11_state
Copying caffe2.python.caffe2_pybind11_state from /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so to /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so
copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so -> /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python
Copying extension caffe2.python.caffe2_pybind11_state_gpu
Copying caffe2.python.caffe2_pybind11_state_gpu from /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so to /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so
copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so -> /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python
running install_lib
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/prof_dag_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/metanet_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/__init__.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/torch_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/caffe2_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/predictor_consts_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/caffe2_legacy_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/hsm_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so -> /anaconda3/lib/python3.6/site-packages/caffe2/python
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so -> /anaconda3/lib/python3.6/site-packages/caffe2/python
copying build/lib.macosx-10.7-x86_64-3.6/torch/version.py -> /anaconda3/lib/python3.6/site-packages/torch
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libtorch_python.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmkldnn.0.14.0.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libtorch.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_gpu.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_observers.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmkldnn.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libiomp5.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_module_test_dynamic.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_detectron_ops_gpu.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libonnxifi.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmkldnn.0.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libtorch.1.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libc10.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libshm.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libc10_cuda.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmklml.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libonnxifi_dummy.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> /anaconda3/lib/python3.6/site-packages/torch/share/cmake/Caffe2
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/prof_dag_pb2.py to prof_dag_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/metanet_pb2.py to metanet_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/__init__.py to __init__.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/torch_pb2.py to torch_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/caffe2_pb2.py to caffe2_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/predictor_consts_pb2.py to predictor_consts_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/caffe2_legacy_pb2.py to caffe2_legacy_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/hsm_pb2.py to hsm_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/torch/version.py to version.cpython-36.pyc
running install_egg_info
running egg_info
writing torch.egg-info/PKG-INFO
writing dependency_links to torch.egg-info/dependency_links.txt
writing entry points to torch.egg-info/entry_points.txt
writing top-level names to torch.egg-info/top_level.txt
reading manifest file 'torch.egg-info/SOURCES.txt'
writing manifest file 'torch.egg-info/SOURCES.txt'
removing '/anaconda3/lib/python3.6/site-packages/torch-1.0.0a0+4c11dee-py3.6.egg-info' (and everything under it)
Copying torch.egg-info to /anaconda3/lib/python3.6/site-packages/torch-1.0.0a0+4c11dee-py3.6.egg-info
running install_scripts
Installing convert-caffe2-to-onnx script to /anaconda3/bin
Installing convert-onnx-to-caffe2 script to /anaconda3/bin"><pre class="notranslate"><code class="notranslate">$ MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install
Building wheel torch-1.0.0a0+4c11dee
running install
setup.py::run()
running build_deps
setup.py::build_deps::run()
+ SYNC_COMMAND=cp
++ command -v rsync
+ '[' -x /usr/bin/rsync ']'
+ SYNC_COMMAND='rsync -lptgoD'
+ CMAKE_COMMAND=cmake
++ command -v cmake3
+ [[ -x '' ]]
+ USE_CUDA=0
+ USE_FBGEMM=0
+ USE_ROCM=0
+ USE_NNPACK=0
+ USE_MKLDNN=0
+ USE_QNNPACK=0
+ USE_GLOO_IBVERBS=0
+ CAFFE2_STATIC_LINK_CUDA=0
+ RERUN_CMAKE=1
+ [[ 5 -gt 0 ]]
+ case "$1" in
+ USE_CUDA=1
+ shift
+ [[ 4 -gt 0 ]]
+ case "$1" in
+ USE_NNPACK=1
+ shift
+ [[ 3 -gt 0 ]]
+ case "$1" in
+ USE_MKLDNN=1
+ shift
+ [[ 2 -gt 0 ]]
+ case "$1" in
+ USE_QNNPACK=1
+ shift
+ [[ 1 -gt 0 ]]
+ case "$1" in
+ break
+ CMAKE_INSTALL='make install'
+ BUILD_SHARED_LIBS=ON
+ USER_CFLAGS=
+ USER_LDFLAGS=
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
++ uname
+ '[' Darwin == Darwin ']'
+ '[' -d /usr/local/opt/ccache/libexec ']'
+++ dirname ../tools/build_pytorch_libs.sh
++ cd ../tools/..
+++ pwd
++ printf '%q\n' /Users/carlos/Downloads/pytorch
+ BASE_DIR=/Users/carlos/Downloads/pytorch
+ TORCH_LIB_DIR=/Users/carlos/Downloads/pytorch/torch/lib
+ INSTALL_DIR=/Users/carlos/Downloads/pytorch/torch/lib/tmp_install
+ THIRD_PARTY_DIR=/Users/carlos/Downloads/pytorch/third_party
+ C_FLAGS=
+ C_FLAGS=' -DOMPI_SKIP_MPICXX=1'
+ LDFLAGS=
+ LD_POSTFIX=.so
++ uname
+ [[ Darwin == \D\a\r\w\i\n ]]
+ LDFLAGS=' -Wl,-rpath,@loader_path'
+ LD_POSTFIX=.dylib
+ CPP_FLAGS=' -std=c++11 '
+ THD_FLAGS=
+ [[ 0 -eq 1 ]]
+ CUDA_NVCC_FLAGS=' -DOMPI_SKIP_MPICXX=1'
+ [[ -z '' ]]
+ CUDA_DEVICE_DEBUG=0
+ '[' -z '' ']'
++ getconf _NPROCESSORS_ONLN
+ MAX_JOBS=8
+ BUILD_TYPE=Release
+ [[ -n '' ]]
+ [[ -n '' ]]
+ echo 'Building in Release mode'
Building in Release mode
+ mkdir -p /Users/carlos/Downloads/pytorch/torch/lib/tmp_install
+ for arg in '"$@"'
+ [[ caffe2 == \c\a\f\f\e\2 ]]
+ build_caffe2
+ [[ -z '' ]]
+ EXTRA_CAFFE2_CMAKE_FLAGS=()
+ [[ -n '' ]]
+ [[ -n /anaconda3/lib/python3.6/site-packages ]]
+ EXTRA_CAFFE2_CMAKE_FLAGS+=("-DCMAKE_PREFIX_PATH=$CMAKE_PREFIX_PATH")
+ [[ 1 -eq 1 ]]
+ cmake /Users/carlos/Downloads/pytorch -DPYTHON_EXECUTABLE=/anaconda3/bin/python -DPYTHON_LIBRARY=/anaconda3/lib/libpython3.6m.dylib -DPYTHON_INCLUDE_DIR=/anaconda3/include/python3.6m -DBUILDING_WITH_TORCH_LIBS=ON -DTORCH_BUILD_VERSION=1.0.0a0+4c11dee -DCMAKE_BUILD_TYPE=Release -DBUILD_TORCH=ON -DBUILD_PYTHON=ON -DBUILD_SHARED_LIBS=ON -DBUILD_BINARY=OFF -DBUILD_TEST=ON -DINSTALL_TEST=ON -DBUILD_CAFFE2_OPS=ON -DONNX_NAMESPACE=onnx_torch -DUSE_CUDA=1 -DUSE_DISTRIBUTED=ON -DUSE_FBGEMM=0 -DUSE_NUMPY= -DNUMPY_INCLUDE_DIR=/anaconda3/lib/python3.6/site-packages/numpy/core/include -DUSE_SYSTEM_NCCL=OFF -DNCCL_INCLUDE_DIR= -DNCCL_ROOT_DIR= -DNCCL_SYSTEM_LIB= -DCAFFE2_STATIC_LINK_CUDA=0 -DUSE_ROCM=0 -DUSE_NNPACK=1 -DUSE_LEVELDB=OFF -DUSE_LMDB=OFF -DUSE_OPENCV=OFF -DUSE_QNNPACK=1 -DUSE_FFMPEG=OFF -DUSE_GLOG=OFF -DUSE_GFLAGS=OFF -DUSE_SYSTEM_EIGEN_INSTALL=OFF -DCUDNN_INCLUDE_DIR=/usr/local/cuda/include -DCUDNN_LIB_DIR=/usr/local/cuda/lib -DCUDNN_LIBRARY=/usr/local/cuda/lib/libcudnn.7.dylib -DUSE_MKLDNN=1 -DNCCL_EXTERNAL=1 -DCMAKE_INSTALL_PREFIX=/Users/carlos/Downloads/pytorch/torch/lib/tmp_install -DCMAKE_C_FLAGS= -DCMAKE_CXX_FLAGS= '-DCMAKE_EXE_LINKER_FLAGS= -Wl,-rpath,@loader_path ' '-DCMAKE_SHARED_LINKER_FLAGS= -Wl,-rpath,@loader_path ' -DTHD_SO_VERSION=1 -DCMAKE_PREFIX_PATH=/anaconda3/lib/python3.6/site-packages
-- CLANG_VERSION_STRING: 9.1
-- std::exception_ptr is supported.
-- NUMA is disabled
-- Turning off deprecation warning due to glog.
-- Current compiler supports avx2 extension. Will build perfkernels.
-- Current compiler supports avx512f extension. Will build fbgemm.
-- Building using own protobuf under third_party per request.
-- Use custom protobuf build.
-- Caffe2 protobuf include directory: $<BUILD_INTERFACE:/Users/carlos/Downloads/pytorch/third_party/protobuf/src>$<INSTALL_INTERFACE:include>
-- The BLAS backend of choice:MKL
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl - guide - pthread - m]
-- Library mkl: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl - guide - pthread - m]
-- Library mkl: not found
CMake Warning at cmake/Dependencies.cmake:77 (message):
MKL could not be found. Defaulting to Eigen
Call Stack (most recent call first):
CMakeLists.txt:201 (include)
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_sequential - mkl_core - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - guide - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel_lp64: not found
-- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m]
-- Library mkl_intel: not found
-- Checking for [mkl - guide - pthread - m]
-- Library mkl: not found
-- MKL library not found
-- Checking for [Accelerate]
-- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Accelerate.framework
-- This BLAS uses the F2C return conventions
-- Found a library with BLAS API (accelerate).
-- Brace yourself, we are building NNPACK
-- Found PythonInterp: /anaconda3/bin/python (found version "3.6.6")
-- Failed to find LLVM FileCheck
-- git Version: v1.4.0-505be96a
-- Version: 1.4.0
-- Performing Test HAVE_THREAD_SAFETY_ATTRIBUTES -- failed to compile
-- Performing Test HAVE_STD_REGEX -- success
-- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile
-- Performing Test HAVE_POSIX_REGEX -- success
-- Performing Test HAVE_STEADY_CLOCK -- success
-- Using third party subdirectory Eigen.
Python 3.6.6 :: Anaconda custom (64-bit)
-- Found PythonInterp: /anaconda3/bin/python (found suitable version "3.6.6", minimum required is "2.7")
-- Could NOT find pybind11 (missing: pybind11_DIR)
-- Could NOT find pybind11 (missing: pybind11_INCLUDE_DIR)
-- Using third_party/pybind11.
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "7.0")
-- Caffe2: CUDA detected: 10.0
-- Caffe2: CUDA nvcc is: /usr/local/cuda/bin/nvcc
-- Caffe2: CUDA toolkit directory: /usr/local/cuda
-- Caffe2: Header version is: 10.0
-- Found cuDNN: v7.4.1 (include: /usr/local/cuda/include, library: /usr/local/cuda/lib/libcudnn.7.dylib)
-- Automatic GPU detection failed. Building for common architectures.
-- Autodetected CUDA architecture(s): 3.0;3.5;5.0;5.2;6.0;6.1;7.0;7.0+PTX
-- Added CUDA NVCC flags for: -gencode;arch=compute_30,code=sm_30;-gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-gencode;arch=compute_70,code=sm_70;-gencode;arch=compute_70,code=compute_70
-- Could NOT find CUB (missing: CUB_INCLUDE_DIR)
--
-- ******** Summary ********
-- CMake version : 3.13.0
-- CMake command : /anaconda3/lib/python3.6/site-packages/cmake/data/CMake.app/Contents/bin/cmake
-- System : Darwin
-- C++ compiler : /Library/Developer/CommandLineTools/usr/bin/clang++
-- C++ compiler version : 9.1.0.9020039
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -Wno-deprecated-declarations
-- Build type : Release
-- Compile definitions :
-- CMAKE_PREFIX_PATH : /anaconda3/lib/python3.6/site-packages
-- CMAKE_INSTALL_PREFIX : /Users/carlos/Downloads/pytorch/torch/lib/tmp_install
-- CMAKE_MODULE_PATH : /Users/carlos/Downloads/pytorch/cmake/Modules;/Users/carlos/Downloads/pytorch/cmake/public/../Modules_CUDA_fix
--
-- ONNX version : 1.3.0
-- ONNX NAMESPACE : onnx_torch
-- ONNX_BUILD_TESTS : OFF
-- ONNX_BUILD_BENCHMARKS : OFF
-- ONNX_USE_LITE_PROTO : OFF
-- ONNXIFI_DUMMY_BACKEND : OFF
--
-- Protobuf compiler :
-- Protobuf includes :
-- Protobuf libraries :
-- BUILD_ONNX_PYTHON : OFF
-- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor
-- Removing -DNDEBUG from compile flags
-- MAGMA not found. Compiling without MAGMA support
-- Could not find hardware support for NEON on this machine.
-- No OMAP3 processor on this machine.
-- No OMAP4 processor on this machine.
-- AVX compiler support found
-- AVX2 compiler support found
-- Atomics: using GCC intrinsics
-- Found a library with LAPACK API. (accelerate)
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "5.5")
disabling ROCM because NOT USE_ROCM is set
-- MIOpen not found. Compiling without MIOpen support
CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:21 (cmake_policy):
The OLD behavior for policy CMP0048 will be removed from a future version
of CMake.
The cmake-policies(7) manual explains that the OLD behaviors of all
policies are deprecated and that a policy should be set to OLD only under
specific short-term circumstances. Projects should be ported to the NEW
behavior and not rely on setting a policy to OLD.
CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:22 (cmake_policy):
The OLD behavior for policy CMP0054 will be removed from a future version
of CMake.
The cmake-policies(7) manual explains that the OLD behaviors of all
policies are deprecated and that a policy should be set to OLD only under
specific short-term circumstances. Projects should be ported to the NEW
behavior and not rely on setting a policy to OLD.
-- Detecting Intel(R) MKL: trying mklml_intel
-- Intel(R) MKL: include /Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn/external/mklml_mac_2018.0.3.20180406/include
-- Intel(R) MKL: lib /Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn/external/mklml_mac_2018.0.3.20180406/lib/libmklml.dylib
-- Intel(R) MKL: OpenMP lib /Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn/external/mklml_mac_2018.0.3.20180406/lib/libiomp5.dylib
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- VTune profiling environment is unset
CMake Warning (dev) at cmake/public/mkldnn.cmake:1 (find_package):
Policy CMP0074 is not set: find_package uses <PackageName>_ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.
CMake variable MKLDNN_ROOT is set to:
/Users/carlos/Downloads/pytorch/third_party/ideep/mkl-dnn
For compatibility, CMake is ignoring the variable.
Call Stack (most recent call first):
cmake/Dependencies.cmake:1308 (INCLUDE)
CMakeLists.txt:201 (include)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Using python found in /anaconda3/bin/python
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Configuring build for SLEEF-v3.2
Target system: Darwin-18.2.0
Target processor: x86_64
Host system: Darwin-18.2.0
Host processor: x86_64
Detected C compiler: AppleClang @ /Library/Developer/CommandLineTools/usr/bin/clang
-- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef
-- Building shared libs : OFF
-- MPFR : /usr/local/lib/libmpfr.dylib
-- MPFR header file in /usr/local/include
-- GMP : /usr/local/lib/libgmp.dylib
-- RUNNING_ON_TRAVIS : 0
-- COMPILER_SUPPORTS_OPENMP :
-- Using python found in /anaconda3/bin/python
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS)
-- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS)
-- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND)
-- Found CUDA: /usr/local/cuda (found suitable version "10.0", minimum required is "7.5")
-- NCCL operators skipped due to no CUDA support
-- Including IDEEP operators
-- Excluding image processing operators due to no opencv
-- Excluding video processing operators due to no opencv
-- MPI operators skipped due to no MPI support
-- Include Observer library
-- Using lib/python3.6/site-packages as python relative installation path
-- Automatically generating missing __init__.py files.
-- A previous caffe2 cmake run already created the __init__.py files.
CMake Warning at CMakeLists.txt:389 (message):
Generated cmake files are only fully tested if one builds with system glog,
gflags, and protobuf. Other settings may generate files that are not well
tested.
--
-- ******** Summary ********
-- General:
-- CMake version : 3.13.0
-- CMake command : /anaconda3/lib/python3.6/site-packages/cmake/data/CMake.app/Contents/bin/cmake
-- System : Darwin
-- C++ compiler : /Library/Developer/CommandLineTools/usr/bin/clang++
-- C++ compiler version : 9.1.0.9020039
-- BLAS : MKL
-- CXX flags : -Wno-deprecated -fvisibility-inlines-hidden -Wno-deprecated-declarations -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -Wno-invalid-partial-specialization -Wno-typedef-redefinition -Wno-unknown-warning-option -Wno-unused-private-field -Wno-inconsistent-missing-override -Wno-aligned-allocation-unavailable -Wno-c++14-extensions -Wno-constexpr-not-const -Wno-missing-braces -Qunused-arguments -faligned-new -Wno-unused-private-field -Wno-missing-braces -Wno-c++14-extensions -Wno-constexpr-not-const
-- Build type : Release
-- Compile definitions : ONNX_NAMESPACE=onnx_torch;USE_GCC_ATOMICS=1;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1
-- CMAKE_PREFIX_PATH : /anaconda3/lib/python3.6/site-packages
-- CMAKE_INSTALL_PREFIX : /Users/carlos/Downloads/pytorch/torch/lib/tmp_install
--
-- TORCH_VERSION : 1.0.0
-- CAFFE2_VERSION : 1.0.0
-- BUILD_ATEN_MOBILE : OFF
-- BUILD_ATEN_ONLY : OFF
-- BUILD_BINARY : OFF
-- BUILD_CUSTOM_PROTOBUF : ON
-- Link local protobuf : ON
-- BUILD_DOCS : OFF
-- BUILD_PYTHON : ON
-- Python version : 3.6.6
-- Python executable : /anaconda3/bin/python
-- Pythonlibs version : 3.6.6
-- Python library : /anaconda3/lib/libpython3.6m.dylib
-- Python includes : /anaconda3/include/python3.6m
-- Python site-packages: lib/python3.6/site-packages
-- BUILD_CAFFE2_OPS : ON
-- BUILD_SHARED_LIBS : ON
-- BUILD_TEST : ON
-- USE_ASAN : OFF
-- USE_CUDA : 1
-- CUDA static link : 0
-- USE_CUDNN : ON
-- CUDA version : 10.0
-- cuDNN version : 7.4.1
-- CUDA root directory : /usr/local/cuda
-- CUDA library : /usr/local/cuda/lib/libcuda.dylib
-- cudart library : /usr/local/cuda/lib/libcudart_static.a;-Wl,-rpath,/usr/local/cuda/lib
-- cublas library : /usr/local/cuda/lib/libcublas.dylib
-- cufft library : /usr/local/cuda/lib/libcufft.dylib
-- curand library : /usr/local/cuda/lib/libcurand.dylib
-- cuDNN library : /usr/local/cuda/lib/libcudnn.7.dylib
-- nvrtc : /usr/local/cuda/lib/libnvrtc.dylib
-- CUDA include path : /usr/local/cuda/include
-- NVCC executable : /usr/local/cuda/bin/nvcc
-- CUDA host compiler : /Library/Developer/CommandLineTools/usr/bin/clang
-- USE_TENSORRT : OFF
-- USE_ROCM : 0
-- USE_EIGEN_FOR_BLAS : ON
-- USE_FBGEMM : 0
-- USE_FFMPEG : OFF
-- USE_GFLAGS : OFF
-- USE_GLOG : OFF
-- USE_LEVELDB : OFF
-- USE_LITE_PROTO : OFF
-- USE_LMDB : OFF
-- USE_METAL : OFF
-- USE_MKL : OFF
-- USE_MKLDNN : ON
-- USE_MOBILE_OPENGL : OFF
-- USE_NCCL : OFF
-- USE_NNPACK : 1
-- USE_NUMPY : ON
-- USE_OBSERVERS : ON
-- USE_OPENCL : OFF
-- USE_OPENCV : OFF
-- USE_OPENMP : OFF
-- USE_PROF : OFF
-- USE_QNNPACK : 1
-- USE_REDIS : OFF
-- USE_ROCKSDB : OFF
-- USE_ZMQ : OFF
-- USE_DISTRIBUTED : ON
-- USE_MPI : OFF
-- USE_GLOO : OFF
-- USE_GLOO_IBVERBS : OFF
-- Public Dependencies : Threads::Threads;caffe2::mkldnn
-- Private Dependencies : qnnpack;nnpack;cpuinfo;fp16;aten_op_header_gen;onnxifi_loader
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/carlos/Downloads/pytorch/build
+ make install -j8
[ 0%] Built target onnxifi_loader
[ 0%] Built target clog
[ 0%] Built target js_embed
[ 0%] Built target pthreadpool
[ 0%] Built target gtest
[ 1%] Built target benchmark
[ 2%] Built target libprotobuf-lite
[ 3%] Built target onnxifi_dummy
[ 3%] Built target ATEN_CPU_FILES_GEN_TARGET
[ 3%] Built target ATEN_CUDA_FILES_GEN_TARGET
[ 5%] Built target c10
[ 5%] Built target common
[ 5%] Built target mkrename
[ 5%] Built target mkdisp
[ 5%] Built target mkalias
[ 9%] Built target mkldnn
[ 10%] Built target mkmasked_gnuabi
[ 10%] Built target mkrename_gnuabi
[ 14%] Built target libprotobuf
[ 14%] Built target arraymap
[ 14%] Built target c10_utils_hip
[ 14%] Built target c10_utils_gpu
[ 14%] Built target torch_shm_manager
[ 14%] Built target c10_utils_cpu
[ 14%] Built target cpuinfo
[ 14%] Built target nnpack_reference_layers
[ 14%] Built target gtest_main
[ 14%] Built target onnxifi_wrapper
[ 14%] Built target __aten_op_header_gen
[ 15%] Built target headers
[ 15%] Built target benchmark_main
[ 15%] Built target renamedsp256.h_generated
[ 15%] Built target c10_cuda
[ 15%] Built target dispavx.c_generated
[ 15%] Built target renameAVX.h_generated
[ 15%] Built target renameSSE2.h_generated
[ 15%] Built target renameSSE4.h_generated
[ 15%] Built target renameFMA4.h_generated
[ 15%] Built target renameAVX2128.h_generated
[ 15%] Built target renameAVX2.h_generated
[ 15%] Built target dispsse.c_generated
[ 15%] Built target renamedsp128.h_generated
[ 15%] Built target renameAVX512F.h_generated
[ 15%] Generating alias_avx512f.h
[ 15%] Built target c10_utils_gpu_test
[ 15%] Built target c10_utils_hip_test
[ 15%] Built target c10_utils_cpu_test
[ 17%] Built target nnpack
[ 17%] Built target qnnpack
[ 17%] Built target c10_typeid_test
[ 17%] Built target c10_intrusive_ptr_test
[ 17%] Built target alias_avx512f.h_generated
[ 17%] Built target c10_TypeTraits_test
[ 18%] Built target c10_registry_test
[ 18%] Built target c10_TypeList_test
[ 18%] Built target c10_InlineStreamGuard_test
[ 18%] Built target c10_logging_test
[ 18%] Built target c10_Metaprogramming_test
[ 18%] Built target c10_InlineDeviceGuard_test
[ 18%] Built target c10_Array_test
[ 18%] Built target c10_flags_test
[ 19%] Built target c10_OpSchema_test
[ 19%] Built target c10_TensorTypeId_test
[ 19%] Built target c10_StreamGuard_test
[ 19%] Built target c10_DeviceGuard_test
[ 19%] Built target dispavx_obj
[ 19%] Built target c10_cuda_CUDATest
[ 19%] Built target sleefsse2
[ 20%] Built target sleeffma4
[ 20%] Built target sleefavx
[ 20%] Built target sleefsse4
[ 20%] Built target sleefavx2128
[ 20%] Built target sleefavx2
[ 21%] Built target dispsse_obj
[ 21%] Built target sleefavx512f
[ 26%] Built target libprotoc
[ 26%] Built target sleef
[ 26%] Built target protoc
[ 27%] Built target gen_onnx_proto
[ 27%] Built target Caffe2_PROTO
[ 27%] Built target onnx_proto
[ 27%] Built target caffe2_protos
[ 28%] Built target Caffe2_perfkernels_avx
[ 28%] Built target Caffe2_perfkernels_avx2
[ 30%] Built target onnx
[ 59%] Built target caffe2
[ 59%] Built target shm
[ 59%] Built target caffe2_module_test_dynamic
[ 59%] Built target caffe2_observers
[ 59%] Built target caffe2_pybind11_state
[ 60%] Built target THD
[ 60%] Linking CXX shared library ../lib/libcaffe2_gpu.dylib
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/caffe2_gpu.dir/operators/rnn/recurrent_op_cudnn.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 60%] Built target python_copy_files
[ 80%] Built target caffe2_gpu
[ 80%] Linking CXX executable ../bin/batch_matmul_op_gpu_test
[ 80%] Linking CXX executable ../bin/operator_fallback_gpu_test
[ 80%] Linking CXX executable ../bin/operator_gpu_test
[ 80%] Linking CXX executable ../bin/conv_op_cache_cudnn_test
[ 80%] Linking CXX executable ../bin/utility_ops_gpu_test
[ 80%] Linking CXX executable ../bin/roi_align_op_gpu_test
[ 80%] Linking CXX executable ../bin/elementwise_op_gpu_test
[ 81%] Linking CXX shared module python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so
[ 81%] Built target conv_op_cache_cudnn_test
[ 81%] Built target operator_gpu_test
[ 81%] Built target batch_matmul_op_gpu_test
[ 81%] Built target elementwise_op_gpu_test
[ 81%] Built target utility_ops_gpu_test
[ 81%] Built target operator_fallback_gpu_test
[ 81%] Built target roi_align_op_gpu_test
[ 81%] Built target caffe2_pybind11_state_gpu
[ 81%] Linking CXX executable ../bin/net_gpu_test
[ 81%] Linking CXX executable ../bin/context_gpu_test
[ 81%] Linking CXX executable ../bin/blob_gpu_test
[ 81%] Linking CXX executable ../bin/dead_code_elim_test
[ 81%] Linking CXX executable ../bin/cudnn_test
[ 81%] Linking CXX executable ../bin/conv_to_nnpack_transform_test
[ 81%] Linking CXX executable ../bin/cuda_rng_test
[ 81%] Linking CXX executable ../bin/depthwise3x3_conv_op_test
[ 81%] Built target conv_to_nnpack_transform_test
[ 81%] Built target dead_code_elim_test
[ 81%] Built target cudnn_test
[ 81%] Built target cuda_rng_test
[ 81%] Built target context_gpu_test
[ 81%] Built target depthwise3x3_conv_op_test
[ 81%] Linking CXX executable ../bin/nnpack_test
[ 81%] Linking CXX executable ../bin/distributed_test
[ 81%] Linking CXX executable ../bin/converter_nomigraph_test
[ 81%] Built target net_gpu_test
[ 81%] Linking CXX executable ../bin/backend_cutting_test
[ 81%] Linking CXX executable ../bin/blob_test
[ 81%] Linking CXX executable ../bin/integer_divider_test
[ 81%] Built target blob_gpu_test
[ 81%] Linking CXX executable ../bin/int8_roi_align_op_test
[ 81%] Linking CXX executable ../bin/workspace_test
[ 82%] Built target distributed_test
[ 82%] Built target converter_nomigraph_test
[ 82%] Built target backend_cutting_test
[ 82%] Built target nnpack_test
[ 82%] Built target integer_divider_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/blob_test.dir/core/blob_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 82%] Built target int8_roi_align_op_test
Scanning dependencies of target cuda_optional_test
[ 82%] Linking CXX executable ../bin/utility_ops_test
[ 82%] Linking CXX executable ../bin/int8_test
[ 82%] Linking CXX executable ../bin/fatal_signal_asan_no_sig_test
[ 82%] Built target workspace_test
[ 82%] Linking CXX executable ../bin/cuda_optional_test
[ 82%] Linking CXX executable ../bin/test_parallel
[ 82%] Linking CXX executable ../bin/generate_proposals_op_util_nms_test
[ 82%] Built target blob_test
[ 82%] Linking CXX executable ../bin/boolean_unmask_ops_test
[ 82%] Linking CXX executable ../bin/conv_transpose_op_mobile_test
[ 82%] Built target test_parallel
[ 82%] Built target fatal_signal_asan_no_sig_test
[ 82%] Built target int8_test
[ 82%] Built target cuda_optional_test
[ 82%] Built target generate_proposals_op_util_nms_test
[ 83%] Linking CXX executable ../bin/scalar_test
[ 83%] Linking CXX executable ../bin/ssa_test
[ 83%] Built target boolean_unmask_ops_test
[ 83%] Linking CXX executable ../bin/batch_matmul_op_test
[ 83%] Built target utility_ops_test
[ 83%] Linking CXX executable ../bin/operator_schema_test
[ 83%] Built target conv_transpose_op_mobile_test
[ 84%] Linking CXX executable ../bin/time_observer_test
[ 84%] Linking CXX executable ../bin/wrapdim_test
[ 84%] Linking CXX executable ../bin/timer_test
[ 84%] Linking CXX executable ../bin/inline_container_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_schema_test.dir/core/operator_schema_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_schema_test.dir/core/operator_schema_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 84%] Built target scalar_test
[ 84%] Built target wrapdim_test
[ 84%] Built target batch_matmul_op_test
[ 84%] Built target time_observer_test
[ 84%] Built target timer_test
[ 84%] Built target operator_schema_test
[ 84%] Linking CXX executable ../bin/common_test
[ 84%] Built target ssa_test
[ 84%] Linking CXX executable ../bin/TopoSortTest
[ 84%] Linking CXX executable ../bin/TarjansImplTest
[ 84%] Linking CXX executable ../bin/SubgraphMatcherTest
[ 84%] Built target inline_container_test
[ 84%] Linking CXX executable ../bin/cpuid_test
[ 84%] Linking CXX executable ../bin/NeuralNetTest
[ 84%] Linking CXX executable ../bin/simple_queue_test
[ 84%] Linking CXX executable ../bin/apply_test
[ 84%] Built target TarjansImplTest
[ 84%] Built target cpuid_test
[ 84%] Built target TopoSortTest
[ 84%] Built target common_test
[ 84%] Built target NeuralNetTest
[ 84%] Built target SubgraphMatcherTest
[ 84%] Built target simple_queue_test
[ 84%] Built target apply_test
[ 84%] Linking CXX executable ../bin/MatchTest
[ 84%] Linking CXX executable ../bin/stream_test
[ 84%] Linking CXX executable ../bin/GraphTest
[ 84%] Linking CXX executable ../bin/common_subexpression_elimination_test
[ 84%] Linking CXX executable ../bin/BinaryMatchImplTest
[ 84%] Linking CXX executable ../bin/AlgorithmsTest
[ 84%] Linking CXX executable ../bin/observer_test
[ 84%] Linking CXX executable ../bin/device_test
[ 84%] Built target BinaryMatchImplTest
[ 84%] Built target common_subexpression_elimination_test
[ 84%] Built target AlgorithmsTest
[ 84%] Built target GraphTest
[ 84%] Built target device_test
[ 84%] Built target observer_test
[ 84%] Built target MatchTest
[ 84%] Built target stream_test
[ 84%] Linking CXX executable ../bin/cast_test
[ 85%] Linking CXX executable ../bin/predictor_test
[ 85%] Linking CXX executable ../bin/proto_utils_test
[ 85%] Linking CXX executable ../bin/reshape_op_gpu_test
[ 85%] Linking CXX executable ../bin/event_gpu_test
[ 85%] Linking CXX executable ../bin/math_test
[ 85%] Linking CXX executable ../bin/transform_test
[ 85%] Linking CXX executable ../bin/verify_api_visibility
[ 85%] Built target verify_api_visibility
[ 85%] Built target proto_utils_test
[ 85%] Built target math_test
[ 85%] Built target transform_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/cast_test.dir/utils/cast_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 85%] Built target event_gpu_test
[ 85%] Built target reshape_op_gpu_test
[ 85%] Linking CXX executable ../bin/operator_test
[ 85%] Built target predictor_test
[ 85%] Linking CXX executable ../bin/fixed_divisor_test
[ 85%] Linking CXX executable ../bin/pattern_net_transform_test
[ 85%] Linking CXX executable ../bin/net_simple_refcount_test
[ 85%] Built target cast_test
[ 85%] Linking CXX executable ../bin/scalar_tensor_test
[ 86%] Linking CXX executable ../bin/atest
[ 86%] Linking CXX executable ../bin/module_test
[ 86%] Linking CXX executable ../bin/init_test
[ 86%] Built target net_simple_refcount_test
[ 86%] Built target fixed_divisor_test
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_test.dir/core/operator_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/operator_test.dir/core/operator_test.cc.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 86%] Built target pattern_net_transform_test
[ 86%] Built target scalar_tensor_test
[ 86%] Built target atest
[ 86%] Built target init_test
[ 86%] Built target module_test
[ 86%] Built target operator_test
Scanning dependencies of target cuda_half_test
[ 86%] Linking CXX executable ../bin/apply_utils_test
[ 86%] Linking CXX executable ../bin/generate_proposals_op_util_boxes_test
[ 86%] Linking CXX executable ../bin/event_test
[ 86%] Linking CXX executable ../bin/graph_test
[ 86%] Linking CXX executable ../bin/context_test
[ 86%] Linking CXX executable ../bin/basic
[ 87%] Linking CXX executable ../bin/cuda_half_test
[ 87%] Linking CXX executable ../bin/smart_tensor_printer_test
[ 87%] Built target event_test
[ 87%] Built target context_test
[ 87%] Built target basic
[ 87%] Built target apply_utils_test
[ 87%] Built target graph_test
[ 87%] Built target generate_proposals_op_util_boxes_test
[ 87%] Built target smart_tensor_printer_test
[ 87%] Built target cuda_half_test
[ 87%] Linking CXX executable ../bin/tbb_init_test
[ 87%] Linking CXX executable ../bin/undefined_tensor_test
[ 87%] Linking CXX executable ../bin/half_test
[ 87%] Linking CXX executable ../bin/native_test
[ 87%] Linking CXX executable ../bin/weakref_test
[ 87%] Linking CXX executable ../bin/math_gpu_test
[ 87%] Linking CXX executable ../bin/string_ops_test
[ 87%] Linking CXX executable ../bin/dlconvertor_test
[ 87%] Built target weakref_test
[ 87%] Built target undefined_tensor_test
[ 87%] Built target half_test
[ 87%] Built target native_test
[ 87%] Built target dlconvertor_test
[ 88%] Linking CXX executable ../bin/net_test
[ 88%] Built target tbb_init_test
[ 88%] Built target string_ops_test
[ 88%] Built target math_gpu_test
[ 88%] Linking CXX executable ../bin/stats_test
[ 88%] Linking CXX executable ../bin/elementwise_op_test
[ 88%] Linking CXX executable ../bin/text_file_reader_utils_test
Scanning dependencies of target cuda_packedtensoraccessor_test
[ 88%] Linking CXX executable ../bin/mobile_test
[ 88%] Linking CXX executable ../bin/net_dag_utils_test
[ 88%] Linking CXX executable ../bin/cuda_packedtensoraccessor_test
[ 88%] Linking CXX executable ../bin/generate_proposals_op_test
[ 88%] Built target stats_test
[ 88%] Built target text_file_reader_utils_test
[ 88%] Built target elementwise_op_test
[ 88%] Built target mobile_test
[ 88%] Built target net_dag_utils_test
[ 88%] Built target generate_proposals_op_test
[ 88%] Linking CXX executable ../bin/net_async_tracing_test
[ 88%] Linking CXX executable ../bin/parallel_net_test
[ 88%] Linking CXX executable ../bin/broadcast_test
[ 88%] Built target net_test
[ 88%] Built target cuda_packedtensoraccessor_test
[ 88%] Built target net_async_tracing_test
[ 88%] Built target broadcast_test
[ 88%] Built target parallel_net_test
[ 88%] Linking CXX shared library ../../lib/libcaffe2_detectron_ops_gpu.dylib
[ 88%] Linking CXX shared library ../../lib/libtorch.dylib
[ 89%] Built target caffe2_detectron_ops_gpu
ld: warning: direct access in function 'google::protobuf::internal::ExtensionSet::MutableString(int, unsigned char, google::protobuf::FieldDescriptor const*)' from file '../../lib/libprotobuf.a(extension_set.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::internal::GenericTypeHandler<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../../lib/libprotobuf.a(generated_message_reflection.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::AddAllocatedSlowWithCopy<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler::Type*, google::protobuf::Arena*, google::protobuf::Arena*)' from file '../../lib/libprotobuf.a(message.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
ld: warning: direct access in function 'void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<google::protobuf::RepeatedPtrField<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TypeHandler>(google::protobuf::internal::RepeatedPtrFieldBase const&)' from file '../../lib/libprotobuf.a(type.pb.cc.o)' to global weak symbol 'void google::protobuf::internal::arena_destruct_object<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(void*)' from file 'CMakeFiles/torch.dir/csrc/jit/export.cpp.o' means the weak symbol cannot be overridden at runtime. This was likely caused by different translation units being compiled with different visibility settings.
[ 94%] Built target torch
[ 94%] Linking CXX executable ../bin/test_jit
[ 95%] Linking CXX executable ../bin/test_api
[ 95%] Built target test_jit
[ 96%] Built target test_api
[ 96%] Linking CXX shared library ../../lib/libtorch_python.dylib
[100%] Built target torch_python
Install the project...
-- Install configuration: "Release"
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a(arenastring.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a(atomicops_internals_x86_msvc.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(arenastring.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(atomicops_internals_x86_msvc.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(io_win32.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(gzip_stream.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a(error_listener.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnx.a(defs.cc.o) has no symbols
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_DeviceGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_StreamGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_TensorTypeId_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_OpSchema_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_flags_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_InlineDeviceGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_InlineStreamGuard_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_logging_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_registry_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_Array_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_Metaprogramming_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_TypeList_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_TypeTraits_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_intrusive_ptr_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_typeid_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_cuda_CUDATest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/basic (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/basic (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/atest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/atest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/half_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/half_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/broadcast_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/broadcast_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/wrapdim_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/wrapdim_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dlconvertor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dlconvertor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/native_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/native_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_tensor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/scalar_tensor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/test_parallel (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/test_parallel (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/undefined_tensor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/undefined_tensor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/verify_api_visibility (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/verify_api_visibility (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/tbb_init_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/tbb_init_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/weakref_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/weakref_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/graph_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/graph_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/init_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/init_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/module_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/module_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_async_tracing_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_async_tracing_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_dag_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_dag_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_simple_refcount_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_simple_refcount_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/observer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/observer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_schema_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_schema_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/parallel_net_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/parallel_net_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stats_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stats_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/timer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/timer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/transform_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/transform_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/workspace_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/workspace_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fixed_divisor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fixed_divisor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fatal_signal_asan_no_sig_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/fatal_signal_asan_no_sig_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/simple_queue_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/simple_queue_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/proto_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/proto_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cpuid_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cpuid_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/smart_tensor_printer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/smart_tensor_printer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cast_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cast_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/predictor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/predictor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/AlgorithmsTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/AlgorithmsTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/BinaryMatchImplTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/BinaryMatchImplTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/GraphTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/GraphTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/MatchTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/MatchTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/NeuralNetTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/NeuralNetTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/SubgraphMatcherTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/SubgraphMatcherTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TarjansImplTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TarjansImplTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TopoSortTest (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/TopoSortTest (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/inline_container_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/inline_container_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/time_observer_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/time_observer_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/ssa_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/ssa_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/boolean_unmask_ops_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/boolean_unmask_ops_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_transpose_op_mobile_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_transpose_op_mobile_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_boxes_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_boxes_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_nms_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/generate_proposals_op_util_nms_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/string_ops_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/string_ops_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/text_file_reader_utils_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/text_file_reader_utils_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_roi_align_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/int8_roi_align_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/backend_cutting_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/backend_cutting_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/converter_nomigraph_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/converter_nomigraph_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dead_code_elim_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/dead_code_elim_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/device_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/device_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/distributed_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/distributed_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/mobile_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/mobile_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/nnpack_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/nnpack_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/depthwise3x3_conv_op_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/depthwise3x3_conv_op_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_subexpression_elimination_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/common_subexpression_elimination_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_to_nnpack_transform_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_to_nnpack_transform_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/pattern_net_transform_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/pattern_net_transform_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/integer_divider_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/integer_divider_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/integer_divider_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_rng_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_rng_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_rng_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/apply_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stream_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stream_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/stream_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_half_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_half_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_half_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_optional_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_optional_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_optional_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_packedtensoraccessor_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_packedtensoraccessor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cuda_packedtensoraccessor_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/blob_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/context_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/event_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/net_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/math_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/conv_op_cache_cudnn_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/batch_matmul_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/elementwise_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/operator_fallback_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/reshape_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/roi_align_op_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/utility_ops_gpu_test (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin/torch_shm_manager (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_utils_cpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_utils_gpu_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/test/c10_utils_hip_test (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib (for architecture x86_64) option "-add_rpath /usr/local/cuda/lib" would duplicate path, file already has LC_RPATH for: /usr/local/cuda/lib
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
error: /Library/Developer/CommandLineTools/usr/bin/install_name_tool: for: /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib (for architecture x86_64) option "-add_rpath @loader_path" would duplicate path, file already has LC_RPATH for: @loader_path
+ ls build.ninja
ls: build.ninja: No such file or directory
+ [[ ON == \O\N ]]
++ pwd
++ cd ..
++ pwd
+ echo 'Copying Caffe2 proto files from /Users/carlos/Downloads/pytorch/build/caffe2/proto to /Users/carlos/Downloads/pytorch/caffe2/proto'
Copying Caffe2 proto files from /Users/carlos/Downloads/pytorch/build/caffe2/proto to /Users/carlos/Downloads/pytorch/caffe2/proto
++ find caffe2/proto
+ echo 'All the files in caffe2/proto are caffe2/proto
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm.pb.cc
caffe2/proto/torch.pb.cc
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/Makefile
caffe2/proto/hsm.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/__init__.py
caffe2/proto/CTestTestfile.cmake
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/torch.pb.h
caffe2/proto/prof_dag.pb.cc
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/caffe2.pb.h
caffe2/proto/hsm_pb2.py
caffe2/proto/predictor_consts.pb.h
caffe2/proto/prof_dag.pb.h'
All the files in caffe2/proto are caffe2/proto
caffe2/proto/caffe2_legacy.pb.cc
caffe2/proto/prof_dag_pb2.py
caffe2/proto/hsm.pb.cc
caffe2/proto/torch.pb.cc
caffe2/proto/CMakeFiles
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/DependInfo.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.internal
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/prof_dag.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2_legacy.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/metanet.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/predictor_consts.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/depend.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/cmake_clean.cmake
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/progress.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/CXX.includecache
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/build.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/hsm.pb.cc.o
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/flags.make
caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o
caffe2/proto/CMakeFiles/progress.marks
caffe2/proto/CMakeFiles/CMakeDirectoryInformation.cmake
caffe2/proto/Makefile
caffe2/proto/hsm.pb.h
caffe2/proto/metanet.pb.cc
caffe2/proto/cmake_install.cmake
caffe2/proto/metanet_pb2.py
caffe2/proto/caffe2_legacy.pb.h
caffe2/proto/__init__.py
caffe2/proto/CTestTestfile.cmake
caffe2/proto/predictor_consts.pb.cc
caffe2/proto/metanet.pb.h
caffe2/proto/torch.pb.h
caffe2/proto/prof_dag.pb.cc
caffe2/proto/torch_pb2.py
caffe2/proto/caffe2_pb2.py
caffe2/proto/predictor_consts_pb2.py
caffe2/proto/caffe2.pb.cc
caffe2/proto/caffe2_legacy_pb2.py
caffe2/proto/caffe2.pb.h
caffe2/proto/hsm_pb2.py
caffe2/proto/predictor_consts.pb.h
caffe2/proto/prof_dag.pb.h
++ pwd
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/__init__.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/caffe2_legacy_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/caffe2_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/hsm_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/metanet_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/predictor_consts_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/prof_dag_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
+ for proto_file in '$(pwd)/caffe2/proto/*.py'
++ pwd
+ cp /Users/carlos/Downloads/pytorch/build/caffe2/proto/torch_pb2.py /Users/carlos/Downloads/pytorch/build/../caffe2/proto/
++ uname
+ [[ Darwin == \D\a\r\w\i\n ]]
+ echo 'Updating all install_names in /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib'
Updating all install_names in /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib
+ pushd /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib
~/Downloads/pytorch/torch/lib/tmp_install/lib ~/Downloads/pytorch/build
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib
+ install_name_tool -id @rpath/libc10.dylib libc10.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib
+ install_name_tool -id @rpath/libc10_cuda.dylib libc10_cuda.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib
+ install_name_tool -id @rpath/libcaffe2.dylib libcaffe2.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib
+ install_name_tool -id @rpath/libcaffe2_detectron_ops_gpu.dylib libcaffe2_detectron_ops_gpu.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib
+ install_name_tool -id @rpath/libcaffe2_gpu.dylib libcaffe2_gpu.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib
+ install_name_tool -id @rpath/libcaffe2_module_test_dynamic.dylib libcaffe2_module_test_dynamic.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib
+ install_name_tool -id @rpath/libcaffe2_observers.dylib libcaffe2_observers.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libiomp5.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libiomp5.dylib
+ install_name_tool -id @rpath/libiomp5.dylib libiomp5.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib
+ install_name_tool -id @rpath/libmkldnn.0.14.0.dylib libmkldnn.0.14.0.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.dylib
+ install_name_tool -id @rpath/libmkldnn.0.dylib libmkldnn.0.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.dylib
+ install_name_tool -id @rpath/libmkldnn.dylib libmkldnn.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmklml.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmklml.dylib
+ install_name_tool -id @rpath/libmklml.dylib libmklml.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi.dylib
+ install_name_tool -id @rpath/libonnxifi.dylib libonnxifi.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_dummy.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_dummy.dylib
+ install_name_tool -id @rpath/libonnxifi_dummy.dylib libonnxifi_dummy.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib
+ install_name_tool -id @rpath/libshm.dylib libshm.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib
+ install_name_tool -id @rpath/libtorch.1.dylib libtorch.1.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.dylib
+ install_name_tool -id @rpath/libtorch.dylib libtorch.dylib
+ for lib in '*.dylib'
++ pwd
+ echo 'Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib'
Updating install_name for /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib
+ install_name_tool -id @rpath/libtorch_python.dylib libtorch_python.dylib
+ popd
~/Downloads/pytorch/build
+ pushd /Users/carlos/Downloads/pytorch/torch/lib
~/Downloads/pytorch/torch/lib ~/Downloads/pytorch/build
++ date
+ echo 'tools/build_pytorch_libs.sh succeeded at Sat Dec 1 17:57:01 EST 2018'
tools/build_pytorch_libs.sh succeeded at Sat Dec 1 17:57:01 EST 2018
+ echo 'removing /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/cmake and /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python'
removing /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/cmake and /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python
+ rm -rf /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/cmake
+ rm -rf /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python
++ pwd
+ echo 'Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib to /Users/carlos/Downloads/pytorch/torch/lib'
Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib to /Users/carlos/Downloads/pytorch/torch/lib
+ rsync -lptgoD -r /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libTHD.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libc10_cuda.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_detectron_ops_gpu.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_gpu.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_module_test_dynamic.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcaffe2_observers.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libclog.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libcpuinfo.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libiomp5.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.14.0.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.0.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmkldnn.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libmklml.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libnnpack.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnx.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnx_proto.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_dummy.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libonnxifi_loader.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf-lite.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotobuf.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libprotoc.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libpthreadpool.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libqnnpack.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libshm.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libsleef.a /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.1.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/libtorch_python.dylib /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/pkgconfig /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6 .
+ '[' -d /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib64/ ']'
++ cd ../..
++ pwd
++ pwd
+ echo 'Copying /Users/carlos/Downloads/pytorch/aten/src/generic/THNN.h to /Users/carlos/Downloads/pytorch/torch/lib'
Copying /Users/carlos/Downloads/pytorch/aten/src/generic/THNN.h to /Users/carlos/Downloads/pytorch/torch/lib
+ rsync -lptgoD ../../aten/src/THNN/generic/THNN.h .
+ rsync -lptgoD ../../aten/src/THCUNN/generic/THCUNN.h .
++ pwd
+ echo 'Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/include to /Users/carlos/Downloads/pytorch/torch/lib'
Copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/include to /Users/carlos/Downloads/pytorch/torch/lib
+ rsync -lptgoD -r /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/include .
+ '[' -d /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin/ ']'
+ rsync -lptgoD -r /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin//protoc /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/bin//torch_shm_manager .
+ popd
~/Downloads/pytorch/build
copying torch/lib/tmp_install/share/cmake/ONNX/ONNXTargets-release.cmake -> torch/share/cmake/ONNX
copying torch/lib/tmp_install/share/cmake/Caffe2/Caffe2Targets-release.cmake -> torch/share/cmake/Caffe2
running build
running build_py
setup.py::build_py::run()
running create_version_file
-- Building version 1.0.0a0+4c11dee
copying torch/version.py -> build/lib.macosx-10.7-x86_64-3.6/torch
copying caffe2/proto/prof_dag_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/metanet_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/__init__.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/torch_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/caffe2_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/predictor_consts_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/caffe2_legacy_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying caffe2/proto/hsm_pb2.py -> build/lib.macosx-10.7-x86_64-3.6/caffe2/proto
copying torch/lib/libtorch_python.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmkldnn.0.14.0.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libtorch.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_gpu.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_observers.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmkldnn.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libiomp5.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_module_test_dynamic.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libcaffe2_detectron_ops_gpu.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libonnxifi.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmkldnn.0.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libtorch.1.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libc10.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libshm.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libc10_cuda.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libmklml.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/lib/libonnxifi_dummy.dylib -> build/lib.macosx-10.7-x86_64-3.6/torch/lib
copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-10.7-x86_64-3.6/torch/share/cmake/Caffe2
running build_ext
-- Building with NumPy bindings
-- Detected cuDNN at /usr/local/cuda/lib/libcudnn.7.dylib, /usr/local/cuda/include
-- Not using MIOpen
-- Detected CUDA at /usr/local/cuda
-- Using MKLDNN
-- Not using NCCL
-- Building with THD distributed package
-- Building without c10d distributed package
Skipped writing torch/csrc/nn/THNN.cpp
Skipped writing torch/csrc/nn/THCUNN.cpp
WARNING: derivative ignored for _indices
WARNING: derivative ignored for _values
WARNING: derivative ignored for indices
Skipped writing torch/csrc/autograd/generated/VariableType.h
WARNING: derivative ignored for _indices
WARNING: derivative ignored for indices
Skipped writing torch/csrc/autograd/generated/VariableType_0.cpp
WARNING: derivative ignored for _values
Skipped writing torch/csrc/autograd/generated/VariableType_1.cpp
Skipped writing torch/csrc/autograd/generated/VariableType_2.cpp
Skipped writing torch/csrc/autograd/generated/VariableType_3.cpp
Skipped writing torch/csrc/autograd/generated/VariableType_4.cpp
WARNING: derivative ignored for _indices
WARNING: derivative ignored for _values
WARNING: derivative ignored for indices
Skipped writing torch/csrc/autograd/generated/VariableTypeEverything.cpp
Skipped writing torch/csrc/autograd/generated/Functions.h
Skipped writing torch/csrc/autograd/generated/Functions.cpp
Skipped writing torch/csrc/autograd/generated/python_functions.h
Skipped writing torch/csrc/autograd/generated/python_functions.cpp
Skipped writing torch/csrc/autograd/generated/python_variable_methods.cpp
Skipped writing torch/csrc/autograd/generated/python_variable_methods_dispatch.h
Skipped writing torch/csrc/autograd/generated/python_torch_functions.cpp
Skipped writing torch/csrc/autograd/generated/python_torch_functions_dispatch.h
Skipped writing torch/csrc/autograd/generated/python_nn_functions.cpp
Skipped writing torch/csrc/autograd/generated/python_nn_functions.h
Skipped writing torch/csrc/autograd/generated/python_nn_functions_dispatch.h
Skipped writing torch/csrc/autograd/generated/variable_factories.h
Skipped writing torch/csrc/jit/generated/register_aten_ops_0.cpp
Skipped writing torch/csrc/jit/generated/register_aten_ops_1.cpp
Skipped writing torch/csrc/jit/generated/register_aten_ops_2.cpp
Skipped writing torch/csrc/jit/generated/aten_interned_strings.h
Copying extension caffe2.python.caffe2_pybind11_state
Copying caffe2.python.caffe2_pybind11_state from /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so to /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so
copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so -> /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python
Copying extension caffe2.python.caffe2_pybind11_state_gpu
Copying caffe2.python.caffe2_pybind11_state_gpu from /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so to /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so
copying /Users/carlos/Downloads/pytorch/torch/lib/tmp_install/lib/python3.6/site-packages/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so -> /Users/carlos/Downloads/pytorch/build/lib.macosx-10.7-x86_64-3.6/caffe2/python
running install_lib
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/prof_dag_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/metanet_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/__init__.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/torch_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/caffe2_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/predictor_consts_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/caffe2_legacy_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/proto/hsm_pb2.py -> /anaconda3/lib/python3.6/site-packages/caffe2/proto
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state_gpu.cpython-36m-darwin.so -> /anaconda3/lib/python3.6/site-packages/caffe2/python
copying build/lib.macosx-10.7-x86_64-3.6/caffe2/python/caffe2_pybind11_state.cpython-36m-darwin.so -> /anaconda3/lib/python3.6/site-packages/caffe2/python
copying build/lib.macosx-10.7-x86_64-3.6/torch/version.py -> /anaconda3/lib/python3.6/site-packages/torch
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libtorch_python.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmkldnn.0.14.0.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libtorch.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_gpu.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_observers.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmkldnn.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libiomp5.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_module_test_dynamic.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libcaffe2_detectron_ops_gpu.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libonnxifi.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmkldnn.0.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libtorch.1.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libc10.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libshm.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libc10_cuda.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libmklml.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/lib/libonnxifi_dummy.dylib -> /anaconda3/lib/python3.6/site-packages/torch/lib
copying build/lib.macosx-10.7-x86_64-3.6/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> /anaconda3/lib/python3.6/site-packages/torch/share/cmake/Caffe2
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/prof_dag_pb2.py to prof_dag_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/metanet_pb2.py to metanet_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/__init__.py to __init__.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/torch_pb2.py to torch_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/caffe2_pb2.py to caffe2_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/predictor_consts_pb2.py to predictor_consts_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/caffe2_legacy_pb2.py to caffe2_legacy_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/caffe2/proto/hsm_pb2.py to hsm_pb2.cpython-36.pyc
byte-compiling /anaconda3/lib/python3.6/site-packages/torch/version.py to version.cpython-36.pyc
running install_egg_info
running egg_info
writing torch.egg-info/PKG-INFO
writing dependency_links to torch.egg-info/dependency_links.txt
writing entry points to torch.egg-info/entry_points.txt
writing top-level names to torch.egg-info/top_level.txt
reading manifest file 'torch.egg-info/SOURCES.txt'
writing manifest file 'torch.egg-info/SOURCES.txt'
removing '/anaconda3/lib/python3.6/site-packages/torch-1.0.0a0+4c11dee-py3.6.egg-info' (and everything under it)
Copying torch.egg-info to /anaconda3/lib/python3.6/site-packages/torch-1.0.0a0+4c11dee-py3.6.egg-info
running install_scripts
Installing convert-caffe2-to-onnx script to /anaconda3/bin
Installing convert-onnx-to-caffe2 script to /anaconda3/bin
</code></pre></div>
<h2 dir="auto">Environment</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting environment information...
PyTorch version: 1.0.0a0+4c11dee
Is debug build: No
CUDA used to build PyTorch: 10.0
OS: Mac OSX 10.14.1
GCC version: Could not collect
CMake version: version 3.13.0
Python version: 3.6
Is CUDA available: No
CUDA runtime version: 10.0.130
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Probably one of the following:
/usr/local/cuda/lib/libcudnn.7.dylib
/usr/local/cuda/lib/libcudnn.dylib
/usr/local/cuda/lib/libcudnn_static.a
Versions of relevant libraries:
[pip] Could not collect
[conda] torch 1.0.0a0+4c11dee <pip>
[conda] torchvision 0.2.0 <pip>"><pre class="notranslate"><code class="notranslate">Collecting environment information...
PyTorch version: 1.0.0a0+4c11dee
Is debug build: No
CUDA used to build PyTorch: 10.0
OS: Mac OSX 10.14.1
GCC version: Could not collect
CMake version: version 3.13.0
Python version: 3.6
Is CUDA available: No
CUDA runtime version: 10.0.130
GPU models and configuration: Could not collect
Nvidia driver version: Could not collect
cuDNN version: Probably one of the following:
/usr/local/cuda/lib/libcudnn.7.dylib
/usr/local/cuda/lib/libcudnn.dylib
/usr/local/cuda/lib/libcudnn_static.a
Versions of relevant libraries:
[pip] Could not collect
[conda] torch 1.0.0a0+4c11dee <pip>
[conda] torchvision 0.2.0 <pip>
</code></pre></div>
<ul dir="auto">
<li>PyTorch Version (e.g., 1.0): 1.0.0a0+4c11dee</li>
<li>OS (e.g., Linux): Mac OSX 10.14.1</li>
<li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source): source</li>
<li>Build command you used (if compiling from source): <code class="notranslate">MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install</code></li>
<li>Python version: 3.6</li>
<li>CUDA/cuDNN version: CUDA 10.0.130, cuDNN 7.4.1</li>
<li>GPU models and configuration: NVIDIA GeForce GT 750M</li>
</ul> | <p dir="auto">Hi,<br>
I have the same problem as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="605193793" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/37124" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/37124/hovercard" href="https://github.com/pytorch/pytorch/issues/37124">#37124</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608757641" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/37481" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/37481/hovercard" href="https://github.com/pytorch/pytorch/issues/37481">#37481</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="611495192" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/37741" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/37741/hovercard" href="https://github.com/pytorch/pytorch/issues/37741">#37741</a>. Now I try to create a dll by using libtorch library to provide a function for others. When I test the dll, I found I must add -INCLUDE:?warp_size@cuda@at@@YAHXZ if want to use CUDA. But it's not convenient for others to use dll. So can someone help me solve this?<br>
Also I want to know if these two methods can solve this:<br>
1.Use Cmake to create the VS project and then generate dll, is it different with now?<br>
2.Use other version of libtorch(now 1.5) can help?<br>
Thank for help.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yf225/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yf225">@yf225</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/glaringlee/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/glaringlee">@glaringlee</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/peterjc123/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/peterjc123">@peterjc123</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/maxluk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/maxluk">@maxluk</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nbcsm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nbcsm">@nbcsm</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guyang3532/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guyang3532">@guyang3532</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gunandrose4u/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gunandrose4u">@gunandrose4u</a> @smartcat2010 <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mszhanyi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mszhanyi">@mszhanyi</a></p> | 0 |
<p dir="auto">The documentation for the <code class="notranslate">metric</code> parameter for <code class="notranslate">silhouette_score()</code> reads:</p>
<blockquote>
<p dir="auto">If metric is a string, it must be one of the options allowed by metrics.pairwise.pairwise_distances. If X is the distance array itself, use metric="precomputed".</p>
</blockquote>
<p dir="auto">However, entering <code class="notranslate">metric='l1'</code> or <code class="notranslate">metric='cosine'</code> both lead to an error:</p>
<blockquote>
<p dir="auto">File "search_cluster_02.py", line 148, in <br>
% metrics.silhouette_score(X, labels, sample_size=1000,metric="l1"))<br>
File "C:\Anaconda\lib\site-packages\sklearn\metrics\cluster\unsupervised.py", line 84, in silhouette_score<br>
return np.mean(silhouette_samples(X, labels, metric=metric, *_kwds))<br>
File "C:\Anaconda\lib\site-packages\sklearn\metrics\cluster\unsupervised.py", line 143, in silhouette_samples<br>
distances = pairwise_distances(X, metric=metric, *_kwds)<br>
File "C:\Anaconda\lib\site-packages\sklearn\metrics\pairwise.py", line 657, in pairwise_distances<br>
return func(X, Y, **kwds)<br>
File "C:\Anaconda\lib\site-packages\sklearn\metrics\pairwise.py", line 244, in manhattan_distances<br>
raise ValueError("manhattan_distance does not support sparse"</p>
</blockquote>
<p dir="auto">However, the <a href="http://scikit-learn.org/stable/modules/generated/sklearn.metrics.pairwise.pairwise_distances.html#sklearn.metrics.pairwise.pairwise_distances" rel="nofollow">documentation</a> for <code class="notranslate">metrics.pairwise.pairwise_distances</code> indicates that sparse matrices are allowed:</p>
<blockquote>
<p dir="auto">Please note that support for sparse matrices is currently limited to those metrics listed in pairwise.PAIRWISE_DISTANCE_FUNCTIONS.</p>
</blockquote>
<p dir="auto">Looking there, on Github, we have:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PAIRWISE_DISTANCE_FUNCTIONS = {
# If updating this dictionary, update the doc in both distance_metrics()
# and also in pairwise_distances()!
'cityblock': manhattan_distances,
'cosine': cosine_distances,
'euclidean': euclidean_distances,
'l2': euclidean_distances,
'l1': manhattan_distances,
'manhattan': manhattan_distances, }"><pre class="notranslate"><code class="notranslate">PAIRWISE_DISTANCE_FUNCTIONS = {
# If updating this dictionary, update the doc in both distance_metrics()
# and also in pairwise_distances()!
'cityblock': manhattan_distances,
'cosine': cosine_distances,
'euclidean': euclidean_distances,
'l2': euclidean_distances,
'l1': manhattan_distances,
'manhattan': manhattan_distances, }
</code></pre></div>
<p dir="auto">Honestly, I can't tell if this is a documentation problem (or clarity issue) or a code problem.</p>
<p dir="auto">To reproduce this, just run the example script from this page:<br>
<a href="http://scikit-learn.org/stable/auto_examples/document_clustering.html" rel="nofollow">http://scikit-learn.org/stable/auto_examples/document_clustering.html</a></p>
<p dir="auto">and at the very bottom of the script, add the <code class="notranslate">metric='l1'</code> parameter to the call to <code class="notranslate">silhouette_score</code>.</p> | <p dir="auto">A simple case can be found here when manhattan_distances take two sparse matrices as input<br>
<a href="https://gist.github.com/4117966">https://gist.github.com/4117966</a><br>
The function fails without complaining.</p>
<p dir="auto">Seems <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jakevdp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jakevdp">@jakevdp</a> <a href="https://github.com/jakevdp/pyDistances/">https://github.com/jakevdp/pyDistances/</a> has many very efficient routines for computing pairwise-distances for sparse matrices, any plan for adopting some of them to sklearn?</p> | 1 |
<p dir="auto">At first. Thank you all the Bootstrap 3 developers for your great work.</p>
<p dir="auto">For icons, Bootstrap 3.0 switched from "icon-<em>" to "glyphicon" "glyphicon-</em>".</p>
<p dir="auto">mbo written here <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="18580083" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/10201" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/10201/hovercard?comment_id=23304007&comment_type=issue_comment" href="https://github.com/twbs/bootstrap/issues/10201#issuecomment-23304007">#10201 (comment)</a>:</p>
<blockquote>
<p dir="auto">Overall, it comes down to performance. The attribute selectors we used in 2.x just don't cut it in larger projects and classes are way more performant. It also fits with our base and modifier class approach elsewhere in the project.</p>
</blockquote>
<p dir="auto">and here: <a href="https://github.com/twbs/bootstrap/pull/8332" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/8332/hovercard">#8332 "Remove Glyphicons"</a></p>
<blockquote>
<ol dir="auto">
<li>Makes Glyphicons more readily available to the masses, with or without Bootstrap's integration.</li>
<li>Keeps the core project as lean as possible with regards to number of files, build processes, versioning, and more.</li>
<li>Enables the community to more easily swap other icon libraries in and out.</li>
</ol>
</blockquote>
<p dir="auto">So the first target is better performance. We get it by using base class and a modifier class.</p>
<p dir="auto">And the second target is more easily swap other icon libraries.</p>
<p dir="auto">Using the product name "glyphicon" in the class names work against this!</p>
<p dir="auto">It links bootstrap 3 stronger to glyphicon as ever before. It brings a lot of trouble and only ugly solutions for providers of icon sets and also for users of icon set.</p>
<p dir="auto">See here for details: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="13054427" data-permission-text="Title is private" data-url="https://github.com/FortAwesome/Font-Awesome/issues/940" data-hovercard-type="issue" data-hovercard-url="/FortAwesome/Font-Awesome/issues/940/hovercard?comment_id=23774110&comment_type=issue_comment" href="https://github.com/FortAwesome/Font-Awesome/issues/940#issuecomment-23774110">FortAwesome/Font-Awesome#940 (comment)</a></p>
<p dir="auto">But why?</p>
<p dir="auto">Using "icon" as base class and "icon-" as prefix for modifier classes (or may be "bs-icon" and "bs-icon-") would avoid many of these problems.</p>
<p dir="auto">I beg of you the bootstrap developers, do not longer take a product name of a special icon set as default class name in bootstrap.</p>
<p dir="auto">Is there anybody who support this wish?<br>
Please add a vote.</p>
<p dir="auto">ps: Sorry for my English, I still try to find the right words with a dictionary.</p> | <p dir="auto">I'm sure some where along the line there was a discussion about how icon classes should be declared, but how the current format was decided on is beyond me.</p>
<ul dir="auto">
<li>it takes forever to type by hand</li>
<li>impossible to switch to other icons-as-a-font libraries and keep the same code as most of them use Bootstrap 2.x <code class="notranslate">.icon-</code></li>
<li>approx 17 extra bytes I don't want or need</li>
<li>just plain old silly</li>
</ul>
<p dir="auto">I believe it would be in the best interest of the Bootstrap community to start a serious discussion on standardizing the icon class names. More for than just for Bootstrap, too. Font-Awesome and the other icons-as-a-font libraries would benefit from standardization as well.</p>
<p dir="auto">To me, it seems natural to stick to Bootstrap 2.x, (just <code class="notranslate">.icon-</code>), however extending with an extra <code class="notranslate">.icon</code> before it would also be better than the existing implementation.</p> | 1 |
<pre class="notranslate">See also <a href="https://golang.org/issue/8561" rel="nofollow">issue #8561</a>.
<a href="http://play.golang.org/p/VYrNcjJ_Qo" rel="nofollow">http://play.golang.org/p/VYrNcjJ_Qo</a>
compiles w/o a problem but leads to a guaranteed run-time failure: The method m in T1
and T2 have conflicting signatures and thus x (static type T1) cannot possibly be of
type T2.
The spec does not require that the signatures be conflict-free (
<a href="http://tip.golang.org/ref/spec#Type_assertions" rel="nofollow">http://tip.golang.org/ref/spec#Type_assertions</a> ):
"If T is an interface type, x.(T) asserts that the dynamic type of x implements the
interface T."
Interestingly, when it comes to interface assignments ("implements" relation),
conflicting method signatures are not permitted:
<a href="http://play.golang.org/p/QAZWsPqejr" rel="nofollow">http://play.golang.org/p/QAZWsPqejr</a>
prog.go:13: cannot use x2 (type T2) as type T1 in assignment:
T2 does not implement T1 (wrong type for m method)
have m(string)
want m(int)
prog.go:14: cannot use x1 (type T1) as type T2 in assignment:
T1 does not implement T2 (wrong type for m method)
have m(int)
want m(string)</pre> | <pre class="notranslate">Reported by developer on IRC
lucky(~/src) % gdb ./addr
GNU gdb (GDB) 7.5
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <<a href="http://gnu.org/licenses/gpl.html>" rel="nofollow">http://gnu.org/licenses/gpl.html></a>;
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-unknown-linux-gnu".
For bug reporting instructions, please see:
<<a href="http://www.gnu.org/software/gdb/bugs/>" rel="nofollow">http://www.gnu.org/software/gdb/bugs/></a>;...
Reading symbols from /home/dfc/src/addr...done.
(gdb) b main.main
Breakpoint 1 at 0x400c00: file /home/dfc/src/addr.go, line 9.
(gdb) r
Starting program: /home/dfc/src/addr
[New LWP 3980]
[Switching to LWP 3980]
Breakpoint 1, main.main () at /home/dfc/src/addr.go:9
9 func main() {
(gdb) goroutines
Undefined command: "goroutines". Try "help".
What is the expected output? What do you see instead?
gdb integration should work
Please use labels and text to provide additional information.</pre> | 0 |
<p dir="auto">In python2.6.6 (I do not have more recent versions available at work) there is a problem with scipy.special.gammaincinv with the second parameter (the quantile) set as 0.25. For example</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">gammaincinv(1.0, 0.25)<br>
0.0<br>
gammaincinv(2.0, 0.25)<br>
0.0<br>
gammaincinv(3.0, 0.25)<br>
0.0<br>
gammaincinv(3.0, 0.24)<br>
1.6894710461335511<br>
gammaincinv(1.0, 0.24)<br>
0.27443684570176036<br>
gammaincinv(1.0, 0.26)<br>
0.30110509278392172</p>
</blockquote>
</blockquote>
</blockquote> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/975" rel="nofollow">http://projects.scipy.org/scipy/ticket/975</a> on 2009-07-15 by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pierregm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pierregm">@pierregm</a>, assigned to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pv/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pv">@pv</a>.</em></p>
<p dir="auto">special.gammaincinv(x,y) fails when y=0.25 for any value of x.</p>
<p dir="auto">Could it be a problem in c_misc/gammaincinv.c ?<br>
(<a href="http://article.gmane.org/gmane.comp.python.scientific.devel/11271" rel="nofollow">http://article.gmane.org/gmane.comp.python.scientific.devel/11271</a>)</p> | 1 |
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.4.4</td>
</tr>
</tbody>
</table>
<p dir="auto">Currently the theme bootstrap_4_layout.html.twig renders checkboxes like that</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div class="form-check">
<label class="form-check-label">
<input type="checkbox" id="defaultCheck1" name="anyname" class="form-check-input" value="1"> Default checkbox
</label>
</div>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">form-check</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span> <span class="pl-c1">class</span>="<span class="pl-s">form-check-label</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">id</span>="<span class="pl-s">defaultCheck1</span>" <span class="pl-c1">name</span>="<span class="pl-s">anyname</span>" <span class="pl-c1">class</span>="<span class="pl-s">form-check-input</span>" <span class="pl-c1">value</span>="<span class="pl-s">1</span>"<span class="pl-kos">></span> Default checkbox
<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div>
<p dir="auto">But the bootstrap 4 documentation has the following structure</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="defaultCheck1">
<label class="form-check-label" for="defaultCheck1">
Default checkbox
</label>
</div>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">form-check</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">class</span>="<span class="pl-s">form-check-input</span>" <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">value</span>="" <span class="pl-c1">id</span>="<span class="pl-s">defaultCheck1</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span> <span class="pl-c1">class</span>="<span class="pl-s">form-check-label</span>" <span class="pl-c1">for</span>="<span class="pl-s">defaultCheck1</span>"<span class="pl-kos">></span>
Default checkbox
<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div>
<p dir="auto">The same logic for radio buttons</p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>4</td>
</tr>
</tbody>
</table>
<p dir="auto">Hi!</p>
<p dir="auto">I'm not sure if it is a bug or intentional, but in bootstrap4 form layout the validation errors are rendered inside the label tag see:<br>
<a href="https://github.com/symfony/twig-bridge/blob/master/Resources/views/Form/bootstrap_4_layout.html.twig#L206">https://github.com/symfony/twig-bridge/blob/master/Resources/views/Form/bootstrap_4_layout.html.twig#L206</a></p>
<p dir="auto">It's not exactly how bootstrap recommends it.<br>
<a href="https://getbootstrap.com/docs/4.0/components/forms/#validation" rel="nofollow">https://getbootstrap.com/docs/4.0/components/forms/#validation</a></p>
<p dir="auto">Regards,<br>
Marton</p> | 1 |
<p dir="auto">I've updated to <strong>2.7</strong> and changed my choice types to use <code class="notranslate">choices_as_values</code>.<br>
Most of my choices are simple "No" or "Yes". But they must not be preselected - the user is forced to choose. That is why none of my radio buttons is initially checked.</p>
<p dir="auto">I tried this with <strong>2.7</strong>:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$builder->add('aberdeenBlind', 'choice', array(
'choices' => array(
'Ja' => true,
'Nein' => false
),
'choices_as_values' => true,
'expanded' => true,
'required' => true
))"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'aberdeenBlind'</span>, <span class="pl-s">'choice'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'choices'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'Ja'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'Nein'</span> => <span class="pl-c1">false</span>
),
<span class="pl-s">'choices_as_values'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'expanded'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'required'</span> => <span class="pl-c1">true</span>
))</pre></div>
<p dir="auto">Unfortunately the second radio button (false => 'Nein') is preselected. This also happens when flipping the order of the <code class="notranslate">choices</code>. The <code class="notranslate">false</code> choice is always preselected.</p>
<p dir="auto">I played around with other options e.g. <code class="notranslate">placeholder</code>, <code class="notranslate">empty_*</code> etc. but then I recognized:<br>
<strong>This only seems to happen when using <code class="notranslate">boolean</code> values. The following example would not preselect any value</strong>:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$builder->add('aberdeenBlind', 'choice', array(
'choices' => array(
'Ja' => 'Y', // or '1'
'Nein' => 'N' // or '0'
),
'choices_as_values' => true,
'expanded' => true,
'required' => true
))"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'aberdeenBlind'</span>, <span class="pl-s">'choice'</span>, <span class="pl-en">array</span>(
<span class="pl-s">'choices'</span> => <span class="pl-en">array</span>(
<span class="pl-s">'Ja'</span> => <span class="pl-s">'Y'</span>, <span class="pl-c">// or '1'</span>
<span class="pl-s">'Nein'</span> => <span class="pl-s">'N'</span> <span class="pl-c">// or '0'</span>
),
<span class="pl-s">'choices_as_values'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'expanded'</span> => <span class="pl-c1">true</span>,
<span class="pl-s">'required'</span> => <span class="pl-c1">true</span>
))</pre></div>
<p dir="auto">Possibly related:</p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="78862929" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/14712" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/14712/hovercard" href="https://github.com/symfony/symfony/issues/14712">#14712</a> by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/maxailloud/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/maxailloud">@maxailloud</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="101526807" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/15573" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/15573/hovercard" href="https://github.com/symfony/symfony/issues/15573">#15573</a> by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/imphil/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/imphil">@imphil</a></li>
</ul> | <p dir="auto">Using Symfony 2.8.2 or 3.0.2.<br>
You can reproduce the problem with this simple statement:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$builder->add('participation', ChoiceType::class, array(
'choices' => [ 'yes' => true, 'no' => false ],
'placeholder' => 'Select a value',
'empty_data' => null,
'choices_as_values' => true,
));"><pre class="notranslate"><span class="pl-s1"><span class="pl-c1">$</span>builder</span>-><span class="pl-en">add</span>(<span class="pl-s">'participation'</span>, <span class="pl-v">ChoiceType</span>::class, <span class="pl-en">array</span>(
<span class="pl-s">'choices'</span> => [ <span class="pl-s">'yes'</span> => <span class="pl-c1">true</span>, <span class="pl-s">'no'</span> => <span class="pl-c1">false</span> ],
<span class="pl-s">'placeholder'</span> => <span class="pl-s">'Select a value'</span>,
<span class="pl-s">'empty_data'</span> => <span class="pl-c1">null</span>,
<span class="pl-s">'choices_as_values'</span> => <span class="pl-c1">true</span>,
));</pre></div>
<p dir="auto">Expected result:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<select name="filter[participation]" id="filter_participation">
<option value="">Select a value</option>
<option value="1">Yes</option>
<option selected="selected" value="0">No</option>
</select>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">select</span> <span class="pl-c1">name</span>="<span class="pl-s">filter[participation]</span>" <span class="pl-c1">id</span>="<span class="pl-s">filter_participation</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">option</span> <span class="pl-c1">value</span>=""<span class="pl-kos">></span>Select a value<span class="pl-kos"></</span><span class="pl-ent">option</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">option</span> <span class="pl-c1">value</span>="<span class="pl-s">1</span>"<span class="pl-kos">></span>Yes<span class="pl-kos"></</span><span class="pl-ent">option</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">option</span> <span class="pl-c1">selected</span>="<span class="pl-s">selected</span>" <span class="pl-c1">value</span>="<span class="pl-s">0</span>"<span class="pl-kos">></span>No<span class="pl-kos"></</span><span class="pl-ent">option</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">select</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Actual result:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<select name="filter[participation]" id="filter_participation">
<option value="1">Yes</option>
<option selected="selected" value="">No</option>
</select>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">select</span> <span class="pl-c1">name</span>="<span class="pl-s">filter[participation]</span>" <span class="pl-c1">id</span>="<span class="pl-s">filter_participation</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">option</span> <span class="pl-c1">value</span>="<span class="pl-s">1</span>"<span class="pl-kos">></span>Yes<span class="pl-kos"></</span><span class="pl-ent">option</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">option</span> <span class="pl-c1">selected</span>="<span class="pl-s">selected</span>" <span class="pl-c1">value</span>=""<span class="pl-kos">></span>No<span class="pl-kos"></</span><span class="pl-ent">option</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">select</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Dump of choiceList:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/652505/12809461/ab8548c8-cb1f-11e5-974b-d38b5dd6c519.png"><img src="https://cloud.githubusercontent.com/assets/652505/12809461/ab8548c8-cb1f-11e5-974b-d38b5dd6c519.png" alt="boolean_choice_dump" style="max-width: 100%;"></a></p>
<p dir="auto">As you can see, the placeholder is not rendered. If I add a new empty value in 'choices', I got an empty value in the view plus the placeholder value.</p> | 1 |
<ul dir="auto">
<li>Electron version: 1.4.15</li>
<li>Operating system: Windows 10</li>
</ul>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Height is oversized by exactly 8px consistently (taskbar is set to small icons).</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://raw.githubusercontent.com/adi518/electron-frameless-maximize-test/master/issue.jpg"><img src="https://raw.githubusercontent.com/adi518/electron-frameless-maximize-test/master/issue.jpg" alt="Alt" style="max-width: 100%;"></a></p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto"><a href="https://github.com/adi518/electron-frameless-maximize-test">https://github.com/adi518/electron-frameless-maximize-test</a></p> | <ul dir="auto">
<li>Electron version: 1.4.15</li>
<li>Operating system: Windows 10 Pro x64</li>
</ul>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Maximized window should not oversize.</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Maximized window is oversized.</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">Clone following repository:<br>
<a href="https://github.com/tonyganch/electron-oversized-test.git">https://github.com/tonyganch/electron-oversized-test.git</a></p>
<p dir="auto">and follow the <code class="notranslate">README.md</code>.</p>
<h3 dir="auto">Screenshots</h3>
<h4 dir="auto">Unmaximized frameless</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7304212/22143620/f6c83026-defa-11e6-8ef0-ec196619c775.png"><img src="https://cloud.githubusercontent.com/assets/7304212/22143620/f6c83026-defa-11e6-8ef0-ec196619c775.png" alt="electron_2017-01-20_10-24-19" style="max-width: 100%;"></a></p>
<h4 dir="auto">Maximized frameless</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7304212/22143662/174cb556-defb-11e6-8e13-359dc6d60194.png"><img src="https://cloud.githubusercontent.com/assets/7304212/22143662/174cb556-defb-11e6-8e13-359dc6d60194.png" alt="electron_2017-01-20_10-27-39" style="max-width: 100%;"></a></p>
<h4 dir="auto">Unmaximized with frame</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7304212/22143749/7607bb22-defb-11e6-8b02-877b75e40603.png"><img src="https://cloud.githubusercontent.com/assets/7304212/22143749/7607bb22-defb-11e6-8b02-877b75e40603.png" alt="electron_2017-01-20_10-30-14" style="max-width: 100%;"></a></p>
<h4 dir="auto">Maximized with frame</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7304212/22143770/877b15ac-defb-11e6-8ee7-37226c858ff5.png"><img src="https://cloud.githubusercontent.com/assets/7304212/22143770/877b15ac-defb-11e6-8ee7-37226c858ff5.png" alt="electron_2017-01-20_10-30-43" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto"><strong>EDIT</strong> Probably duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="303488459" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/15293" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/15293/hovercard" href="https://github.com/flutter/flutter/issues/15293">#15293</a></p>
<h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Clone <a href="https://github.com/flutter/website">https://github.com/flutter/website</a></li>
<li>Run <code class="notranslate">./tool/travis.sh</code></li>
</ol>
<p dir="auto"><strong>Explanation:</strong> We're analyzing our sample code in CI. The files exist in file structures that aren't real flutter projects (<a href="https://github.com/flutter/website/tree/master/_includes/code">example</a>). This worked well until very recently but now all our builds fail.</p>
<p dir="auto">I can work around this but it would be great to have actual Flutter analysis run on these standalone files.</p>
<h2 dir="auto">Logs from running the above command</h2>
<p dir="auto">Flutter crash report; please file at <a href="https://github.com/flutter/flutter/issues">https://github.com/flutter/flutter/issues</a>.</p>
<h3 dir="auto">command</h3>
<p dir="auto">flutter analyze _includes/code/animation/animate1/main.dart</p>
<h3 dir="auto">exception</h3>
<p dir="auto">ProcessException: ProcessException: No such file or directory<br>
Command: /usr/bin/xcodebuild -project /Users/filiph/dev/flutter-website/ios/Runner.xcodeproj -target Runner -showBuildSettings</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#0 _ProcessImpl._runAndWait (dart:io-patch/process_patch.dart:485)
#1 _runNonInteractiveProcessSync (dart:io-patch/process_patch.dart:631)
#2 Process.runSync (dart:io-patch/process_patch.dart:66)
#3 LocalProcessManager.runSync (package:process/src/interface/local_process_manager.dart:83)
#4 _runWithLoggingSync (package:flutter_tools/src/base/process.dart:318)
#5 runCheckedSync (package:flutter_tools/src/base/process.dart:277)
#6 XcodeProjectInterpreter.getBuildSettings (package:flutter_tools/src/ios/xcodeproj.dart:99)
#7 CocoaPods.setupPodfile (package:flutter_tools/src/ios/cocoapods.dart:114)
#8 injectPlugins (package:flutter_tools/src/plugins.dart:246)
#9 FlutterProject.ensureReadyForPlatformSpecificTooling (package:flutter_tools/src/project.dart:62)
#10 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:278)
<asynchronous suspension>
#11 FlutterCommand.run (package:flutter_tools/src/runner/flutter_command.dart:228)
<asynchronous suspension>
#12 CommandRunner.runCommand (package:args/command_runner.dart:194)
<asynchronous suspension>
#13 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:286)
<asynchronous suspension>
#14 CommandRunner.run.<anonymous closure> (package:args/command_runner.dart:109)
#15 new Future.sync (dart:async/future.dart:222)
#16 CommandRunner.run (package:args/command_runner.dart:109)
#17 FlutterCommandRunner.run (package:flutter_tools/src/runner/flutter_command_runner.dart:166)
#18 run.<anonymous closure> (package:flutter_tools/runner.dart:90)
<asynchronous suspension>
#19 AppContext._run (package:flutter_tools/src/base/context.dart:76)
<asynchronous suspension>
#20 AppContext.runInZone.<anonymous closure> (package:flutter_tools/src/base/context.dart:66)
#21 _rootRun (dart:async/zone.dart:1126)
#22 _CustomZone.run (dart:async/zone.dart:1023)
#23 runZoned (dart:async/zone.dart:1501)
#24 AppContext.runInZone (package:flutter_tools/src/base/context.dart:65)
#25 run (package:flutter_tools/runner.dart:61)
<asynchronous suspension>
#26 main (package:flutter_tools/executable.dart:48)
<asynchronous suspension>
#27 main (file:///Users/filiph/dev/flutter/packages/flutter_tools/bin/flutter_tools.dart:16)
#28 _startIsolate.<anonymous closure> (dart:isolate-patch/dart:isolate/isolate_patch.dart:277)
#29 _RawReceivePortImpl._handleMessage (dart:isolate-patch/dart:isolate/isolate_patch.dart:165)"><pre class="notranslate"><code class="notranslate">#0 _ProcessImpl._runAndWait (dart:io-patch/process_patch.dart:485)
#1 _runNonInteractiveProcessSync (dart:io-patch/process_patch.dart:631)
#2 Process.runSync (dart:io-patch/process_patch.dart:66)
#3 LocalProcessManager.runSync (package:process/src/interface/local_process_manager.dart:83)
#4 _runWithLoggingSync (package:flutter_tools/src/base/process.dart:318)
#5 runCheckedSync (package:flutter_tools/src/base/process.dart:277)
#6 XcodeProjectInterpreter.getBuildSettings (package:flutter_tools/src/ios/xcodeproj.dart:99)
#7 CocoaPods.setupPodfile (package:flutter_tools/src/ios/cocoapods.dart:114)
#8 injectPlugins (package:flutter_tools/src/plugins.dart:246)
#9 FlutterProject.ensureReadyForPlatformSpecificTooling (package:flutter_tools/src/project.dart:62)
#10 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:278)
<asynchronous suspension>
#11 FlutterCommand.run (package:flutter_tools/src/runner/flutter_command.dart:228)
<asynchronous suspension>
#12 CommandRunner.runCommand (package:args/command_runner.dart:194)
<asynchronous suspension>
#13 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:286)
<asynchronous suspension>
#14 CommandRunner.run.<anonymous closure> (package:args/command_runner.dart:109)
#15 new Future.sync (dart:async/future.dart:222)
#16 CommandRunner.run (package:args/command_runner.dart:109)
#17 FlutterCommandRunner.run (package:flutter_tools/src/runner/flutter_command_runner.dart:166)
#18 run.<anonymous closure> (package:flutter_tools/runner.dart:90)
<asynchronous suspension>
#19 AppContext._run (package:flutter_tools/src/base/context.dart:76)
<asynchronous suspension>
#20 AppContext.runInZone.<anonymous closure> (package:flutter_tools/src/base/context.dart:66)
#21 _rootRun (dart:async/zone.dart:1126)
#22 _CustomZone.run (dart:async/zone.dart:1023)
#23 runZoned (dart:async/zone.dart:1501)
#24 AppContext.runInZone (package:flutter_tools/src/base/context.dart:65)
#25 run (package:flutter_tools/runner.dart:61)
<asynchronous suspension>
#26 main (package:flutter_tools/executable.dart:48)
<asynchronous suspension>
#27 main (file:///Users/filiph/dev/flutter/packages/flutter_tools/bin/flutter_tools.dart:16)
#28 _startIsolate.<anonymous closure> (dart:isolate-patch/dart:isolate/isolate_patch.dart:277)
#29 _RawReceivePortImpl._handleMessage (dart:isolate-patch/dart:isolate/isolate_patch.dart:165)
</code></pre></div>
<h3 dir="auto">flutter doctor</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel master, v0.1.3-pre.19, on Mac OS X 10.13.3 17D102, locale en-US)
• Flutter version 0.1.3-pre.19 at /Users/filiph/dev/flutter
• Framework revision 2337ddef0b (2 days ago), 2018-03-06 22:03:42 -0800
• Engine revision 24cf8ebd86
• Dart version 2.0.0-dev.33.0.flutter-b5b8080b2c
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.2)
• Android SDK at /Users/filiph/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.2
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
• ios-deploy 1.9.2
• CocoaPods version 1.4.0
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] IntelliJ IDEA Community Edition (version 2017.3.3)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 20.0.3
• Dart plugin version 173.4127.31
[✓] VS Code (version 1.20.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Dart Code extension version 2.9.2
[!] Connected devices
! No devices available
! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel master, v0.1.3-pre.19, on Mac OS X 10.13.3 17D102, locale en-US)
• Flutter version 0.1.3-pre.19 at /Users/filiph/dev/flutter
• Framework revision 2337ddef0b (2 days ago), 2018-03-06 22:03:42 -0800
• Engine revision 24cf8ebd86
• Dart version 2.0.0-dev.33.0.flutter-b5b8080b2c
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.2)
• Android SDK at /Users/filiph/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.2
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
• ios-deploy 1.9.2
• CocoaPods version 1.4.0
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] IntelliJ IDEA Community Edition (version 2017.3.3)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin version 20.0.3
• Dart plugin version 173.4127.31
[✓] VS Code (version 1.20.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Dart Code extension version 2.9.2
[!] Connected devices
! No devices available
! Doctor found issues in 1 category.
</code></pre></div> | <p dir="auto">The flutter/website build is broken on Travis. It looks to be broken by something external (the change that triggered the build is a single character change in the website repo). The build clones the latest <code class="notranslate">flutter/flutter</code> <code class="notranslate">master</code> code and runs <code class="notranslate">flutter analyze</code> on some code.</p>
<p dir="auto">The last working build was after <a href="https://github.com/flutter/website/commit/b3a32da3e9e37ec5576147301f734aa0c5f67f57">this commit</a> (to website) and analyzed fine:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Using Dart version:
Dart VM version: 2.0.0-dev.32.0.flutter-ee15c8eb68 (Thu Mar 1 22:39:39 2018 +0000) on "linux_x64"
Running "flutter packages get" in website...
Run flutter packages get on _includes/code/animation/animate1
Running "flutter packages get" in animate1...
Run flutter analyze on _includes/code/animation/animate1
Analyzing /home/travis/build/flutter/website/_includes/code/animation/animate1/main.dart...
No issues found!
Ran in 6.0s"><pre lang="text" class="notranslate"><code class="notranslate">Using Dart version:
Dart VM version: 2.0.0-dev.32.0.flutter-ee15c8eb68 (Thu Mar 1 22:39:39 2018 +0000) on "linux_x64"
Running "flutter packages get" in website...
Run flutter packages get on _includes/code/animation/animate1
Running "flutter packages get" in animate1...
Run flutter analyze on _includes/code/animation/animate1
Analyzing /home/travis/build/flutter/website/_includes/code/animation/animate1/main.dart...
No issues found!
Ran in 6.0s
</code></pre></div>
<p dir="auto">Then when <a href="https://github.com/flutter/website/commit/c81b7c2c5fc674f94c518153e2f2d8d9d86c1454">this commit</a> (to website) was pushed and flutter cloned for its build, it failed with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Using Dart version:
Dart VM version: 2.0.0-dev.33.0.flutter-b5b8080b2c (Tue Mar 6 14:14:54 2018 +0000) on "linux_x64"
Running "flutter packages get" in website...
Run flutter packages get on _includes/code/animation/animate1
Running "flutter packages get" in animate1...
Run flutter analyze on _includes/code/animation/animate1
Analyzing /home/travis/build/flutter/website/_includes/code/animation/animate1/main.dart...
No dart files found at: /home/travis/build/flutter/website/_includes/code/animation/animate1/main.dart
(Ran in 0.3s)
The command "./tool/travis.sh" exited with 3."><pre lang="text" class="notranslate"><code class="notranslate">Using Dart version:
Dart VM version: 2.0.0-dev.33.0.flutter-b5b8080b2c (Tue Mar 6 14:14:54 2018 +0000) on "linux_x64"
Running "flutter packages get" in website...
Run flutter packages get on _includes/code/animation/animate1
Running "flutter packages get" in animate1...
Run flutter analyze on _includes/code/animation/animate1
Analyzing /home/travis/build/flutter/website/_includes/code/animation/animate1/main.dart...
No dart files found at: /home/travis/build/flutter/website/_includes/code/animation/animate1/main.dart
(Ran in 0.3s)
The command "./tool/travis.sh" exited with 3.
</code></pre></div> | 1 |
<p dir="auto">Request parsing does not verify validity of Host header, in particular it can contain spaces.<br>
This leads to weird possibilities like:</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package main
import (
"bufio"
"bytes"
"os"
"net/http"
)
func main() {
data := []byte("GET http:/1.1 HTTP/1.1\nHost: host.com/somethingelse HTTP\n\n")
r, err := http.ReadRequest(bufio.NewReader(bytes.NewReader(data)))
if err != nil {
panic(err)
}
r.WriteProxy(os.Stdout)
}"><pre class="notranslate"><span class="pl-k">package</span> main
<span class="pl-k">import</span> (
<span class="pl-s">"bufio"</span>
<span class="pl-s">"bytes"</span>
<span class="pl-s">"os"</span>
<span class="pl-s">"net/http"</span>
)
<span class="pl-k">func</span> <span class="pl-en">main</span>() {
<span class="pl-s1">data</span> <span class="pl-c1">:=</span> []<span class="pl-smi">byte</span>(<span class="pl-s">"GET http:/1.1 HTTP/1.1<span class="pl-cce">\n</span>Host: host.com/somethingelse HTTP<span class="pl-cce">\n</span><span class="pl-cce">\n</span>"</span>)
<span class="pl-s1">r</span>, <span class="pl-s1">err</span> <span class="pl-c1">:=</span> <span class="pl-s1">http</span>.<span class="pl-en">ReadRequest</span>(<span class="pl-s1">bufio</span>.<span class="pl-en">NewReader</span>(<span class="pl-s1">bytes</span>.<span class="pl-en">NewReader</span>(<span class="pl-s1">data</span>)))
<span class="pl-k">if</span> <span class="pl-s1">err</span> <span class="pl-c1">!=</span> <span class="pl-c1">nil</span> {
<span class="pl-en">panic</span>(<span class="pl-s1">err</span>)
}
<span class="pl-s1">r</span>.<span class="pl-en">WriteProxy</span>(<span class="pl-s1">os</span>.<span class="pl-c1">Stdout</span>)
}</pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="GET http://host.com/somethingelse HTTP/1.1 HTTP/1.1
Host: host.com/somethingelse HTTP
User-Agent: Go 1.1 package http"><pre class="notranslate"><code class="notranslate">GET http://host.com/somethingelse HTTP/1.1 HTTP/1.1
Host: host.com/somethingelse HTTP
User-Agent: Go 1.1 package http
</code></pre></div>
<p dir="auto">which I guess can trick some other HTTP implementation.</p>
<p dir="auto">go version devel +a1fe3b5 Sat Jun 13 04:33:26 2015 +0000 linux/amd64</p> | <p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p>
<pre class="notranslate">Package net returns an internal error var when a connection was closed:
var errClosing = errors.New("use of closed network connection")
To check for that error, currently the error text has to be parsed. It would be much
better be able to check for a defined error type.</pre> | 0 |
<p dir="auto">just like sublime does</p> | <p dir="auto">Currently VS Code prevents opening a folder more than once which makes it impossible to work on a project in multiple windows (e.g. on multiple displays).</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bpasero/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bpasero">@bpasero</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dbaeumer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dbaeumer">@dbaeumer</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/egamma/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/egamma">@egamma</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexandrudima/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexandrudima">@alexandrudima</a> please raise any obstacles and issues you might foresee with this request.</p>
<p dir="auto">Issues found so far:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> we use the workspace path as identifier to communicate back from debug target to debug host</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> we need to verify cross platform that there is no code causing issues when running over the same root folder (e.g. file watchers)</li>
</ul>
<hr>
<p dir="auto"><strong>Please note:</strong> Initially I've created this feature request for a specific use case: enable debugging of multiple processes.<br>
In the meantime, debugging of multiple processes has become possible without the need for opening a folder more than once (see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="182017682" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/13426" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/13426/hovercard" href="https://github.com/microsoft/vscode/issues/13426">#13426</a>). But instead of closing this item (as no longer necessary), I've repurposed it by removing the specific debug use case.<br>
For transparency you can find the original comment below:</p>
<blockquote>
<p dir="auto">Currently it is not possible to debug more than one process from a single VS Code project (= window)<br>
because VS Code prevents opening a folder more than once.</p>
<p dir="auto">The workaround is to open VS code on a subfolder within the original folder, which means to restructure the project (which is not desirable).</p>
<p dir="auto">This feature request asks for lifting the constraint and allowing to open a project folder multiple times.</p>
</blockquote> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=fabio" rel="nofollow">Fabio Grassi</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2789?redirect=false" rel="nofollow">SPR-2789</a></strong> and commented</p>
<p dir="auto">In version 1.2.8 UrlFilenameViewController maps the url "/products/view.html" to "view" while version 2.0 maps the same url to "products/view".</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 final</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398060536" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6061" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6061/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6061">#6061</a> UrlFilenameViewController does not allow for nested view files (<em><strong>"depends on"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398074123" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7674" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7674/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7674">#7674</a> UrlFilenameViewController incorrectly parses the view name from the path - makes incorrect statement to such in javadoc as well (<em><strong>"is duplicated by"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=boolsam" rel="nofollow">kh sam</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8435?redirect=false" rel="nofollow">SPR-8435</a></strong> and commented</p>
<p dir="auto">Hello<br>
I have this exception when use spring (all version) with the new version of Quartz (2.0.0) :</p>
<p dir="auto">java.lang.IncompatibleClassChangeError: class org.springframework.scheduling.quartz.JobDetailBean has interface org.quartz.JobDetail as super class<br>
at java.lang.ClassLoader.defineClass1(Native Method)<br>
at java.lang.ClassLoader.defineClass(ClassLoader.java:616)<br>
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)<br>
at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)<br>
at java.net.URLClassLoader.access$000(URLClassLoader.java:56)<br>
at java.net.URLClassLoader$1.run(URLClassLoader.java:195)<br>
at java.security.AccessController.doPrivileged(Native Method)<br>
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)<br>
at java.lang.ClassLoader.loadClass(ClassLoader.java:303)<br>
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)<br>
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)<br>
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:316)<br>
at java.lang.Class.forName0(Native Method)<br>
at java.lang.Class.forName(Class.java:247)<br>
at org.springframework.util.ClassUtils.forName(ClassUtils.java:88)<br>
at org.springframework.beans.factory.support.BeanDefinitionReaderUtils.createBeanDefinition(BeanDefinitionReaderUtils.java:65)<br>
at org.springframework.beans.factory.xml.DefaultXmlBeanDefinitionParser.parseBeanDefinitionElement(DefaultXmlBeanDefinitionParser.java:369)<br>
at org.springframework.beans.factory.xml.DefaultXmlBeanDefinitionParser.parseBeanDefinitionElement(DefaultXmlBeanDefinitionParser.java:335)<br>
at org.springframework.beans.factory.xml.DefaultXmlBeanDefinitionParser.parseBeanDefinitions(DefaultXmlBeanDefinitionParser.java:266)<br>
at org.springframework.beans.factory.xml.DefaultXmlBeanDefinitionParser.registerBeanDefinitions(DefaultXmlBeanDefinitionParser.java:186)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions(XmlBeanDefinitionReader.java:246)<br>
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:163)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:125)<br>
at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:141)<br>
at org.springframework.context.support.AbstractXmlApplicationContext.loadBeanDefinitions(AbstractXmlApplicationContext.java:113)<br>
at org.springframework.context.support.AbstractXmlApplicationContext.loadBeanDefinitions(AbstractXmlApplicationContext.java:81)<br>
at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:89)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:268)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:81)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:66)<br>
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br>
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)<br>
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)<br>
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)<br>
at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)<br>
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:75)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:669)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:329)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:226)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:147)<br>
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:275)<br>
at org.springframework.beans.factory.access.SingletonBeanFactoryLocator.initializeDefinition(SingletonBeanFactoryLocator.java:502)<br>
at org.springframework.beans.factory.access.SingletonBeanFactoryLocator.useBeanFactory(SingletonBeanFactoryLocator.java:386)<br>
.<br>
.<br>
.</p>
<p dir="auto">There is an incompatibility between spring all version and new Version of QUARTZ because all version of spring use an super class</p>
<p dir="auto">public class JobDetailBean extends JobDetail {<br>
}</p>
<p dir="auto">and "JobDetail" in the new version of Quartz is an Interface !!!</p>
<p dir="auto">I'm really stuck, is there a new verion that solves this PB,</p>
<p dir="auto">thanks</p>
<hr>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398111959" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12923" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12923/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12923">#12923</a> Support Quartz 2.0.x (<em><strong>"duplicates"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398113836" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13225" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13225/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13225">#13225</a> Spring should support Quartz 2.0 CronTrigger interface</li>
</ul> | 0 |
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/counting-cards#?solution=var%20count%20%3D%200%3B%0A%0Afunction%20cc%28card%29%20%7B%0A%20%20%2F%2F%20Only%20change%20code%20below%20this%20line%0A%20%20switch%28card%29%7B%0A%20%20%20%20case%202%3A%0A%20%20%20%20case%203%3A%0A%20%20%20%20case%204%3A%0A%20%20%20%20case%205%3A%0A%20%20%20%20case%206%3A%0A%20%20%20%20%20%20count%20%2B%3D%201%3B%0A%20%20%20%20%20%20break%3B%0A%20%20%20%20case%207%3A%0A%20%20%20%20case%208%3A%0A%20%20%20%20case%209%3A%0A%20%20%20%20%20%20count%20%3D%200%3B%0A%20%20%20%20%20%20break%3B%0A%20%20%20%20case%2010%3A%0A%20%20%20%20case%20'J'%3A%0A%20%20%20%20case%20'Q'%3A%0A%20%20%20%20case%20'K'%3A%0A%20%20%20%20case%20'A'%3A%0A%20%20%20%20%20%20count%20-%3D%201%3B%0A%20%20%20%20%20%20break%3B%0A%20%20%7D%0A%20%20%0A%20%20if%28count%20%3D%3D%205%29%7B%0A%20%20%20%20return%20%225%20Bet%22%3B%0A%20%20%7D%0A%20%20%0A%20%20else%20if%20%28count%20%3D%3D%3D%200%29%7B%0A%20%20%20%20return%20%220%20Hold%22%3B%0A%20%20%7D%0A%20%20%0A%20%20else%20if%20%28count%20%3D%3D%20-5%29%7B%0A%20%20%20%20return%20%22-5%20Hold%22%3B%0A%20%20%7D%0A%20%20%0A%20%20else%7B%0A%20%20%20%20return%20%22-1%20Hold%22%3B%0A%20%20%7D%0A%20%20%0A%20%20%0A%20%20%2F%2F%20Only%20change%20code%20above%20this%20line%0A%7D%0A%0A%2F%2F%20Add%2Fremove%20calls%20to%20test%20your%20function.%0A%2F%2F%20Note%3A%20Only%20the%20last%20will%20display%0Acc%282%29%3B%20cc%283%29%3B%20cc%287%29%3B%20cc%28'K'%29%3B%20cc%28'A'%29%3B%0A" rel="nofollow">Counting Cards</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.103 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var count = 0;
function cc(card) {
// Only change code below this line
switch(card){
case 2:
case 3:
case 4:
case 5:
case 6:
count += 1;
break;
case 7:
case 8:
case 9:
count = 0;
break;
case 10:
case 'J':
case 'Q':
case 'K':
case 'A':
count -= 1;
break;
}
if(count == 5){
return "5 Bet";
}
else if (count === 0){
return "0 Hold";
}
else if (count == -5){
return "-5 Hold";
}
else{
return "-1 Hold";
}
// Only change code above this line
}
// Add/remove calls to test your function.
// Note: Only the last will display
cc(2); cc(3); cc(7); cc('K'); cc('A');
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">count</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-s1">card</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c">// Only change code below this line</span>
<span class="pl-k">switch</span><span class="pl-kos">(</span><span class="pl-s1">card</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">case</span> <span class="pl-c1">2</span>:
<span class="pl-k">case</span> <span class="pl-c1">3</span>:
<span class="pl-k">case</span> <span class="pl-c1">4</span>:
<span class="pl-k">case</span> <span class="pl-c1">5</span>:
<span class="pl-k">case</span> <span class="pl-c1">6</span>:
<span class="pl-s1">count</span> <span class="pl-c1">+=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span>
<span class="pl-k">break</span><span class="pl-kos">;</span>
<span class="pl-k">case</span> <span class="pl-c1">7</span>:
<span class="pl-k">case</span> <span class="pl-c1">8</span>:
<span class="pl-k">case</span> <span class="pl-c1">9</span>:
<span class="pl-s1">count</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-k">break</span><span class="pl-kos">;</span>
<span class="pl-k">case</span> <span class="pl-c1">10</span>:
<span class="pl-k">case</span> <span class="pl-s">'J'</span>:
<span class="pl-k">case</span> <span class="pl-s">'Q'</span>:
<span class="pl-k">case</span> <span class="pl-s">'K'</span>:
<span class="pl-k">case</span> <span class="pl-s">'A'</span>:
<span class="pl-s1">count</span> <span class="pl-c1">-=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span>
<span class="pl-k">break</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">count</span> <span class="pl-c1">==</span> <span class="pl-c1">5</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s">"5 Bet"</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">count</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-k">return</span> <span class="pl-s">"0 Hold"</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">count</span> <span class="pl-c1">==</span> <span class="pl-c1">-</span><span class="pl-c1">5</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s">"-5 Hold"</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span><span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s">"-1 Hold"</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">// Only change code above this line</span>
<span class="pl-kos">}</span>
<span class="pl-c">// Add/remove calls to test your function.</span>
<span class="pl-c">// Note: Only the last will display</span>
<span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-c1">3</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-c1">7</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-s">'K'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-s">'A'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">I don't understand how my code solves the problem. Yet it solves all the challenges required to pass the waypoint. I sort of gamed it. I don't believe my code is right. So this waypoint is probably bugged and needs to be reframed. What do you think, guys?</p> | <p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/counting-cards#?solution=var%20count%20%3D%200%3B%0A%0Afunction%20cc%28card%29%20%7B%0A%20%20%2F%2F%20Only%20change%20code%20below%20this%20line%0A%20%20var%20bet%20%3D%20''%3B%0A%20%20if%28card%3C%3D6%29%7B%0A%20%20%20%20count%20%2B%2B%3B%0A%20%20%7D%20else%20if%20%28!%28card%3C%3D9%29%29%7B%0A%20%20%20%20%20%20count%20--%3B%0A%20%20%7D%0A%20%20bet%20%3D%20count%20%3E%200%3F%20'%20Bet'%3A'%20Hold'%3B%0A%20%20return%20count%20%2B%20bet%3B%0A%20%20%2F%2F%20Only%20change%20code%20above%20this%20line%0A%7D%0A%0A%2F%2F%20Add%2Fremove%20calls%20to%20test%20your%20function.%0A%2F%2F%20Note%3A%20Only%20the%20last%20will%20display%0Acc%282%29%3B%20cc%283%29%3B%20cc%287%29%3B%20cc%28'K'%29%3B%20cc%28'A'%29%3B%0A" rel="nofollow">Counting Cards</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var count = 0;
function cc(card) {
// Only change code below this line
var bet = '';
if(card<=6){
count ++;
} else if (!(card<=9)){
count --;
}
bet = count > 0? ' Bet':' Hold';
return count + bet;
// Only change code above this line
}
// Add/remove calls to test your function.
// Note: Only the last will display
cc(2); cc(3); cc(7); cc('K'); cc('A');
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">count</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-s1">card</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c">// Only change code below this line</span>
<span class="pl-k">var</span> <span class="pl-s1">bet</span> <span class="pl-c1">=</span> <span class="pl-s">''</span><span class="pl-kos">;</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">card</span><span class="pl-c1"><=</span><span class="pl-c1">6</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">count</span> <span class="pl-c1">++</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-kos">(</span><span class="pl-s1">card</span><span class="pl-c1"><=</span><span class="pl-c1">9</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">count</span> <span class="pl-c1">--</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-s1">bet</span> <span class="pl-c1">=</span> <span class="pl-s1">count</span> <span class="pl-c1">></span> <span class="pl-c1">0</span>? <span class="pl-s">' Bet'</span>:<span class="pl-s">' Hold'</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">count</span> <span class="pl-c1">+</span> <span class="pl-s1">bet</span><span class="pl-kos">;</span>
<span class="pl-c">// Only change code above this line</span>
<span class="pl-kos">}</span>
<span class="pl-c">// Add/remove calls to test your function.</span>
<span class="pl-c">// Note: Only the last will display</span>
<span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-c1">3</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-c1">7</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-s">'K'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">cc</span><span class="pl-kos">(</span><span class="pl-s">'A'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h1 dir="auto">Ambiguity for what to do when <code class="notranslate">card</code> is 7, 8, or 9</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6234475/12858427/669845aa-cc0d-11e5-94ef-9e38c7503feb.png"><img src="https://cloud.githubusercontent.com/assets/6234475/12858427/669845aa-cc0d-11e5-94ef-9e38c7503feb.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">From this, campers seem pretty evenly split between thinking that <code class="notranslate">count</code> should be <em>reset</em> to <code class="notranslate">0</code> or simply <em>should not be changed</em>.<br>
The only test case is:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6234475/12858472/a0075ce0-cc0d-11e5-9d33-b4b4602a0b0d.png"><img src="https://cloud.githubusercontent.com/assets/6234475/12858472/a0075ce0-cc0d-11e5-9d33-b4b4602a0b0d.png" alt="image" style="max-width: 100%;"></a><br>
Which will pass in either case.</p>
<p dir="auto">This means that you can accomplish the task regardless of how you interpret the instructions, but has been leading to some confusion for people asking for help.</p> | 1 |
<h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">I run ng new progect:</p>
<p dir="auto">npm ERR! cb() never called!</p>
<p dir="auto">npm ERR! This is an error with npm itself. Please report this error at:<br>
npm ERR! <a href="https://github.com/npm/cli/issues">https://github.com/npm/cli/issues</a></p>
<p dir="auto">npm ERR! A complete log of this run can be found in:<br>
npm ERR! C:\Users\USER\AppData\Local\npm-cache_logs\2021-05-13T21_47_12_371Z-debug.log<br>
<g-emoji class="g-emoji" alias="heavy_multiplication_x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2716.png">✖</g-emoji> Package install failed, see above.<br>
The Schematic workflow failed. See above.</p>
<p dir="auto">C:\Users\USER\AppData\Local\npm-cache_logs\2021-05-13T21_47_12_371Z-debug.log CONTENT:</p>
<p dir="auto">0 verbose cli [<br>
0 verbose cli 'C:\Program Files\nodejs\node.exe',<br>
0 verbose cli 'C:\Users\Cristhofer\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js',<br>
0 verbose cli 'install',<br>
0 verbose cli '--quiet'<br>
0 verbose cli ]<br>
1 info using [email protected]<br>
2 info using [email protected]<br>
3 timing npm:load:whichnode Completed in 4ms<br>
4 timing config:load:defaults Completed in 3ms<br>
5 timing config:load:file:C:\Users\Cristhofer\AppData\Roaming\npm\node_modules\npm\npmrc Completed in 2ms<br>
6 timing config:load:builtin Completed in 2ms<br>
7 timing config:load:cli Completed in 4ms<br>
8 timing config:load:env Completed in 1ms<br>
9 timing config:load:file:F:\Users\Cristhofer\Documents\GitHub\labRIA.npmrc Completed in 1ms<br>
10 timing config:load:project Completed in 2ms<br>
11 timing config:load:file:C:\Users\Cristhofer.npmrc Completed in 0ms<br>
12 timing config:load:user Completed in 0ms<br>
13 timing config:load:file:C:\Users\Cristhofer\AppData\Roaming\npm\etc\npmrc Completed in 0ms<br>
14 timing config:load:global Completed in 1ms<br>
15 timing config:load:validate Completed in 0ms<br>
16 timing config:load:credentials Completed in 2ms<br>
17 timing config:load:setEnvs Completed in 2ms<br>
18 timing config:load Completed in 17ms<br>
19 timing npm:load:configload Completed in 17ms<br>
20 timing npm:load:setTitle Completed in 1ms<br>
21 timing npm:load:setupLog Completed in 1ms<br>
22 timing npm:load:cleanupLog Completed in 4ms<br>
23 timing npm:load:configScope Completed in 0ms<br>
24 timing npm:load:projectScope Completed in 2ms<br>
25 timing npm:load Completed in 29ms<br>
26 timing config:load:flatten Completed in 4ms<br>
27 timing arborist:ctor Completed in 2ms<br>
28 timing arborist:ctor Completed in 1ms<br>
29 timing idealTree:init Completed in 40ms<br>
30 timing idealTree:userRequests Completed in 0ms<br>
31 silly idealTree buildDeps<br>
32 silly fetch manifest @angular/animations@~12.0.0<br>
33 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fanimations" rel="nofollow">https://registry.npmjs.org/@angular%2fanimations</a> 2651ms<br>
34 silly fetch manifest @angular/core@~12.0.0<br>
35 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcore" rel="nofollow">https://registry.npmjs.org/@angular%2fcore</a> 2297ms<br>
36 silly fetch manifest rxjs@~6.6.0<br>
37 http fetch GET 304 <a href="https://registry.npmjs.org/rxjs" rel="nofollow">https://registry.npmjs.org/rxjs</a> 123ms (from cache)<br>
38 silly fetch manifest zone.js@~0.11.4<br>
39 http fetch GET 200 <a href="https://registry.npmjs.org/zone.js" rel="nofollow">https://registry.npmjs.org/zone.js</a> 586ms<br>
40 silly fetch manifest @angular/common@~12.0.0<br>
41 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcommon" rel="nofollow">https://registry.npmjs.org/@angular%2fcommon</a> 2319ms<br>
42 silly fetch manifest @angular/compiler@~12.0.0<br>
43 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcompiler" rel="nofollow">https://registry.npmjs.org/@angular%2fcompiler</a> 2343ms<br>
44 silly fetch manifest @angular/forms@~12.0.0<br>
45 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fforms" rel="nofollow">https://registry.npmjs.org/@angular%2fforms</a> 2521ms<br>
46 silly fetch manifest @angular/platform-browser@~12.0.0<br>
47 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fplatform-browser" rel="nofollow">https://registry.npmjs.org/@angular%2fplatform-browser</a> 2545ms<br>
48 silly fetch manifest @angular/platform-browser-dynamic@~12.0.0<br>
49 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> 2621ms<br>
50 silly fetch manifest @angular/router@~12.0.0<br>
51 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2frouter" rel="nofollow">https://registry.npmjs.org/@angular%2frouter</a> 2802ms<br>
52 silly fetch manifest tslib@^2.1.0<br>
53 http fetch GET 304 <a href="https://registry.npmjs.org/tslib" rel="nofollow">https://registry.npmjs.org/tslib</a> 106ms (from cache)<br>
54 silly fetch manifest @angular-devkit/build-angular@~12.0.0<br>
55 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> 5311ms<br>
56 silly fetch manifest @angular/compiler-cli@~12.0.0<br>
57 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fcompiler-cli" rel="nofollow">https://registry.npmjs.org/@angular%2fcompiler-cli</a> 3110ms<br>
58 silly fetch manifest typescript@~4.2.3<br>
59 http fetch GET 200 <a href="https://registry.npmjs.org/typescript" rel="nofollow">https://registry.npmjs.org/typescript</a> 22225ms<br>
60 silly fetch manifest @angular/localize@^12.0.0-next<br>
61 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2flocalize" rel="nofollow">https://registry.npmjs.org/@angular%2flocalize</a> 1408ms<br>
62 silly fetch manifest @angular/service-worker@^12.0.0-next<br>
63 http fetch GET 200 <a href="https://registry.npmjs.org/@angular%2fservice-worker" rel="nofollow">https://registry.npmjs.org/@angular%2fservice-worker</a> 3559ms<br>
64 silly fetch manifest karma@~6.3.0<br>
65 http fetch GET 200 <a href="https://registry.npmjs.org/karma" rel="nofollow">https://registry.npmjs.org/karma</a> 1955ms<br>
66 silly fetch manifest ng-packagr@^12.0.0-next<br>
67 http fetch GET 200 <a href="https://registry.npmjs.org/ng-packagr" rel="nofollow">https://registry.npmjs.org/ng-packagr</a> 2288ms<br>
68 silly fetch manifest protractor@^7.0.0<br>
69 http fetch GET 200 <a href="https://registry.npmjs.org/protractor" rel="nofollow">https://registry.npmjs.org/protractor</a> 561ms<br>
70 silly fetch manifest tailwindcss@^2.0.0<br>
71 http fetch GET 200 <a href="https://registry.npmjs.org/tailwindcss" rel="nofollow">https://registry.npmjs.org/tailwindcss</a> 1610ms<br>
72 silly fetch manifest autoprefixer@^10.0.2<br>
73 http fetch GET 200 <a href="https://registry.npmjs.org/autoprefixer" rel="nofollow">https://registry.npmjs.org/autoprefixer</a> 967ms<br>
74 silly fetch manifest postcss@^8.1.0<br>
75 http fetch GET 200 <a href="https://registry.npmjs.org/postcss" rel="nofollow">https://registry.npmjs.org/postcss</a> 1092ms<br>
76 silly fetch manifest tslint@^6.1.0<br>
77 http fetch GET 200 <a href="https://registry.npmjs.org/tslint" rel="nofollow">https://registry.npmjs.org/tslint</a> 930ms<br>
78 silly fetch manifest @angular/cli@~12.0.0<br>
79 http fetch GET 304 <a href="https://registry.npmjs.org/@angular%2fcli" rel="nofollow">https://registry.npmjs.org/@angular%2fcli</a> 148ms (from cache)<br>
80 silly fetch manifest @types/jasmine@~3.6.0<br>
81 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fjasmine" rel="nofollow">https://registry.npmjs.org/@types%2fjasmine</a> 645ms<br>
82 silly fetch manifest @types/node@^12.11.1<br>
83 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fnode" rel="nofollow">https://registry.npmjs.org/@types%2fnode</a> 5354ms<br>
84 silly fetch manifest jasmine-core@~3.7.0<br>
85 http fetch GET 200 <a href="https://registry.npmjs.org/jasmine-core" rel="nofollow">https://registry.npmjs.org/jasmine-core</a> 236ms<br>
86 silly fetch manifest karma-chrome-launcher@~3.1.0<br>
87 http fetch GET 200 <a href="https://registry.npmjs.org/karma-chrome-launcher" rel="nofollow">https://registry.npmjs.org/karma-chrome-launcher</a> 166ms<br>
88 silly fetch manifest karma-coverage@~2.0.3<br>
89 http fetch GET 200 <a href="https://registry.npmjs.org/karma-coverage" rel="nofollow">https://registry.npmjs.org/karma-coverage</a> 252ms<br>
90 silly fetch manifest karma-jasmine@~4.0.0<br>
91 http fetch GET 200 <a href="https://registry.npmjs.org/karma-jasmine" rel="nofollow">https://registry.npmjs.org/karma-jasmine</a> 263ms<br>
92 silly fetch manifest karma-jasmine-html-reporter@^1.5.0<br>
93 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> 207ms<br>
94 silly placeDep ROOT @angular-devkit/[email protected] OK for: [email protected] want: ~12.0.0<br>
95 silly placeDep ROOT @angular/[email protected] OK for: @angular-devkit/[email protected] want: ^12.0.0-next<br>
96 silly placeDep ROOT @angular/[email protected] OK for: @angular/[email protected] want: 12.0.0<br>
97 silly placeDep ROOT [email protected] OK for: @angular/[email protected] want: >=4.2.3 <4.3<br>
98 silly placeDep ROOT @angular/[email protected] OK for: [email protected] want: ~12.0.0<br>
99 silly placeDep ROOT @angular/[email protected] OK for: @angular/[email protected] want: 12.0.0<br>
100 silly placeDep ROOT [email protected] OK for: @angular/[email protected] want: ^6.5.3<br>
101 silly placeDep ROOT [email protected] OK for: @angular/[email protected] want: ~0.11.4<br>
102 silly placeDep ROOT @angular/[email protected] OK for: [email protected] want: ~12.0.0<br>
103 silly placeDep ROOT @angular/[email protected] OK for: [email protected] want: ~12.0.0<br>
104 silly placeDep ROOT @angular/[email protected] OK for: [email protected] want: ~12.0.0<br>
105 silly placeDep ROOT @angular/[email protected] OK for: @angular/[email protected] want: 12.0.0<br>
106 silly placeDep ROOT @angular/[email protected] OK for: [email protected] want: ~12.0.0<br>
107 silly placeDep ROOT @angular/[email protected] OK for: [email protected] want: ~12.0.0<br>
108 silly placeDep ROOT @types/[email protected] OK for: [email protected] want: ~3.6.0<br>
109 silly placeDep ROOT @types/[email protected] OK for: [email protected] want: ^12.11.1<br>
110 silly placeDep ROOT [email protected] OK for: [email protected] want: ~3.7.0<br>
111 silly placeDep ROOT [email protected] OK for: [email protected] want: ~6.3.0<br>
112 silly placeDep ROOT [email protected] OK for: [email protected] want: ~3.1.0<br>
113 silly placeDep ROOT [email protected] OK for: [email protected] want: ~2.0.3<br>
114 silly placeDep ROOT [email protected] OK for: [email protected] want: ~4.0.0<br>
115 silly placeDep ROOT [email protected] OK for: [email protected] want: ^1.5.0<br>
116 silly placeDep ROOT [email protected] OK for: [email protected] want: ^2.1.0<br>
117 silly fetch manifest @angular-devkit/[email protected]<br>
118 silly fetch manifest @angular-devkit/[email protected]<br>
119 silly fetch manifest @angular-devkit/[email protected]<br>
120 silly fetch manifest @angular-devkit/[email protected]<br>
121 silly fetch manifest @babel/[email protected]<br>
122 silly fetch manifest @babel/[email protected]<br>
123 silly fetch manifest @babel/[email protected]<br>
124 silly fetch manifest @babel/[email protected]<br>
125 silly fetch manifest @babel/[email protected]<br>
126 silly fetch manifest @babel/[email protected]<br>
127 silly fetch manifest @babel/[email protected]<br>
128 silly fetch manifest @discoveryjs/[email protected]<br>
129 silly fetch manifest @jsdevtools/[email protected]<br>
130 silly fetch manifest @ngtools/[email protected]<br>
131 silly fetch manifest [email protected]<br>
132 silly fetch manifest [email protected]<br>
133 silly fetch manifest browserslist@^4.9.1<br>
134 silly fetch manifest [email protected]<br>
135 silly fetch manifest caniuse-lite@^1.0.30001032<br>
136 silly fetch manifest [email protected]<br>
137 silly fetch manifest [email protected]<br>
138 silly fetch manifest [email protected]<br>
139 silly fetch manifest [email protected]<br>
140 silly fetch manifest [email protected]<br>
141 silly fetch manifest [email protected]<br>
142 silly fetch manifest [email protected]<br>
143 silly fetch manifest [email protected]<br>
144 silly fetch manifest [email protected]<br>
145 silly fetch manifest [email protected]<br>
146 silly fetch manifest [email protected]<br>
147 silly fetch manifest [email protected]<br>
148 silly fetch manifest [email protected]<br>
149 silly fetch manifest [email protected]<br>
150 silly fetch manifest [email protected]<br>
151 silly fetch manifest [email protected]<br>
152 silly fetch manifest [email protected]<br>
153 silly fetch manifest [email protected]<br>
154 silly fetch manifest [email protected]<br>
155 silly fetch manifest [email protected]<br>
156 silly fetch manifest [email protected]<br>
157 silly fetch manifest [email protected]<br>
158 silly fetch manifest [email protected]<br>
159 silly fetch manifest [email protected]<br>
160 silly fetch manifest [email protected]<br>
161 silly fetch manifest [email protected]<br>
162 silly fetch manifest [email protected]<br>
163 silly fetch manifest [email protected]<br>
164 silly fetch manifest [email protected]<br>
165 silly fetch manifest [email protected]<br>
166 silly fetch manifest [email protected]<br>
167 silly fetch manifest [email protected]<br>
168 silly fetch manifest [email protected]<br>
169 silly fetch manifest [email protected]<br>
170 silly fetch manifest [email protected]<br>
171 silly fetch manifest [email protected]<br>
172 silly fetch manifest [email protected]<br>
173 silly fetch manifest [email protected]<br>
174 silly fetch manifest [email protected]<br>
175 silly fetch manifest [email protected]<br>
176 silly fetch manifest [email protected]<br>
177 silly fetch manifest [email protected]<br>
178 silly fetch manifest [email protected]<br>
179 silly fetch manifest [email protected]<br>
180 silly fetch manifest [email protected]<br>
181 silly fetch manifest [email protected]<br>
182 silly fetch manifest [email protected]<br>
183 silly fetch manifest @babel/core@^7.8.6<br>
184 silly fetch manifest @babel/types@^7.8.6<br>
185 silly fetch manifest reflect-metadata@^0.1.2<br>
186 silly fetch manifest minimist@^1.2.0<br>
187 silly fetch manifest [email protected]<br>
188 silly fetch manifest chokidar@^3.0.0<br>
189 silly fetch manifest convert-source-map@^1.5.1<br>
190 silly fetch manifest dependency-graph@^0.11.0<br>
191 silly fetch manifest magic-string@^0.25.0<br>
192 silly fetch manifest semver@^7.0.0<br>
193 silly fetch manifest source-map@^0.6.1<br>
194 silly fetch manifest sourcemap-codec@^1.4.8<br>
195 silly fetch manifest yargs@^16.2.0<br>
196 silly fetch manifest tslib@^1.9.0<br>
197 silly fetch manifest @angular-devkit/[email protected]<br>
198 silly fetch manifest @schematics/[email protected]<br>
199 silly fetch manifest @yarnpkg/[email protected]<br>
200 silly fetch manifest [email protected]<br>
201 silly fetch manifest [email protected]<br>
202 silly fetch manifest [email protected]<br>
203 silly fetch manifest [email protected]<br>
204 silly fetch manifest [email protected]<br>
205 silly fetch manifest [email protected]<br>
206 silly fetch manifest [email protected]<br>
207 silly fetch manifest [email protected]<br>
208 silly fetch manifest [email protected]<br>
209 silly fetch manifest body-parser@^1.19.0<br>
210 silly fetch manifest braces@^3.0.2<br>
211 silly fetch manifest chokidar@^3.4.2<br>
212 silly fetch manifest colors@^1.4.0<br>
213 silly fetch manifest connect@^3.7.0<br>
214 silly fetch manifest di@^0.0.1<br>
215 silly fetch manifest dom-serialize@^2.2.1<br>
216 silly fetch manifest glob@^7.1.6<br>
217 silly fetch manifest graceful-fs@^4.2.4<br>
218 silly fetch manifest http-proxy@^1.18.1<br>
219 silly fetch manifest isbinaryfile@^4.0.6<br>
220 silly fetch manifest lodash@^4.17.19<br>
221 silly fetch manifest log4js@^6.2.1<br>
222 silly fetch manifest mime@^2.4.5<br>
223 silly fetch manifest minimatch@^3.0.4<br>
224 silly fetch manifest qjobs@^1.2.0<br>
225 silly fetch manifest range-parser@^1.2.1<br>
226 silly fetch manifest rimraf@^3.0.2<br>
227 silly fetch manifest socket.io@^3.1.0<br>
228 silly fetch manifest [email protected]<br>
229 silly fetch manifest ua-parser-js@^0.7.23<br>
230 silly fetch manifest yargs@^16.1.1<br>
231 silly fetch manifest which@^1.2.1<br>
232 silly fetch manifest istanbul-lib-coverage@^3.0.0<br>
233 silly fetch manifest istanbul-lib-instrument@^4.0.1<br>
234 silly fetch manifest istanbul-lib-report@^3.0.0<br>
235 silly fetch manifest istanbul-lib-source-maps@^4.0.0<br>
236 silly fetch manifest istanbul-reports@^3.0.0<br>
237 http fetch GET 200 <a href="https://registry.npmjs.org/@discoveryjs%2fjson-ext" rel="nofollow">https://registry.npmjs.org/@discoveryjs%2fjson-ext</a> 2803ms<br>
238 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> 3503ms<br>
239 http fetch GET 200 <a href="https://registry.npmjs.org/circular-dependency-plugin" rel="nofollow">https://registry.npmjs.org/circular-dependency-plugin</a> 4469ms<br>
240 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> 4602ms<br>
241 http fetch GET 200 <a href="https://registry.npmjs.org/critters" rel="nofollow">https://registry.npmjs.org/critters</a> 5749ms<br>
242 http fetch GET 200 <a href="https://registry.npmjs.org/babel-loader" rel="nofollow">https://registry.npmjs.org/babel-loader</a> 6020ms<br>
243 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2ftemplate" rel="nofollow">https://registry.npmjs.org/@babel%2ftemplate</a> 6632ms<br>
244 http fetch GET 200 <a href="https://registry.npmjs.org/find-cache-dir" rel="nofollow">https://registry.npmjs.org/find-cache-dir</a> 7093ms<br>
245 http fetch GET 200 <a href="https://registry.npmjs.org/copy-webpack-plugin" rel="nofollow">https://registry.npmjs.org/copy-webpack-plugin</a> 7658ms<br>
246 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> 8074ms<br>
247 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fruntime" rel="nofollow">https://registry.npmjs.org/@babel%2fruntime</a> 9675ms<br>
248 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fcore" rel="nofollow">https://registry.npmjs.org/@babel%2fcore</a> 9821ms<br>
249 http fetch GET 200 <a href="https://registry.npmjs.org/browserslist" rel="nofollow">https://registry.npmjs.org/browserslist</a> 12169ms<br>
250 http fetch GET 200 <a href="https://registry.npmjs.org/less-loader" rel="nofollow">https://registry.npmjs.org/less-loader</a> 13207ms<br>
251 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils" rel="nofollow">https://registry.npmjs.org/loader-utils</a> 13213ms<br>
252 http fetch GET 200 <a href="https://registry.npmjs.org/license-webpack-plugin" rel="nofollow">https://registry.npmjs.org/license-webpack-plugin</a> 14108ms<br>
253 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> 14301ms<br>
254 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker" rel="nofollow">https://registry.npmjs.org/jest-worker</a> 14652ms<br>
255 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano" rel="nofollow">https://registry.npmjs.org/cssnano</a> 15036ms<br>
256 http fetch GET 200 <a href="https://registry.npmjs.org/css-loader" rel="nofollow">https://registry.npmjs.org/css-loader</a> 15452ms<br>
257 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-import" rel="nofollow">https://registry.npmjs.org/postcss-import</a> 15501ms<br>
258 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fpreset-env" rel="nofollow">https://registry.npmjs.org/@babel%2fpreset-env</a> 16827ms<br>
259 http fetch GET 200 <a href="https://registry.npmjs.org/raw-loader" rel="nofollow">https://registry.npmjs.org/raw-loader</a> 16836ms<br>
260 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-loader" rel="nofollow">https://registry.npmjs.org/postcss-loader</a> 17486ms<br>
261 http fetch GET 200 <a href="https://registry.npmjs.org/less" rel="nofollow">https://registry.npmjs.org/less</a> 17987ms<br>
262 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fgenerator" rel="nofollow">https://registry.npmjs.org/@babel%2fgenerator</a> 18459ms<br>
263 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-url-loader" rel="nofollow">https://registry.npmjs.org/resolve-url-loader</a> 18522ms<br>
264 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-loader" rel="nofollow">https://registry.npmjs.org/source-map-loader</a> 18674ms<br>
265 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-runtime" rel="nofollow">https://registry.npmjs.org/regenerator-runtime</a> 18828ms<br>
266 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> 19011ms<br>
267 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-support" rel="nofollow">https://registry.npmjs.org/source-map-support</a> 20334ms<br>
268 http fetch GET 200 <a href="https://registry.npmjs.org/text-table" rel="nofollow">https://registry.npmjs.org/text-table</a> 20657ms<br>
269 http fetch GET 200 <a href="https://registry.npmjs.org/tree-kill" rel="nofollow">https://registry.npmjs.org/tree-kill</a> 21183ms<br>
270 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> 21492ms<br>
271 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-preset-env" rel="nofollow">https://registry.npmjs.org/postcss-preset-env</a> 22074ms<br>
272 http fetch GET 200 <a href="https://registry.npmjs.org/stylus-loader" rel="nofollow">https://registry.npmjs.org/stylus-loader</a> 22331ms<br>
273 http fetch GET 200 <a href="https://registry.npmjs.org/terser-webpack-plugin" rel="nofollow">https://registry.npmjs.org/terser-webpack-plugin</a> 22370ms<br>
274 http fetch GET 200 <a href="https://registry.npmjs.org/stylus" rel="nofollow">https://registry.npmjs.org/stylus</a> 22830ms<br>
275 http fetch GET 200 <a href="https://registry.npmjs.org/sass-loader" rel="nofollow">https://registry.npmjs.org/sass-loader</a> 24264ms<br>
276 http fetch GET 200 <a href="https://registry.npmjs.org/style-loader" rel="nofollow">https://registry.npmjs.org/style-loader</a> 24850ms<br>
277 http fetch GET 200 <a href="https://registry.npmjs.org/reflect-metadata" rel="nofollow">https://registry.npmjs.org/reflect-metadata</a> 24888ms<br>
278 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-subresource-integrity" rel="nofollow">https://registry.npmjs.org/webpack-subresource-integrity</a> 24989ms<br>
279 http fetch GET 200 <a href="https://registry.npmjs.org/sass" rel="nofollow">https://registry.npmjs.org/sass</a> 25465ms<br>
280 http fetch GET 200 <a href="https://registry.npmjs.org/canonical-path" rel="nofollow">https://registry.npmjs.org/canonical-path</a> 26003ms<br>
281 http fetch GET 200 <a href="https://registry.npmjs.org/core-js" rel="nofollow">https://registry.npmjs.org/core-js</a> 26350ms<br>
282 http fetch GET 200 <a href="https://registry.npmjs.org/minimist" rel="nofollow">https://registry.npmjs.org/minimist</a> 26556ms<br>
283 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-merge" rel="nofollow">https://registry.npmjs.org/webpack-merge</a> 26754ms<br>
284 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-middleware" rel="nofollow">https://registry.npmjs.org/webpack-dev-middleware</a> 26935ms<br>
285 http fetch GET 200 <a href="https://registry.npmjs.org/dependency-graph" rel="nofollow">https://registry.npmjs.org/dependency-graph</a> 27030ms<br>
286 http fetch GET 200 <a href="https://registry.npmjs.org/convert-source-map" rel="nofollow">https://registry.npmjs.org/convert-source-map</a> 27100ms<br>
287 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serialize" rel="nofollow">https://registry.npmjs.org/dom-serialize</a> 27764ms<br>
288 http fetch GET 200 <a href="https://registry.npmjs.org/colors" rel="nofollow">https://registry.npmjs.org/colors</a> 28131ms<br>
289 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2ftypes" rel="nofollow">https://registry.npmjs.org/@babel%2ftypes</a> 28317ms<br>
290 http fetch GET 200 <a href="https://registry.npmjs.org/chokidar" rel="nofollow">https://registry.npmjs.org/chokidar</a> 28316ms<br>
291 http fetch GET 200 <a href="https://registry.npmjs.org/di" rel="nofollow">https://registry.npmjs.org/di</a> 28535ms<br>
292 http fetch GET 200 <a href="https://registry.npmjs.org/braces" rel="nofollow">https://registry.npmjs.org/braces</a> 28655ms<br>
293 http fetch GET 200 <a href="https://registry.npmjs.org/isbinaryfile" rel="nofollow">https://registry.npmjs.org/isbinaryfile</a> 29352ms<br>
294 http fetch GET 200 <a href="https://registry.npmjs.org/qjobs" rel="nofollow">https://registry.npmjs.org/qjobs</a> 29723ms<br>
295 http fetch GET 200 <a href="https://registry.npmjs.org/range-parser" rel="nofollow">https://registry.npmjs.org/range-parser</a> 29892ms<br>
296 http fetch GET 200 <a href="https://registry.npmjs.org/mime" rel="nofollow">https://registry.npmjs.org/mime</a> 29919ms<br>
297 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy" rel="nofollow">https://registry.npmjs.org/http-proxy</a> 30960ms<br>
298 http fetch GET 200 <a href="https://registry.npmjs.org/body-parser" rel="nofollow">https://registry.npmjs.org/body-parser</a> 31058ms<br>
299 http fetch GET 200 <a href="https://registry.npmjs.org/ua-parser-js" rel="nofollow">https://registry.npmjs.org/ua-parser-js</a> 31455ms<br>
300 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-coverage" rel="nofollow">https://registry.npmjs.org/istanbul-lib-coverage</a> 32968ms<br>
301 http fetch GET 200 <a href="https://registry.npmjs.org/terser" rel="nofollow">https://registry.npmjs.org/terser</a> 33149ms<br>
302 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> 33283ms<br>
303 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-report" rel="nofollow">https://registry.npmjs.org/istanbul-lib-report</a> 33372ms<br>
304 http fetch GET 304 <a href="https://registry.npmjs.org/@angular-devkit%2farchitect" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2farchitect</a> 33746ms (from cache)<br>
305 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-colors" rel="nofollow">https://registry.npmjs.org/ansi-colors</a> 33736ms (from cache)<br>
306 http fetch GET 200 <a href="https://registry.npmjs.org/@ngtools%2fwebpack" rel="nofollow">https://registry.npmjs.org/@ngtools%2fwebpack</a> 33803ms<br>
307 http fetch GET 304 <a href="https://registry.npmjs.org/@angular-devkit%2fcore" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fcore</a> 33946ms (from cache)<br>
308 http fetch GET 304 <a href="https://registry.npmjs.org/https-proxy-agent" rel="nofollow">https://registry.npmjs.org/https-proxy-agent</a> 33946ms (from cache)<br>
309 http fetch GET 304 <a href="https://registry.npmjs.org/cacache" rel="nofollow">https://registry.npmjs.org/cacache</a> 33979ms (from cache)<br>
310 http fetch GET 304 <a href="https://registry.npmjs.org/glob" rel="nofollow">https://registry.npmjs.org/glob</a> 34054ms (from cache)<br>
311 http fetch GET 200 <a href="https://registry.npmjs.org/connect" rel="nofollow">https://registry.npmjs.org/connect</a> 34013ms<br>
312 http fetch GET 200 <a href="https://registry.npmjs.org/log4js" rel="nofollow">https://registry.npmjs.org/log4js</a> 34122ms<br>
313 http fetch GET 304 <a href="https://registry.npmjs.org/inquirer" rel="nofollow">https://registry.npmjs.org/inquirer</a> 34267ms (from cache)<br>
314 http fetch GET 304 <a href="https://registry.npmjs.org/minimatch" rel="nofollow">https://registry.npmjs.org/minimatch</a> 34283ms (from cache)<br>
315 http fetch GET 304 <a href="https://registry.npmjs.org/ora" rel="nofollow">https://registry.npmjs.org/ora</a> 34288ms (from cache)<br>
316 http fetch GET 304 <a href="https://registry.npmjs.org/open" rel="nofollow">https://registry.npmjs.org/open</a> 34302ms (from cache)<br>
317 http fetch GET 304 <a href="https://registry.npmjs.org/rimraf" rel="nofollow">https://registry.npmjs.org/rimraf</a> 34308ms (from cache)<br>
318 http fetch GET 304 <a href="https://registry.npmjs.org/semver" rel="nofollow">https://registry.npmjs.org/semver</a> 34400ms (from cache)<br>
319 http fetch GET 304 <a href="https://registry.npmjs.org/source-map" rel="nofollow">https://registry.npmjs.org/source-map</a> 34440ms (from cache)<br>
320 http fetch GET 304 <a href="https://registry.npmjs.org/sourcemap-codec" rel="nofollow">https://registry.npmjs.org/sourcemap-codec</a> 34431ms (from cache)<br>
321 http fetch GET 304 <a href="https://registry.npmjs.org/magic-string" rel="nofollow">https://registry.npmjs.org/magic-string</a> 34463ms (from cache)<br>
322 http fetch GET 304 <a href="https://registry.npmjs.org/jsonc-parser" rel="nofollow">https://registry.npmjs.org/jsonc-parser</a> 34521ms (from cache)<br>
323 http fetch GET 304 <a href="https://registry.npmjs.org/debug" rel="nofollow">https://registry.npmjs.org/debug</a> 34582ms (from cache)<br>
324 http fetch GET 304 <a href="https://registry.npmjs.org/npm-package-arg" rel="nofollow">https://registry.npmjs.org/npm-package-arg</a> 34593ms (from cache)<br>
325 http fetch GET 304 <a href="https://registry.npmjs.org/@schematics%2fangular" rel="nofollow">https://registry.npmjs.org/@schematics%2fangular</a> 34665ms (from cache)<br>
326 http fetch GET 304 <a href="https://registry.npmjs.org/@yarnpkg%2flockfile" rel="nofollow">https://registry.npmjs.org/@yarnpkg%2flockfile</a> 34683ms (from cache)<br>
327 http fetch GET 304 <a href="https://registry.npmjs.org/ini" rel="nofollow">https://registry.npmjs.org/ini</a> 34686ms (from cache)<br>
328 http fetch GET 304 <a href="https://registry.npmjs.org/pacote" rel="nofollow">https://registry.npmjs.org/pacote</a> 34727ms (from cache)<br>
329 http fetch GET 304 <a href="https://registry.npmjs.org/@angular-devkit%2fschematics" rel="nofollow">https://registry.npmjs.org/@angular-devkit%2fschematics</a> 34856ms (from cache)<br>
330 http fetch GET 304 <a href="https://registry.npmjs.org/npm-pick-manifest" rel="nofollow">https://registry.npmjs.org/npm-pick-manifest</a> 34942ms (from cache)<br>
331 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-reports" rel="nofollow">https://registry.npmjs.org/istanbul-reports</a> 35010ms<br>
332 http fetch GET 304 <a href="https://registry.npmjs.org/resolve" rel="nofollow">https://registry.npmjs.org/resolve</a> 35051ms (from cache)<br>
333 http fetch GET 304 <a href="https://registry.npmjs.org/symbol-observable" rel="nofollow">https://registry.npmjs.org/symbol-observable</a> 35054ms (from cache)<br>
334 http fetch GET 304 <a href="https://registry.npmjs.org/uuid" rel="nofollow">https://registry.npmjs.org/uuid</a> 35057ms (from cache)<br>
335 http fetch GET 304 <a href="https://registry.npmjs.org/graceful-fs" rel="nofollow">https://registry.npmjs.org/graceful-fs</a> 35048ms (from cache)<br>
336 http fetch GET 304 <a href="https://registry.npmjs.org/lodash" rel="nofollow">https://registry.npmjs.org/lodash</a> 35047ms (from cache)<br>
337 http fetch GET 304 <a href="https://registry.npmjs.org/which" rel="nofollow">https://registry.npmjs.org/which</a> 35046ms (from cache)<br>
338 http fetch GET 304 <a href="https://registry.npmjs.org/tmp" rel="nofollow">https://registry.npmjs.org/tmp</a> 35077ms (from cache)<br>
339 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> 36028ms<br>
340 http fetch GET 200 <a href="https://registry.npmjs.org/socket.io" rel="nofollow">https://registry.npmjs.org/socket.io</a> 35913ms<br>
341 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> 36307ms<br>
342 http fetch GET 200 <a href="https://registry.npmjs.org/istanbul-lib-instrument" rel="nofollow">https://registry.npmjs.org/istanbul-lib-instrument</a> 36925ms<br>
343 http fetch GET 200 <a href="https://registry.npmjs.org/yargs" rel="nofollow">https://registry.npmjs.org/yargs</a> 39283ms<br>
344 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-lite" rel="nofollow">https://registry.npmjs.org/caniuse-lite</a> 40100ms<br>
345 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-server" rel="nofollow">https://registry.npmjs.org/webpack-dev-server</a> 42520ms<br>
346 http fetch GET 200 <a href="https://registry.npmjs.org/webpack" rel="nofollow">https://registry.npmjs.org/webpack</a> 52264ms<br>
347 timing idealTree:#root Completed in 126097ms<br>
348 silly fetch manifest @angular/compiler-cli@^12.0.0-next<br>
349 silly fetch manifest @angular/[email protected]<br>
350 silly fetch manifest [email protected]<br>
351 http fetch GET 200 <a href="https://registry.npmjs.org/rework" rel="nofollow">https://registry.npmjs.org/rework</a> 171ms<br>
352 silly fetch manifest [email protected]<br>
353 http fetch GET 200 <a href="https://registry.npmjs.org/rework-visit" rel="nofollow">https://registry.npmjs.org/rework-visit</a> 108ms<br>
354 silly fetch manifest fibers@>= 3.1.0<br>
355 http fetch GET 200 <a href="https://registry.npmjs.org/fibers" rel="nofollow">https://registry.npmjs.org/fibers</a> 187ms<br>
356 silly fetch manifest node-sass@^4.0.0 || ^5.0.0<br>
357 http fetch GET 200 <a href="https://registry.npmjs.org/node-sass" rel="nofollow">https://registry.npmjs.org/node-sass</a> 612ms<br>
358 silly fetch manifest html-webpack-plugin@>= 2.21.0 < 5<br>
359 http fetch GET 200 <a href="https://registry.npmjs.org/html-webpack-plugin" rel="nofollow">https://registry.npmjs.org/html-webpack-plugin</a> 980ms<br>
360 silly placeDep ROOT @angular-devkit/[email protected] OK for: @angular-devkit/[email protected] want: 0.1200.0<br>
361 silly placeDep ROOT @angular-devkit/[email protected] OK for: @angular-devkit/[email protected] want: 0.1200.0<br>
362 silly placeDep ROOT @angular-devkit/[email protected] OK for: @angular-devkit/[email protected] want: 0.1200.0<br>
363 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: ^5.30.0<br>
364 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: ^3.1.4<br>
365 silly placeDep ROOT @angular-devkit/[email protected] OK for: @angular-devkit/[email protected] want: 12.0.0<br>
366 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.14.0<br>
367 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.14.1<br>
368 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.13.0<br>
369 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.13.15<br>
370 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.14.1<br>
371 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.14.0<br>
372 silly placeDep ROOT @babel/[email protected] OK for: @angular-devkit/[email protected] want: 7.12.13<br>
373 silly placeDep ROOT @discoveryjs/[email protected] OK for: @angular-devkit/[email protected] want: 0.5.2<br>
374 silly placeDep ROOT @jsdevtools/[email protected] OK for: @angular-devkit/[email protected] want: 3.0.5<br>
375 silly placeDep ROOT @ngtools/[email protected] OK for: @angular-devkit/[email protected] want: 12.0.0<br>
376 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 4.1.1<br>
377 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 8.2.2<br>
378 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: ^4.9.1<br>
379 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 15.0.6<br>
380 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: ^1.0.30001032<br>
381 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.2.2<br>
382 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 8.1.1<br>
383 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 3.12.0<br>
384 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 0.0.10<br>
385 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.2.4<br>
386 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.0.2<br>
387 silly placeDep ROOT [email protected] OK for: [email protected] want: ^8.2.1<br>
388 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 3.3.1<br>
389 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 7.1.7<br>
390 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.0.0<br>
391 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 8.0.0<br>
392 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 26.6.2<br>
393 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 1.4.0<br>
394 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 4.1.1<br>
395 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 8.1.1<br>
396 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 2.3.17<br>
397 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 2.0.0<br>
398 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 1.5.1<br>
399 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 3.0.4<br>
400 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 8.0.7<br>
401 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.4.0<br>
402 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 6.0.1<br>
403 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 14.0.1<br>
404 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.2.0<br>
405 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 6.7.0<br>
406 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 4.0.2<br>
407 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 0.13.7<br>
408 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 4.0.0<br>
409 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 3.0.2<br>
410 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 1.32.12<br>
411 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 11.0.1<br>
412 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 7.3.5<br>
413 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 0.7.3<br>
414 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 2.0.1<br>
415 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 0.5.19<br>
416 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 2.0.0<br>
417 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 0.54.8<br>
418 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.0.0<br>
419 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.7.0<br>
420 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 4.2.3<br>
421 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 0.2.0<br>
422 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 1.2.2<br>
423 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 4.1.0<br>
424 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 5.7.3<br>
425 silly placeDep ROOT [email protected] OK for: @angular-devkit/[email protected] want: 1.5.2<br>
426 silly fetch manifest @types/eslint-scope@^3.7.0<br>
427 silly fetch manifest @types/estree@^0.0.47<br>
428 silly fetch manifest @webassemblyjs/[email protected]<br>
429 silly fetch manifest @webassemblyjs/[email protected]<br>
430 silly fetch manifest @webassemblyjs/[email protected]<br>
431 silly fetch manifest acorn@^8.2.1<br>
432 silly fetch manifest chrome-trace-event@^1.0.2<br>
433 silly fetch manifest enhanced-resolve@^5.8.0<br>
434 silly fetch manifest es-module-lexer@^0.4.0<br>
435 silly fetch manifest eslint-scope@^5.1.1<br>
436 silly fetch manifest events@^3.2.0<br>
437 silly fetch manifest glob-to-regexp@^0.4.1<br>
438 silly fetch manifest json-parse-better-errors@^1.0.2<br>
439 silly fetch manifest loader-runner@^4.2.0<br>
440 silly fetch manifest mime-types@^2.1.27<br>
441 silly fetch manifest neo-async@^2.6.2<br>
442 silly fetch manifest schema-utils@^3.0.0<br>
443 silly fetch manifest tapable@^2.1.1<br>
444 silly fetch manifest terser-webpack-plugin@^5.1.1<br>
445 silly fetch manifest watchpack@^2.0.0<br>
446 silly fetch manifest webpack-sources@^2.1.1<br>
447 silly fetch manifest [email protected]<br>
448 silly fetch manifest bonjour@^3.5.0<br>
449 silly fetch manifest chokidar@^2.1.8<br>
450 silly fetch manifest compression@^1.7.4<br>
451 silly fetch manifest connect-history-api-fallback@^1.6.0<br>
452 silly fetch manifest debug@^4.1.1<br>
453 silly fetch manifest del@^4.1.1<br>
454 silly fetch manifest express@^4.17.1<br>
455 silly fetch manifest html-entities@^1.3.1<br>
456 silly fetch manifest [email protected]<br>
457 silly fetch manifest import-local@^2.0.0<br>
458 silly fetch manifest internal-ip@^4.3.0<br>
459 silly fetch manifest ip@^1.1.5<br>
460 silly fetch manifest is-absolute-url@^3.0.3<br>
461 silly fetch manifest killable@^1.0.1<br>
462 silly fetch manifest loglevel@^1.6.8<br>
463 silly fetch manifest opn@^5.5.0<br>
464 silly fetch manifest p-retry@^3.0.1<br>
465 silly fetch manifest portfinder@^1.0.26<br>
466 silly fetch manifest schema-utils@^1.0.0<br>
467 silly fetch manifest selfsigned@^1.10.8<br>
468 silly fetch manifest semver@^6.3.0<br>
469 silly fetch manifest serve-index@^1.9.1<br>
470 silly fetch manifest sockjs@^0.3.21<br>
471 silly fetch manifest sockjs-client@^1.5.0<br>
472 silly fetch manifest spdy@^4.0.2<br>
473 silly fetch manifest strip-ansi@^3.0.1<br>
474 silly fetch manifest supports-color@^6.1.0<br>
475 silly fetch manifest url@^0.11.0<br>
476 silly fetch manifest webpack-dev-middleware@^3.7.2<br>
477 silly fetch manifest webpack-log@^2.0.0<br>
478 silly fetch manifest ws@^6.2.1<br>
479 silly fetch manifest yargs@^13.3.2<br>
480 silly fetch manifest [email protected]<br>
481 silly fetch manifest [email protected]<br>
482 silly fetch manifest [email protected]<br>
483 silly fetch manifest [email protected]<br>
484 silly fetch manifest @babel/code-frame@^7.12.13<br>
485 silly fetch manifest @babel/helper-compilation-targets@^7.13.16<br>
486 silly fetch manifest @babel/helper-module-transforms@^7.14.0<br>
487 silly fetch manifest @babel/helpers@^7.14.0<br>
488 silly fetch manifest @babel/parser@^7.14.0<br>
489 silly fetch manifest @babel/traverse@^7.14.0<br>
490 silly fetch manifest @babel/types@^7.14.0<br>
491 silly fetch manifest convert-source-map@^1.7.0<br>
492 silly fetch manifest debug@^4.1.0<br>
493 silly fetch manifest gensync@^1.0.0-beta.2<br>
494 silly fetch manifest json5@^2.1.2<br>
495 silly fetch manifest source-map@^0.5.0<br>
496 silly fetch manifest @babel/types@^7.14.1<br>
497 silly fetch manifest jsesc@^2.5.1<br>
498 silly fetch manifest @babel/helper-module-imports@^7.12.13<br>
499 silly fetch manifest @babel/helper-plugin-utils@^7.13.0<br>
500 silly fetch manifest @babel/helper-remap-async-to-generator@^7.13.0<br>
501 silly fetch manifest @babel/helper-module-imports@^7.13.12<br>
502 silly fetch manifest babel-plugin-polyfill-corejs2@^0.2.0<br>
503 silly fetch manifest babel-plugin-polyfill-corejs3@^0.2.0<br>
504 silly fetch manifest babel-plugin-polyfill-regenerator@^0.2.0<br>
505 silly fetch manifest @babel/compat-data@^7.14.0<br>
506 silly fetch manifest @babel/helper-validator-option@^7.12.17<br>
507 silly fetch manifest @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12<br>
508 silly fetch manifest @babel/plugin-proposal-async-generator-functions@^7.13.15<br>
509 silly fetch manifest @babel/plugin-proposal-class-properties@^7.13.0<br>
510 silly fetch manifest @babel/plugin-proposal-class-static-block@^7.13.11<br>
511 silly fetch manifest @babel/plugin-proposal-dynamic-import@^7.13.8<br>
512 silly fetch manifest @babel/plugin-proposal-export-namespace-from@^7.12.13<br>
513 silly fetch manifest @babel/plugin-proposal-json-strings@^7.13.8<br>
514 silly fetch manifest @babel/plugin-proposal-logical-assignment-operators@^7.13.8<br>
515 silly fetch manifest @babel/plugin-proposal-nullish-coalescing-operator@^7.13.8<br>
516 silly fetch manifest @babel/plugin-proposal-numeric-separator@^7.12.13<br>
517 silly fetch manifest @babel/plugin-proposal-object-rest-spread@^7.13.8<br>
518 silly fetch manifest @babel/plugin-proposal-optional-catch-binding@^7.13.8<br>
519 silly fetch manifest @babel/plugin-proposal-optional-chaining@^7.13.12<br>
520 silly fetch manifest @babel/plugin-proposal-private-methods@^7.13.0<br>
521 silly fetch manifest @babel/plugin-proposal-private-property-in-object@^7.14.0<br>
522 silly fetch manifest @babel/plugin-proposal-unicode-property-regex@^7.12.13<br>
523 silly fetch manifest @babel/plugin-syntax-async-generators@^7.8.4<br>
524 silly fetch manifest @babel/plugin-syntax-class-properties@^7.12.13<br>
525 silly fetch manifest @babel/plugin-syntax-class-static-block@^7.12.13<br>
526 silly fetch manifest @babel/plugin-syntax-dynamic-import@^7.8.3<br>
527 silly fetch manifest @babel/plugin-syntax-export-namespace-from@^7.8.3<br>
528 silly fetch manifest @babel/plugin-syntax-json-strings@^7.8.3<br>
529 silly fetch manifest @babel/plugin-syntax-logical-assignment-operators@^7.10.4<br>
530 silly fetch manifest @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3<br>
531 silly fetch manifest @babel/plugin-syntax-numeric-separator@^7.10.4<br>
532 silly fetch manifest @babel/plugin-syntax-object-rest-spread@^7.8.3<br>
533 silly fetch manifest @babel/plugin-syntax-optional-catch-binding@^7.8.3<br>
534 silly fetch manifest @babel/plugin-syntax-optional-chaining@^7.8.3<br>
535 silly fetch manifest @babel/plugin-syntax-private-property-in-object@^7.14.0<br>
536 silly fetch manifest @babel/plugin-syntax-top-level-await@^7.12.13<br>
537 silly fetch manifest @babel/plugin-transform-arrow-functions@^7.13.0<br>
538 silly fetch manifest @babel/plugin-transform-block-scoped-functions@^7.12.13<br>
539 silly fetch manifest @babel/plugin-transform-block-scoping@^7.14.1<br>
540 silly fetch manifest @babel/plugin-transform-classes@^7.13.0<br>
541 silly fetch manifest @babel/plugin-transform-computed-properties@^7.13.0<br>
542 silly fetch manifest @babel/plugin-transform-destructuring@^7.13.17<br>
543 silly fetch manifest @babel/plugin-transform-dotall-regex@^7.12.13<br>
544 silly fetch manifest @babel/plugin-transform-duplicate-keys@^7.12.13<br>
545 silly fetch manifest @babel/plugin-transform-exponentiation-operator@^7.12.13<br>
546 silly fetch manifest @babel/plugin-transform-for-of@^7.13.0<br>
547 silly fetch manifest @babel/plugin-transform-function-name@^7.12.13<br>
548 silly fetch manifest @babel/plugin-transform-literals@^7.12.13<br>
549 silly fetch manifest @babel/plugin-transform-member-expression-literals@^7.12.13<br>
550 silly fetch manifest @babel/plugin-transform-modules-amd@^7.14.0<br>
551 silly fetch manifest @babel/plugin-transform-modules-commonjs@^7.14.0<br>
552 silly fetch manifest @babel/plugin-transform-modules-systemjs@^7.13.8<br>
553 silly fetch manifest @babel/plugin-transform-modules-umd@^7.14.0<br>
554 silly fetch manifest @babel/plugin-transform-named-capturing-groups-regex@^7.12.13<br>
555 silly fetch manifest @babel/plugin-transform-new-target@^7.12.13<br>
556 silly fetch manifest @babel/plugin-transform-object-super@^7.12.13<br>
557 silly fetch manifest @babel/plugin-transform-parameters@^7.13.0<br>
558 silly fetch manifest @babel/plugin-transform-property-literals@^7.12.13<br>
559 silly fetch manifest @babel/plugin-transform-regenerator@^7.13.15<br>
560 silly fetch manifest @babel/plugin-transform-reserved-words@^7.12.13<br>
561 silly fetch manifest @babel/plugin-transform-shorthand-properties@^7.12.13<br>
562 silly fetch manifest @babel/plugin-transform-spread@^7.13.0<br>
563 silly fetch manifest @babel/plugin-transform-sticky-regex@^7.12.13<br>
564 silly fetch manifest @babel/plugin-transform-template-literals@^7.13.0<br>
565 silly fetch manifest @babel/plugin-transform-typeof-symbol@^7.12.13<br>
566 silly fetch manifest @babel/plugin-transform-unicode-escapes@^7.12.13<br>
567 silly fetch manifest @babel/plugin-transform-unicode-regex@^7.12.13<br>
568 silly fetch manifest @babel/preset-modules@^0.1.4<br>
569 silly fetch manifest core-js-compat@^3.9.0<br>
570 silly fetch manifest @babel/parser@^7.12.13<br>
571 silly fetch manifest @babel/types@^7.12.13<br>
572 silly fetch manifest istanbul-lib-instrument@^4.0.3<br>
573 silly fetch manifest merge-source-map@^1.1.0<br>
574 silly fetch manifest schema-utils@^2.7.0<br>
575 silly fetch manifest [email protected]<br>
576 silly fetch manifest loader-utils@^1.4.0<br>
577 silly fetch manifest make-dir@^3.1.0<br>
578 silly fetch manifest schema-utils@^2.6.5<br>
579 silly fetch manifest colorette@^1.2.2<br>
580 silly fetch manifest electron-to-chromium@^1.3.723<br>
581 silly fetch manifest escalade@^3.1.1<br>
582 silly fetch manifest node-releases@^1.1.71<br>
583 silly fetch manifest @npmcli/move-file@^1.0.1<br>
584 silly fetch manifest chownr@^2.0.0<br>
585 silly fetch manifest fs-minipass@^2.0.0<br>
586 silly fetch manifest infer-owner@^1.0.4<br>
587 silly fetch manifest lru-cache@^6.0.0<br>
588 silly fetch manifest minipass@^3.1.1<br>
589 silly fetch manifest minipass-collect@^1.0.2<br>
590 silly fetch manifest minipass-flush@^1.0.5<br>
591 silly fetch manifest minipass-pipeline@^1.2.2<br>
592 silly fetch manifest mkdirp@^1.0.3<br>
593 silly fetch manifest p-map@^4.0.0<br>
594 silly fetch manifest promise-inflight@^1.0.1<br>
595 silly fetch manifest ssri@^8.0.1<br>
596 silly fetch manifest tar@^6.0.2<br>
597 silly fetch manifest unique-filename@^1.1.1<br>
598 silly fetch manifest fast-glob@^3.2.5<br>
599 silly fetch manifest glob-parent@^5.1.1<br>
600 silly fetch manifest globby@^11.0.3<br>
601 silly fetch manifest normalize-path@^3.0.0<br>
602 silly fetch manifest p-limit@^3.1.0<br>
603 silly fetch manifest serialize-javascript@^5.0.1<br>
604 silly fetch manifest chalk@^4.1.0<br>
605 silly fetch manifest css@^3.0.0<br>
606 silly fetch manifest parse5@^6.0.1<br>
607 silly fetch manifest parse5-htmlparser2-tree-adapter@^6.0.1<br>
608 silly fetch manifest pretty-bytes@^5.3.0<br>
609 silly fetch manifest camelcase@^6.2.0<br>
610 silly fetch manifest icss-utils@^5.1.0<br>
611 silly fetch manifest postcss-modules-extract-imports@^3.0.0<br>
612 silly fetch manifest postcss-modules-local-by-default@^4.0.0<br>
613 silly fetch manifest postcss-modules-scope@^3.0.0<br>
614 silly fetch manifest postcss-modules-values@^4.0.0<br>
615 silly fetch manifest postcss-value-parser@^4.1.0<br>
616 silly fetch manifest cosmiconfig@^7.0.0<br>
617 silly fetch manifest cssnano-preset-default@^5.0.1<br>
618 silly fetch manifest is-resolvable@^1.1.0<br>
619 silly fetch manifest nanoid@^3.1.22<br>
620 silly fetch manifest commondir@^1.0.1<br>
621 silly fetch manifest make-dir@^3.0.2<br>
622 silly fetch manifest pkg-dir@^4.1.0<br>
623 silly fetch manifest fs.realpath@^1.0.0<br>
624 silly fetch manifest inflight@^1.0.4<br>
625 silly fetch manifest inherits@2<br>
626 silly fetch manifest once@^1.3.0<br>
627 silly fetch manifest path-is-absolute@^1.0.0<br>
628 silly fetch manifest agent-base@6<br>
629 silly fetch manifest debug@4<br>
630 silly fetch manifest ansi-escapes@^4.2.1<br>
631 silly fetch manifest cli-cursor@^3.1.0<br>
632 silly fetch manifest cli-width@^3.0.0<br>
633 silly fetch manifest external-editor@^3.0.3<br>
634 silly fetch manifest figures@^3.0.0<br>
635 silly fetch manifest lodash@^4.17.21<br>
636 silly fetch manifest [email protected]<br>
637 silly fetch manifest run-async@^2.4.0<br>
638 silly fetch manifest string-width@^4.1.0<br>
639 silly fetch manifest strip-ansi@^6.0.0<br>
640 silly fetch manifest through@^2.3.6<br>
641 silly fetch manifest merge-stream@^2.0.0<br>
642 silly fetch manifest supports-color@^7.0.0<br>
643 silly fetch manifest copy-anything@^2.0.1<br>
644 silly fetch manifest parse-node-version@^1.0.1<br>
645 silly fetch manifest tslib@^1.10.0<br>
646 silly fetch manifest errno@^0.1.1<br>
647 silly fetch manifest graceful-fs@^4.1.2<br>
648 silly fetch manifest image-size@~0.5.0<br>
649 silly fetch manifest make-dir@^2.1.0<br>
650 silly fetch manifest mime@^1.4.1<br>
651 silly fetch manifest needle@^2.5.2<br>
652 silly fetch manifest source-map@~0.6.0<br>
653 silly fetch manifest klona@^2.0.4<br>
654 silly fetch manifest @types/webpack-sources@^0.1.5<br>
655 silly fetch manifest webpack-sources@^1.2.0<br>
656 silly fetch manifest big.js@^5.2.2<br>
657 silly fetch manifest emojis-list@^3.0.0<br>
658 silly fetch manifest webpack-sources@^1.1.0<br>
659 silly fetch manifest brace-expansion@^1.1.7<br>
660 silly fetch manifest define-lazy-prop@^2.0.0<br>
661 silly fetch manifest is-docker@^2.1.1<br>
662 silly fetch manifest is-wsl@^2.2.0<br>
663 silly fetch manifest bl@^4.1.0<br>
664 silly fetch manifest cli-spinners@^2.5.0<br>
665 silly fetch manifest is-interactive@^1.0.0<br>
666 silly fetch manifest is-unicode-supported@^0.1.0<br>
667 silly fetch manifest log-symbols@^4.1.0<br>
668 silly fetch manifest wcwidth@^1.0.1<br>
669 silly fetch manifest parse5-sax-parser@^6.0.1<br>
670 silly fetch manifest postcss-value-parser@^4.0.0<br>
671 silly fetch manifest read-cache@^1.0.0<br>
672 silly fetch manifest resolve@^1.1.7<br>
673 silly fetch manifest autoprefixer@^9.6.1<br>
674 silly fetch manifest css-blank-pseudo@^0.1.4<br>
675 silly fetch manifest css-has-pseudo@^0.10.0<br>
676 silly fetch manifest css-prefers-color-scheme@^3.1.1<br>
677 silly fetch manifest cssdb@^4.4.0<br>
678 silly fetch manifest postcss@^7.0.17<br>
679 silly fetch manifest postcss-attribute-case-insensitive@^4.0.1<br>
680 silly fetch manifest postcss-color-functional-notation@^2.0.1<br>
681 silly fetch manifest postcss-color-gray@^5.0.0<br>
682 silly fetch manifest postcss-color-hex-alpha@^5.0.3<br>
683 silly fetch manifest postcss-color-mod-function@^3.0.3<br>
684 silly fetch manifest postcss-color-rebeccapurple@^4.0.1<br>
685 silly fetch manifest postcss-custom-media@^7.0.8<br>
686 silly fetch manifest postcss-custom-properties@^8.0.11<br>
687 silly fetch manifest postcss-custom-selectors@^5.1.2<br>
688 silly fetch manifest postcss-dir-pseudo-class@^5.0.0<br>
689 silly fetch manifest postcss-double-position-gradients@^1.0.0<br>
690 silly fetch manifest postcss-env-function@^2.0.2<br>
691 silly fetch manifest postcss-focus-visible@^4.0.0<br>
692 silly fetch manifest postcss-focus-within@^3.0.0<br>
693 silly fetch manifest postcss-font-variant@^4.0.0<br>
694 silly fetch manifest postcss-gap-properties@^2.0.0<br>
695 silly fetch manifest postcss-image-set-function@^3.0.1<br>
696 silly fetch manifest postcss-initial@^3.0.0<br>
697 silly fetch manifest postcss-lab-function@^2.0.1<br>
698 silly fetch manifest postcss-logical@^3.0.0<br>
699 silly fetch manifest postcss-media-minmax@^4.0.0<br>
700 silly fetch manifest postcss-nesting@^7.0.0<br>
701 silly fetch manifest postcss-overflow-shorthand@^2.0.0<br>
702 silly fetch manifest postcss-page-break@^2.0.0<br>
703 silly fetch manifest postcss-place@^4.0.1<br>
704 silly fetch manifest postcss-pseudo-class-any-link@^6.0.0<br>
705 silly fetch manifest postcss-replace-overflow-wrap@^3.0.0<br>
706 silly fetch manifest postcss-selector-matches@^4.0.0<br>
707 silly fetch manifest postcss-selector-not@^4.0.0<br>
708 silly fetch manifest adjust-sourcemap-loader@^4.0.0<br>
709 silly fetch manifest postcss@^7.0.35<br>
710 silly fetch manifest [email protected]<br>
711 silly fetch manifest chokidar@>=3.0.0 <4.0.0<br>
712 silly fetch manifest abab@^2.0.5<br>
713 silly fetch manifest iconv-lite@^0.6.2<br>
714 silly fetch manifest source-map-js@^0.6.2<br>
715 silly fetch manifest buffer-from@^1.0.0<br>
716 silly fetch manifest source-map@^0.6.0<br>
717 silly fetch manifest css-parse@~2.0.0<br>
718 silly fetch manifest debug@~3.1.0<br>
719 silly fetch manifest mkdirp@~1.0.4<br>
720 silly fetch manifest safer-buffer@^2.1.2<br>
721 silly fetch manifest sax@~1.2.4<br>
722 silly fetch manifest commander@^2.20.0<br>
723 silly fetch manifest p-limit@^3.0.2<br>
724 silly fetch manifest webpack-sources@^1.4.3<br>
725 silly fetch manifest colorette@^1.2.1<br>
726 silly fetch manifest mem@^8.0.0<br>
727 silly fetch manifest memfs@^3.2.0<br>
728 silly fetch manifest mime-types@^2.1.28<br>
729 silly fetch manifest clone-deep@^4.0.1<br>
730 silly fetch manifest wildcard@^2.0.0<br>
731 silly fetch manifest webpack-sources@^1.3.0<br>
732 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2feslint-scope" rel="nofollow">https://registry.npmjs.org/@types%2feslint-scope</a> 1009ms<br>
733 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils" rel="nofollow">https://registry.npmjs.org/schema-utils</a> 1127ms<br>
734 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2festree" rel="nofollow">https://registry.npmjs.org/@types%2festree</a> 2081ms<br>
735 http fetch GET 200 <a href="https://registry.npmjs.org/chrome-trace-event" rel="nofollow">https://registry.npmjs.org/chrome-trace-event</a> 2476ms<br>
736 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> 2686ms<br>
737 http fetch GET 200 <a href="https://registry.npmjs.org/bonjour" rel="nofollow">https://registry.npmjs.org/bonjour</a> 2976ms<br>
738 http fetch GET 200 <a href="https://registry.npmjs.org/acorn" rel="nofollow">https://registry.npmjs.org/acorn</a> 3500ms<br>
739 http fetch GET 200 <a href="https://registry.npmjs.org/compression" rel="nofollow">https://registry.npmjs.org/compression</a> 3549ms<br>
740 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> 3812ms<br>
741 http fetch GET 200 <a href="https://registry.npmjs.org/glob-to-regexp" rel="nofollow">https://registry.npmjs.org/glob-to-regexp</a> 4045ms<br>
742 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-html" rel="nofollow">https://registry.npmjs.org/ansi-html</a> 4096ms<br>
743 http fetch GET 200 <a href="https://registry.npmjs.org/neo-async" rel="nofollow">https://registry.npmjs.org/neo-async</a> 4283ms<br>
744 http fetch GET 200 <a href="https://registry.npmjs.org/loader-runner" rel="nofollow">https://registry.npmjs.org/loader-runner</a> 4612ms<br>
745 http fetch GET 200 <a href="https://registry.npmjs.org/tapable" rel="nofollow">https://registry.npmjs.org/tapable</a> 4706ms<br>
746 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fast" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fast</a> 4873ms<br>
747 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-edit" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-edit</a> 5081ms<br>
748 http fetch GET 200 <a href="https://registry.npmjs.org/import-local" rel="nofollow">https://registry.npmjs.org/import-local</a> 5078ms<br>
749 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-sources" rel="nofollow">https://registry.npmjs.org/webpack-sources</a> 5101ms<br>
750 http fetch GET 200 <a href="https://registry.npmjs.org/killable" rel="nofollow">https://registry.npmjs.org/killable</a> 5144ms<br>
751 http fetch GET 200 <a href="https://registry.npmjs.org/del" rel="nofollow">https://registry.npmjs.org/del</a> 5205ms<br>
752 http fetch GET 200 <a href="https://registry.npmjs.org/internal-ip" rel="nofollow">https://registry.npmjs.org/internal-ip</a> 5417ms<br>
753 http fetch GET 200 <a href="https://registry.npmjs.org/is-absolute-url" rel="nofollow">https://registry.npmjs.org/is-absolute-url</a> 6176ms<br>
754 http fetch GET 200 <a href="https://registry.npmjs.org/portfinder" rel="nofollow">https://registry.npmjs.org/portfinder</a> 6193ms<br>
755 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-parser" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-parser</a> 6240ms<br>
756 http fetch GET 200 <a href="https://registry.npmjs.org/serve-index" rel="nofollow">https://registry.npmjs.org/serve-index</a> 6337ms<br>
757 http fetch GET 200 <a href="https://registry.npmjs.org/p-retry" rel="nofollow">https://registry.npmjs.org/p-retry</a> 6483ms<br>
758 http fetch GET 200 <a href="https://registry.npmjs.org/loglevel" rel="nofollow">https://registry.npmjs.org/loglevel</a> 6539ms<br>
759 http fetch GET 200 <a href="https://registry.npmjs.org/url" rel="nofollow">https://registry.npmjs.org/url</a> 6561ms<br>
760 http fetch GET 200 <a href="https://registry.npmjs.org/opn" rel="nofollow">https://registry.npmjs.org/opn</a> 6925ms<br>
761 http fetch GET 200 <a href="https://registry.npmjs.org/es-module-lexer" rel="nofollow">https://registry.npmjs.org/es-module-lexer</a> 6986ms<br>
762 http fetch GET 200 <a href="https://registry.npmjs.org/selfsigned" rel="nofollow">https://registry.npmjs.org/selfsigned</a> 6995ms<br>
763 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs-client" rel="nofollow">https://registry.npmjs.org/sockjs-client</a> 7150ms<br>
764 http fetch GET 200 <a href="https://registry.npmjs.org/html-entities" rel="nofollow">https://registry.npmjs.org/html-entities</a> 7431ms<br>
765 http fetch GET 200 <a href="https://registry.npmjs.org/eslint-scope" rel="nofollow">https://registry.npmjs.org/eslint-scope</a> 7566ms<br>
766 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs" rel="nofollow">https://registry.npmjs.org/sockjs</a> 7730ms<br>
767 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy-middleware" rel="nofollow">https://registry.npmjs.org/http-proxy-middleware</a> 8642ms<br>
768 http fetch GET 200 <a href="https://registry.npmjs.org/gensync" rel="nofollow">https://registry.npmjs.org/gensync</a> 8830ms<br>
769 http fetch GET 200 <a href="https://registry.npmjs.org/json5" rel="nofollow">https://registry.npmjs.org/json5</a> 9399ms<br>
770 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc" rel="nofollow">https://registry.npmjs.org/jsesc</a> 9439ms<br>
771 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fcode-frame" rel="nofollow">https://registry.npmjs.org/@babel%2fcode-frame</a> 9674ms<br>
772 http fetch GET 200 <a href="https://registry.npmjs.org/spdy" rel="nofollow">https://registry.npmjs.org/spdy</a> 9932ms<br>
773 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> 10332ms<br>
774 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack" rel="nofollow">https://registry.npmjs.org/watchpack</a> 10470ms<br>
775 http fetch GET 200 <a href="https://registry.npmjs.org/ws" rel="nofollow">https://registry.npmjs.org/ws</a> 11095ms<br>
776 http fetch GET 200 <a href="https://registry.npmjs.org/express" rel="nofollow">https://registry.npmjs.org/express</a> 11157ms<br>
777 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fcompat-data" rel="nofollow">https://registry.npmjs.org/@babel%2fcompat-data</a> 11312ms<br>
778 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> 11336ms<br>
779 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> 11441ms<br>
780 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelpers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelpers</a> 11489ms<br>
781 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> 11577ms<br>
782 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> 11734ms<br>
783 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fparser" rel="nofollow">https://registry.npmjs.org/@babel%2fparser</a> 11982ms<br>
784 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> 12139ms<br>
785 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> 12185ms<br>
786 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> 12539ms<br>
787 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2ftraverse" rel="nofollow">https://registry.npmjs.org/@babel%2ftraverse</a> 12722ms<br>
788 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> 13309ms<br>
789 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> 13398ms<br>
790 http fetch GET 200 <a href="https://registry.npmjs.org/enhanced-resolve" rel="nofollow">https://registry.npmjs.org/enhanced-resolve</a> 13519ms<br>
791 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> 13457ms<br>
792 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> 13706ms<br>
793 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> 14237ms<br>
794 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> 14231ms<br>
795 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> 14240ms<br>
796 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> 14383ms<br>
797 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> 14392ms<br>
798 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> 14504ms<br>
799 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> 14896ms<br>
800 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> 14900ms<br>
801 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> 15388ms<br>
802 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> 15585ms<br>
803 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> 15657ms<br>
804 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> 15731ms<br>
805 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> 15804ms<br>
806 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> 16043ms<br>
807 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> 16425ms<br>
808 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> 16453ms<br>
809 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> 16572ms<br>
810 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> 16604ms<br>
811 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> 16707ms<br>
812 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> 16753ms<br>
813 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> 16929ms<br>
814 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> 18359ms<br>
815 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> 18416ms<br>
816 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> 18493ms<br>
817 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> 18519ms<br>
818 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> 18663ms<br>
819 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> 18667ms<br>
820 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> 18748ms<br>
821 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> 18985ms<br>
822 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> 19934ms<br>
823 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> 20489ms<br>
824 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> 20708ms<br>
825 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> 20853ms<br>
826 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> 21008ms<br>
827 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> 21168ms<br>
828 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> 21190ms<br>
829 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> 21264ms<br>
830 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> 21604ms<br>
831 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> 21578ms<br>
832 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> 22094ms<br>
833 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> 22238ms<br>
834 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> 22234ms<br>
835 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> 23018ms<br>
836 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> 23205ms<br>
837 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> 23355ms<br>
838 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> 23688ms<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> 23869ms<br>
840 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fpreset-modules" rel="nofollow">https://registry.npmjs.org/@babel%2fpreset-modules</a> 24157ms<br>
841 http fetch GET 200 <a href="https://registry.npmjs.org/merge-source-map" rel="nofollow">https://registry.npmjs.org/merge-source-map</a> 24177ms<br>
842 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> 24223ms<br>
843 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> 24265ms<br>
844 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> 24280ms<br>
845 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> 24304ms<br>
846 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> 24563ms<br>
847 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> 24798ms<br>
848 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> 24802ms<br>
849 http fetch GET 200 <a href="https://registry.npmjs.org/events" rel="nofollow">https://registry.npmjs.org/events</a> 24981ms<br>
850 http fetch GET 200 <a href="https://registry.npmjs.org/make-dir" rel="nofollow">https://registry.npmjs.org/make-dir</a> 24900ms<br>
851 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> 25000ms<br>
852 http fetch GET 200 <a href="https://registry.npmjs.org/escalade" rel="nofollow">https://registry.npmjs.org/escalade</a> 25200ms<br>
853 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-path" rel="nofollow">https://registry.npmjs.org/normalize-path</a> 25887ms<br>
854 http fetch GET 200 <a href="https://registry.npmjs.org/css" rel="nofollow">https://registry.npmjs.org/css</a> 25943ms<br>
855 http fetch GET 200 <a href="https://registry.npmjs.org/colorette" rel="nofollow">https://registry.npmjs.org/colorette</a> 26025ms<br>
856 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> 26123ms<br>
857 http fetch GET 200 <a href="https://registry.npmjs.org/glob-parent" rel="nofollow">https://registry.npmjs.org/glob-parent</a> 26070ms<br>
858 http fetch GET 200 <a href="https://registry.npmjs.org/globby" rel="nofollow">https://registry.npmjs.org/globby</a> 26291ms<br>
859 http fetch GET 200 <a href="https://registry.npmjs.org/parse5" rel="nofollow">https://registry.npmjs.org/parse5</a> 26316ms<br>
860 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> 26403ms<br>
861 http fetch GET 200 <a href="https://registry.npmjs.org/serialize-javascript" rel="nofollow">https://registry.npmjs.org/serialize-javascript</a> 26575ms<br>
862 http fetch GET 200 <a href="https://registry.npmjs.org/icss-utils" rel="nofollow">https://registry.npmjs.org/icss-utils</a> 26711ms<br>
863 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> 26903ms<br>
864 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> 27141ms<br>
865 http fetch GET 200 <a href="https://registry.npmjs.org/fast-glob" rel="nofollow">https://registry.npmjs.org/fast-glob</a> 27245ms<br>
866 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase" rel="nofollow">https://registry.npmjs.org/camelcase</a> 27312ms<br>
867 http fetch GET 200 <a href="https://registry.npmjs.org/is-resolvable" rel="nofollow">https://registry.npmjs.org/is-resolvable</a> 27535ms<br>
868 http fetch GET 200 <a href="https://registry.npmjs.org/core-js-compat" rel="nofollow">https://registry.npmjs.org/core-js-compat</a> 27614ms<br>
869 http fetch GET 200 <a href="https://registry.npmjs.org/commondir" rel="nofollow">https://registry.npmjs.org/commondir</a> 27594ms<br>
870 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-local-by-default" rel="nofollow">https://registry.npmjs.org/postcss-modules-local-by-default</a> 27757ms<br>
871 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-scope" rel="nofollow">https://registry.npmjs.org/postcss-modules-scope</a> 27763ms<br>
872 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-value-parser" rel="nofollow">https://registry.npmjs.org/postcss-value-parser</a> 27774ms<br>
873 http fetch GET 200 <a href="https://registry.npmjs.org/pretty-bytes" rel="nofollow">https://registry.npmjs.org/pretty-bytes</a> 27831ms<br>
874 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-values" rel="nofollow">https://registry.npmjs.org/postcss-modules-values</a> 27868ms<br>
875 http fetch GET 200 <a href="https://registry.npmjs.org/cosmiconfig" rel="nofollow">https://registry.npmjs.org/cosmiconfig</a> 27972ms<br>
876 http fetch GET 200 <a href="https://registry.npmjs.org/errno" rel="nofollow">https://registry.npmjs.org/errno</a> 28082ms<br>
877 http fetch GET 200 <a href="https://registry.npmjs.org/pkg-dir" rel="nofollow">https://registry.npmjs.org/pkg-dir</a> 28256ms<br>
878 http fetch GET 200 <a href="https://registry.npmjs.org/p-limit" rel="nofollow">https://registry.npmjs.org/p-limit</a> 28431ms<br>
879 http fetch GET 200 <a href="https://registry.npmjs.org/parse-node-version" rel="nofollow">https://registry.npmjs.org/parse-node-version</a> 28748ms<br>
880 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fwebpack-sources" rel="nofollow">https://registry.npmjs.org/@types%2fwebpack-sources</a> 28977ms<br>
881 http fetch GET 200 <a href="https://registry.npmjs.org/read-cache" rel="nofollow">https://registry.npmjs.org/read-cache</a> 29106ms<br>
882 http fetch GET 200 <a href="https://registry.npmjs.org/big.js" rel="nofollow">https://registry.npmjs.org/big.js</a> 29179ms<br>
883 http fetch GET 200 <a href="https://registry.npmjs.org/copy-anything" rel="nofollow">https://registry.npmjs.org/copy-anything</a> 29316ms<br>
884 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-sax-parser" rel="nofollow">https://registry.npmjs.org/parse5-sax-parser</a> 29319ms<br>
885 http fetch GET 200 <a href="https://registry.npmjs.org/emojis-list" rel="nofollow">https://registry.npmjs.org/emojis-list</a> 29620ms<br>
886 http fetch GET 200 <a href="https://registry.npmjs.org/klona" rel="nofollow">https://registry.npmjs.org/klona</a> 29670ms<br>
887 http fetch GET 200 <a href="https://registry.npmjs.org/merge-stream" rel="nofollow">https://registry.npmjs.org/merge-stream</a> 29735ms<br>
888 http fetch GET 200 <a href="https://registry.npmjs.org/cssdb" rel="nofollow">https://registry.npmjs.org/cssdb</a> 29755ms<br>
889 http fetch GET 200 <a href="https://registry.npmjs.org/image-size" rel="nofollow">https://registry.npmjs.org/image-size</a> 29800ms<br>
890 http fetch GET 200 <a href="https://registry.npmjs.org/css-has-pseudo" rel="nofollow">https://registry.npmjs.org/css-has-pseudo</a> 29831ms<br>
891 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> 29869ms<br>
892 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> 30136ms<br>
893 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> 30595ms<br>
894 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-gray" rel="nofollow">https://registry.npmjs.org/postcss-color-gray</a> 30656ms<br>
895 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> 30739ms<br>
896 http fetch GET 200 <a href="https://registry.npmjs.org/css-blank-pseudo" rel="nofollow">https://registry.npmjs.org/css-blank-pseudo</a> 30792ms<br>
897 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> 30811ms<br>
898 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-media" rel="nofollow">https://registry.npmjs.org/postcss-custom-media</a> 30828ms<br>
899 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-color-rebeccapurple" rel="nofollow">https://registry.npmjs.org/postcss-color-rebeccapurple</a> 30910ms<br>
900 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-preset-default" rel="nofollow">https://registry.npmjs.org/cssnano-preset-default</a> 31033ms<br>
901 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-focus-visible" rel="nofollow">https://registry.npmjs.org/postcss-focus-visible</a> 31068ms<br>
902 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> 31080ms<br>
903 http fetch GET 200 <a href="https://registry.npmjs.org/needle" rel="nofollow">https://registry.npmjs.org/needle</a> 31118ms<br>
904 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-focus-within" rel="nofollow">https://registry.npmjs.org/postcss-focus-within</a> 31121ms<br>
905 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-selectors" rel="nofollow">https://registry.npmjs.org/postcss-custom-selectors</a> 31245ms<br>
906 http fetch GET 200 <a href="https://registry.npmjs.org/node-releases" rel="nofollow">https://registry.npmjs.org/node-releases</a> 31748ms<br>
907 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-gap-properties" rel="nofollow">https://registry.npmjs.org/postcss-gap-properties</a> 31590ms<br>
908 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-custom-properties" rel="nofollow">https://registry.npmjs.org/postcss-custom-properties</a> 31613ms<br>
909 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> 31640ms<br>
910 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-env-function" rel="nofollow">https://registry.npmjs.org/postcss-env-function</a> 31692ms<br>
911 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-logical" rel="nofollow">https://registry.npmjs.org/postcss-logical</a> 31704ms<br>
912 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-media-minmax" rel="nofollow">https://registry.npmjs.org/postcss-media-minmax</a> 31716ms<br>
913 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> 31738ms<br>
914 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-page-break" rel="nofollow">https://registry.npmjs.org/postcss-page-break</a> 31739ms<br>
915 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-nesting" rel="nofollow">https://registry.npmjs.org/postcss-nesting</a> 31811ms<br>
916 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> 31938ms<br>
917 http fetch GET 200 <a href="https://registry.npmjs.org/source-map-js" rel="nofollow">https://registry.npmjs.org/source-map-js</a> 31980ms<br>
918 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-matches" rel="nofollow">https://registry.npmjs.org/postcss-selector-matches</a> 32039ms<br>
919 http fetch GET 200 <a href="https://registry.npmjs.org/css-parse" rel="nofollow">https://registry.npmjs.org/css-parse</a> 32153ms<br>
920 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> 32165ms<br>
921 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-from" rel="nofollow">https://registry.npmjs.org/buffer-from</a> 32158ms<br>
922 http fetch GET 200 <a href="https://registry.npmjs.org/adjust-sourcemap-loader" rel="nofollow">https://registry.npmjs.org/adjust-sourcemap-loader</a> 32250ms<br>
923 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-initial" rel="nofollow">https://registry.npmjs.org/postcss-initial</a> 32271ms<br>
924 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-font-variant" rel="nofollow">https://registry.npmjs.org/postcss-font-variant</a> 32277ms<br>
925 http fetch GET 200 <a href="https://registry.npmjs.org/abab" rel="nofollow">https://registry.npmjs.org/abab</a> 32304ms<br>
926 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-place" rel="nofollow">https://registry.npmjs.org/postcss-place</a> 32389ms<br>
927 http fetch GET 200 <a href="https://registry.npmjs.org/sax" rel="nofollow">https://registry.npmjs.org/sax</a> 32434ms<br>
928 http fetch GET 304 <a href="https://registry.npmjs.org/strip-ansi" rel="nofollow">https://registry.npmjs.org/strip-ansi</a> 32809ms (from cache)<br>
929 http fetch GET 304 <a href="https://registry.npmjs.org/ip" rel="nofollow">https://registry.npmjs.org/ip</a> 32849ms (from cache)<br>
930 http fetch GET 304 <a href="https://registry.npmjs.org/supports-color" rel="nofollow">https://registry.npmjs.org/supports-color</a> 32835ms (from cache)<br>
931 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-overflow-shorthand" rel="nofollow">https://registry.npmjs.org/postcss-overflow-shorthand</a> 32548ms<br>
932 http fetch GET 304 <a href="https://registry.npmjs.org/mime-types" rel="nofollow">https://registry.npmjs.org/mime-types</a> 32890ms (from cache)<br>
933 http fetch GET 304 <a href="https://registry.npmjs.org/ajv-formats" rel="nofollow">https://registry.npmjs.org/ajv-formats</a> 32926ms (from cache)<br>
934 http fetch GET 200 <a href="https://registry.npmjs.org/wildcard" rel="nofollow">https://registry.npmjs.org/wildcard</a> 32637ms<br>
935 http fetch GET 200 <a href="https://registry.npmjs.org/clone-deep" rel="nofollow">https://registry.npmjs.org/clone-deep</a> 32653ms<br>
936 http fetch GET 304 <a href="https://registry.npmjs.org/ajv" rel="nofollow">https://registry.npmjs.org/ajv</a> 32980ms (from cache)<br>
937 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-lab-function" rel="nofollow">https://registry.npmjs.org/postcss-lab-function</a> 32708ms<br>
938 http fetch GET 304 <a href="https://registry.npmjs.org/chownr" rel="nofollow">https://registry.npmjs.org/chownr</a> 32913ms (from cache)<br>
939 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> 33036ms (from cache)<br>
940 http fetch GET 304 <a href="https://registry.npmjs.org/fs-minipass" rel="nofollow">https://registry.npmjs.org/fs-minipass</a> 32935ms (from cache)<br>
941 http fetch GET 304 <a href="https://registry.npmjs.org/lru-cache" rel="nofollow">https://registry.npmjs.org/lru-cache</a> 32960ms (from cache)<br>
942 http fetch GET 304 <a href="https://registry.npmjs.org/infer-owner" rel="nofollow">https://registry.npmjs.org/infer-owner</a> 32962ms (from cache)<br>
943 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> 32832ms<br>
944 http fetch GET 304 <a href="https://registry.npmjs.org/minipass" rel="nofollow">https://registry.npmjs.org/minipass</a> 33036ms (from cache)<br>
945 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-not" rel="nofollow">https://registry.npmjs.org/postcss-selector-not</a> 32862ms<br>
946 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-collect" rel="nofollow">https://registry.npmjs.org/minipass-collect</a> 33055ms (from cache)<br>
947 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-flush" rel="nofollow">https://registry.npmjs.org/minipass-flush</a> 33045ms (from cache)<br>
948 http fetch GET 304 <a href="https://registry.npmjs.org/minipass-pipeline" rel="nofollow">https://registry.npmjs.org/minipass-pipeline</a> 33058ms (from cache)<br>
949 http fetch GET 304 <a href="https://registry.npmjs.org/mkdirp" rel="nofollow">https://registry.npmjs.org/mkdirp</a> 33091ms (from cache)<br>
950 http fetch GET 304 <a href="https://registry.npmjs.org/p-map" rel="nofollow">https://registry.npmjs.org/p-map</a> 33104ms (from cache)<br>
951 http fetch GET 304 <a href="https://registry.npmjs.org/ssri" rel="nofollow">https://registry.npmjs.org/ssri</a> 33109ms (from cache)<br>
952 http fetch GET 304 <a href="https://registry.npmjs.org/unique-filename" rel="nofollow">https://registry.npmjs.org/unique-filename</a> 33112ms (from cache)<br>
953 http fetch GET 304 <a href="https://registry.npmjs.org/tar" rel="nofollow">https://registry.npmjs.org/tar</a> 33149ms (from cache)<br>
954 http fetch GET 304 <a href="https://registry.npmjs.org/chalk" rel="nofollow">https://registry.npmjs.org/chalk</a> 33143ms (from cache)<br>
955 http fetch GET 200 <a href="https://registry.npmjs.org/nanoid" rel="nofollow">https://registry.npmjs.org/nanoid</a> 33136ms<br>
956 http fetch GET 304 <a href="https://registry.npmjs.org/fs.realpath" rel="nofollow">https://registry.npmjs.org/fs.realpath</a> 33184ms (from cache)<br>
957 http fetch GET 304 <a href="https://registry.npmjs.org/promise-inflight" rel="nofollow">https://registry.npmjs.org/promise-inflight</a> 33231ms (from cache)<br>
958 http fetch GET 304 <a href="https://registry.npmjs.org/inherits" rel="nofollow">https://registry.npmjs.org/inherits</a> 33210ms (from cache)<br>
959 http fetch GET 304 <a href="https://registry.npmjs.org/inflight" rel="nofollow">https://registry.npmjs.org/inflight</a> 33212ms (from cache)<br>
960 http fetch GET 304 <a href="https://registry.npmjs.org/path-is-absolute" rel="nofollow">https://registry.npmjs.org/path-is-absolute</a> 33193ms (from cache)<br>
961 http fetch GET 304 <a href="https://registry.npmjs.org/once" rel="nofollow">https://registry.npmjs.org/once</a> 33220ms (from cache)<br>
962 http fetch GET 304 <a href="https://registry.npmjs.org/agent-base" rel="nofollow">https://registry.npmjs.org/agent-base</a> 33221ms (from cache)<br>
963 http fetch GET 304 <a href="https://registry.npmjs.org/cli-cursor" rel="nofollow">https://registry.npmjs.org/cli-cursor</a> 33225ms (from cache)<br>
964 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-escapes" rel="nofollow">https://registry.npmjs.org/ansi-escapes</a> 33230ms (from cache)<br>
965 http fetch GET 304 <a href="https://registry.npmjs.org/cli-width" rel="nofollow">https://registry.npmjs.org/cli-width</a> 33318ms (from cache)<br>
966 http fetch GET 304 <a href="https://registry.npmjs.org/mute-stream" rel="nofollow">https://registry.npmjs.org/mute-stream</a> 33407ms (from cache)<br>
967 http fetch GET 304 <a href="https://registry.npmjs.org/external-editor" rel="nofollow">https://registry.npmjs.org/external-editor</a> 33414ms (from cache)<br>
968 http fetch GET 304 <a href="https://registry.npmjs.org/run-async" rel="nofollow">https://registry.npmjs.org/run-async</a> 33410ms (from cache)<br>
969 http fetch GET 304 <a href="https://registry.npmjs.org/string-width" rel="nofollow">https://registry.npmjs.org/string-width</a> 33392ms (from cache)<br>
970 http fetch GET 304 <a href="https://registry.npmjs.org/through" rel="nofollow">https://registry.npmjs.org/through</a> 33391ms (from cache)<br>
971 http fetch GET 304 <a href="https://registry.npmjs.org/is-docker" rel="nofollow">https://registry.npmjs.org/is-docker</a> 33376ms (from cache)<br>
972 http fetch GET 304 <a href="https://registry.npmjs.org/define-lazy-prop" rel="nofollow">https://registry.npmjs.org/define-lazy-prop</a> 33381ms (from cache)<br>
973 http fetch GET 304 <a href="https://registry.npmjs.org/figures" rel="nofollow">https://registry.npmjs.org/figures</a> 33444ms (from cache)<br>
974 http fetch GET 304 <a href="https://registry.npmjs.org/brace-expansion" rel="nofollow">https://registry.npmjs.org/brace-expansion</a> 33397ms (from cache)<br>
975 http fetch GET 304 <a href="https://registry.npmjs.org/is-wsl" rel="nofollow">https://registry.npmjs.org/is-wsl</a> 33415ms (from cache)<br>
976 http fetch GET 304 <a href="https://registry.npmjs.org/bl" rel="nofollow">https://registry.npmjs.org/bl</a> 33417ms (from cache)<br>
977 http fetch GET 304 <a href="https://registry.npmjs.org/@npmcli%2fmove-file" rel="nofollow">https://registry.npmjs.org/@npmcli%2fmove-file</a> 33577ms (from cache)<br>
978 http fetch GET 304 <a href="https://registry.npmjs.org/cli-spinners" rel="nofollow">https://registry.npmjs.org/cli-spinners</a> 33438ms (from cache)<br>
979 http fetch GET 304 <a href="https://registry.npmjs.org/is-interactive" rel="nofollow">https://registry.npmjs.org/is-interactive</a> 33472ms (from cache)<br>
980 http fetch GET 304 <a href="https://registry.npmjs.org/log-symbols" rel="nofollow">https://registry.npmjs.org/log-symbols</a> 33473ms (from cache)<br>
981 http fetch GET 200 <a href="https://registry.npmjs.org/mem" rel="nofollow">https://registry.npmjs.org/mem</a> 33452ms<br>
982 http fetch GET 304 <a href="https://registry.npmjs.org/wcwidth" rel="nofollow">https://registry.npmjs.org/wcwidth</a> 33498ms (from cache)<br>
983 http fetch GET 304 <a href="https://registry.npmjs.org/is-unicode-supported" rel="nofollow">https://registry.npmjs.org/is-unicode-supported</a> 33501ms (from cache)<br>
984 http fetch GET 304 <a href="https://registry.npmjs.org/safer-buffer" rel="nofollow">https://registry.npmjs.org/safer-buffer</a> 33467ms (from cache)<br>
985 http fetch GET 304 <a href="https://registry.npmjs.org/iconv-lite" rel="nofollow">https://registry.npmjs.org/iconv-lite</a> 33481ms (from cache)<br>
986 http fetch GET 200 <a href="https://registry.npmjs.org/commander" rel="nofollow">https://registry.npmjs.org/commander</a> 33727ms<br>
987 http fetch GET 200 <a href="https://registry.npmjs.org/memfs" rel="nofollow">https://registry.npmjs.org/memfs</a> 33754ms<br>
988 http fetch GET 200 <a href="https://registry.npmjs.org/electron-to-chromium" rel="nofollow">https://registry.npmjs.org/electron-to-chromium</a> 44106ms<br>
989 timing npm Completed in 174201ms<br>
990 error cb() never called!<br>
991 error This is an error with npm itself. Please report this error at:<br>
992 error <a href="https://github.com/npm/cli/issues">https://github.com/npm/cli/issues</a></p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>In this environment...</li>
<li>With this config...</li>
<li>Run '...'</li>
<li>See error...</li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>
<p dir="auto">OS: Win10</p>
</li>
<li>
<p dir="auto">Node: v14.17.0</p>
</li>
<li>
<p dir="auto">npm: 7.12.1</p>
</li>
</ul> | <p dir="auto">Got log as -<br>
....<br>
17882 silly extract @angular/material@^8.2.3 extracted to /aaa/node_modules/.staging/@angular/material-c86959f3 (6596ms)<br>
17883 silly extract rxjs@~6.4.0 extracted to /aaa/node_modules/.staging/rxjs-80013a51 (5195ms)<br>
17884 timing npm Completed in 25058ms<br>
17885 error cb() never called!<br>
17886 error This is an error with npm itself. Please report this error at:<br>
17887 error <a href="https://npm.community" rel="nofollow">https://npm.community</a></p>
<p dir="auto">on iMac, Mojave<br>
node -v<br>
v11.15.0</p>
<p dir="auto">npm -v<br>
6.7.0</p> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
On webpack 5, The global array <code class="notranslate">self["webpackChunkxxx"]</code> may contain same chunk more times when using splitChunks. When using webpack 4, it runs ok.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<blockquote>
<p dir="auto">or see <a href="https://github.com/zphhhhh/webpack-bug">https://github.com/zphhhhh/webpack-bug</a> only well~</p>
</blockquote>
<p dir="auto">we use a global array like <code class="notranslate">self["webpackChunkxxx"]</code> to cache existing chunks, but it contains same chunk more times because <code class="notranslate">parentChunkLoadingFunction(data);</code>, see the output code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var webpackJsonpCallback = (data) => {
// ...
if (runtime) runtime(__webpack_require__);
parentChunkLoadingFunction(data);
while (resolves.length) {
resolves.shift()();
}
// add entry modules from loaded chunk to deferred list
if (executeModules) deferredModules.push.apply(deferredModules, executeModules);
// run deferred modules when all chunks ready
return checkDeferredModules();
}
var chunkLoadingGlobal = self["webpackChunkwebpack_bug"] = self["webpackChunkwebpack_bug"] || [];
var parentChunkLoadingFunction = chunkLoadingGlobal.push.bind(chunkLoadingGlobal);
chunkLoadingGlobal.push = webpackJsonpCallback;"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-en">webpackJsonpCallback</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">data</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// ...</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">runtime</span><span class="pl-kos">)</span> <span class="pl-en">runtime</span><span class="pl-kos">(</span><span class="pl-s1">__webpack_require__</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">parentChunkLoadingFunction</span><span class="pl-kos">(</span><span class="pl-s1">data</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">while</span> <span class="pl-kos">(</span><span class="pl-s1">resolves</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">resolves</span><span class="pl-kos">.</span><span class="pl-en">shift</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">// add entry modules from loaded chunk to deferred list</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">executeModules</span><span class="pl-kos">)</span> <span class="pl-s1">deferredModules</span><span class="pl-kos">.</span><span class="pl-c1">push</span><span class="pl-kos">.</span><span class="pl-en">apply</span><span class="pl-kos">(</span><span class="pl-s1">deferredModules</span><span class="pl-kos">,</span> <span class="pl-s1">executeModules</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// run deferred modules when all chunks ready</span>
<span class="pl-k">return</span> <span class="pl-en">checkDeferredModules</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">chunkLoadingGlobal</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span><span class="pl-kos">[</span><span class="pl-s">"webpackChunkwebpack_bug"</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span><span class="pl-kos">[</span><span class="pl-s">"webpackChunkwebpack_bug"</span><span class="pl-kos">]</span> <span class="pl-c1">||</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">parentChunkLoadingFunction</span> <span class="pl-c1">=</span> <span class="pl-s1">chunkLoadingGlobal</span><span class="pl-kos">.</span><span class="pl-c1">push</span><span class="pl-kos">.</span><span class="pl-en">bind</span><span class="pl-kos">(</span><span class="pl-s1">chunkLoadingGlobal</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">chunkLoadingGlobal</span><span class="pl-kos">.</span><span class="pl-c1">push</span> <span class="pl-c1">=</span> <span class="pl-en">webpackJsonpCallback</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<blockquote>
</blockquote>
<p dir="auto">The global array <code class="notranslate">self["webpackChunkxxx"]</code> should contain same chunk just one time,<br>
and <strong>when using webpack 4, it runs ok</strong></p>
<p dir="auto">You could change deps to webpack 4 in the Repo <a href="https://github.com/zphhhhh/webpack-bug">https://github.com/zphhhhh/webpack-bug</a> , then it runs ok.</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: latest, 5.10.0<br>
Node.js version: v12.18.2<br>
Operating System: macOS 10.15.6<br>
Additional tools:</p> | <p dir="auto"><strong>I'm submitting a feature request</strong><br>
webpack 2.1.0-beta.15<br>
Windows 10</p>
<p dir="auto"><strong>Current behavior:</strong><br>
<code class="notranslate">webpack --color</code> uses webpack.config.js and packs my project displaying color on the terminal<br>
<code class="notranslate">webpack</code> packs my project, ts-loader still shows color<br>
<code class="notranslate">webpack --colors</code> shows help and usage information<br>
along with error "Unknown argument: colors"</p>
<p dir="auto"><strong>Expected/desired behavior:</strong><br>
<code class="notranslate">webpack --color</code> shows same</p>
<ul dir="auto">
<li><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem along with a gist/jsbin of your webpack configuration.</strong></li>
<li><strong>What is the expected behavior?</strong></li>
<li><strong>What is the motivation / use case for changing the behavior?</strong></li>
<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>
<li><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5 | Dart | ...]</li>
</ul> | 0 |
<h5 dir="auto">Description of the problem</h5>
<p dir="auto">I have a .obj and .mtl which load textures from .tga files. This all seems to work / look fine in 3D modeling software, but when loaded with three.js (THREE.WebGLRenderer({ antialias: true })) some of the object's children, (specifically between the knees and the calves, but not, for example, the pockets and legs), seem to have a transparent jagged gap / empty triangles. (Tried turning on antialiasing, changing the overdraw value, turning off transparency, etc.)</p>
<p dir="auto">Demo project and files: <a href="https://github.com/mrdoob/three.js/files/667507/demo.zip">demo.zip</a></p>
<p dir="auto">Potential problem area: "Forgive my ignorance, but code starting at line 306 in OBJLoader.js seems to imply a fixed side limit/requirement for all faces. The obj file in question shows some faces with more than 4 sides. For example see line 60067 in the obj file. There are more after. It's as if a cut tool has healed cut seams with complex faces." - <a href="http://stackoverflow.com/users/3311552/radio" rel="nofollow">http://stackoverflow.com/users/3311552/radio</a></p>
<p dir="auto">Screenshots and more details (including discussion): <a href="http://stackoverflow.com/questions/41154498/threejs-some-material-texture-faces-triangles-not-rendering/41257937#41257937" rel="nofollow">http://stackoverflow.com/questions/41154498/threejs-some-material-texture-faces-triangles-not-rendering/41257937#41257937</a></p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r83</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> r82</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> IOS</li>
</ul> | <h5 dir="auto">Description of the problem</h5>
<p dir="auto"><code class="notranslate">Loader</code> document mentions</p>
<blockquote>
<p dir="auto">Base class for implementing loaders.</p>
</blockquote>
<p dir="auto"><a href="https://threejs.org/docs/#api/en/loaders/Loader" rel="nofollow">https://threejs.org/docs/#api/en/loaders/Loader</a></p>
<p dir="auto">But with <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="418907276" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/15933" data-hovercard-type="pull_request" data-hovercard-url="/mrdoob/three.js/pull/15933/hovercard" href="https://github.com/mrdoob/three.js/pull/15933">#15933</a>, no loader will inherit <code class="notranslate">Loader</code>.</p>
<p dir="auto">And Some loaders use <code class="notranslate">Loader.Handlers</code>. We may be able to move <code class="notranslate">Handlers</code> into <code class="notranslate">LoaderUtils</code> or somewhere. <code class="notranslate">CTMLoader</code> and <code class="notranslate">LegacyJSONLoader</code> call <code class="notranslate">Loader.createMaterial()/.initMaterials()</code>, we also may be able to move these methods somewhere.</p>
<p dir="auto">We may be able to remove <code class="notranslate">Loader</code>.</p>
<h5 dir="auto">Three.js version</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> r102</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li>
</ul>
<h5 dir="auto">Browser</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li>
</ul>
<h5 dir="auto">OS</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> macOS</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> | 0 |
<p dir="auto">I'm interested in writing a typescript transform that rewrites all of the Import declarations to named identifiers and outputs an import map. The idea being that this could be the basis for a frontend dependency management tool that could handle semver resolution and deduping transitive dependencies. As far as I can tell there's no way to pass transforms via the Compiler API. Adding the ability to do so could potentially open up a wide range of output customizations.</p>
<p dir="auto">Alternatively I could write a tool that does that before deno is called, but I'd prefer the above approach because aking multiple passes at the source code would be slower than making a single pass</p> | <p dir="auto">In regular TypeScript projects, within a <code class="notranslate">.js</code> file with type checking enabled via <code class="notranslate">// @ts-check</code> you can import types from other files within JSDoc comments. For example…</p>
<p dir="auto">In <code class="notranslate">a.js</code>:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// @ts-check
/**
* Description for A.
* @param {import("./b.js").default} b The B.
*/
export default function a(b) {
return b;
}"><pre class="notranslate"><span class="pl-c">// <span class="pl-k">@ts</span>-check</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Description for A.</span>
<span class="pl-c"> * <span class="pl-k">@param</span> {<span class="pl-smi">import("./b.js").default</span>} b The B.</span>
<span class="pl-c"> */</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-k">function</span> <span class="pl-en">a</span><span class="pl-kos">(</span><span class="pl-s1">b</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s1">b</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">In <code class="notranslate">b.js</code>:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// @ts-check
/**
* Description for B.
* @type {boolean}
*/
export default true;"><pre class="notranslate"><span class="pl-c">// <span class="pl-k">@ts</span>-check</span>
<span class="pl-c">/**</span>
<span class="pl-c"> * Description for B.</span>
<span class="pl-c"> * <span class="pl-k">@type</span> {boolean}</span>
<span class="pl-c"> */</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-c1">true</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Note that the parameter type is able to be imported and checked:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1754873/125215375-b1f31300-e2fe-11eb-868d-579603538688.png"><img width="453" alt="Screen Shot 2021-07-12 at 10 43 26 am" src="https://user-images.githubusercontent.com/1754873/125215375-b1f31300-e2fe-11eb-868d-579603538688.png" style="max-width: 100%;"></a></p>
<p dir="auto">With exactly the same setup in a Deno project, the parameter type cannot be imported or checked:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1754873/125215443-db13a380-e2fe-11eb-9705-318b642ce12b.png"><img width="447" alt="Screen Shot 2021-07-12 at 10 43 07 am" src="https://user-images.githubusercontent.com/1754873/125215443-db13a380-e2fe-11eb-9705-318b642ce12b.png" style="max-width: 100%;"></a></p>
<p dir="auto">This not working in Deno, with no open issues about it has really made the past few days trying to get an isomorphic codebase with a mixture of <code class="notranslate">.ts</code>, <code class="notranslate">.tsx</code>, and <code class="notranslate">.js</code> files a nightmare, because it's hard to tell if it's you or Deno that's doing the wrong thing. I <em>think</em> if this Deno bug were fixed I'd finally have a workable solution!</p> | 0 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: 1.19.2</li>
<li>Operating System: macOS</li>
<li>Node.js version: 14.x</li>
<li>Browser: Chromium</li>
<li>Extra: CI environment (Azure Pipelines)</li>
</ul>
<p dir="auto"><strong>Describe the bug</strong></p>
<p dir="auto">I just recently wanted to update to the <code class="notranslate">1.19.x</code> release line for our tests in VSCode and now noticed how our smoke tests in web are almost 100% slower:</p>
<p dir="auto"><strong>OLD</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/900690/155985004-d6649512-6dbb-48ba-aa06-69974efc6ad0.png"><img src="https://user-images.githubusercontent.com/900690/155985004-d6649512-6dbb-48ba-aa06-69974efc6ad0.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>NEW</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/900690/155985026-74025ea1-b3dd-4884-9112-b6ce71b7f8a8.png"><img src="https://user-images.githubusercontent.com/900690/155985026-74025ea1-b3dd-4884-9112-b6ce71b7f8a8.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">At first glance I could not find a single operation that would be slower, it seems like the entire run is slower, getting us closer to a 10 minute timeout we configured.</p>
<p dir="auto">Starting an issue here to ask: has this been reported by others, how can we drill into this further?</p> | <p dir="auto"><strong>Context:</strong></p>
<blockquote>
<p dir="auto">Playwright Version: [1.21.1]<br>
Operating System: [Windows]<br>
Node.js version: [14.15.1]<br>
Browser: [Chrome]<br>
Chrome version: [Version 101.0.4951.54]</p>
</blockquote>
<p dir="auto"><strong>Code Snippet</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test('Demo Test Scenario:', async ({ page }) => {
await page.goto('https://usk.enterprisetube.com/');
await page.waitForSelector('[data-e2e-span="vidizmo-app"]', { state : "attached" });
await page.click('[data-e2e-link="LoginSignInButton"]');
await page.fill('[data-e2e-input="emailAddress"]', '[email protected]');
await page.fill('[data-e2e-input="Password"]', 'Admin@123');
await page.click('[data-e2e-btn="signIn"]');
await page.waitForSelector('[data-e2e-heading="MashupsMostMostRecent"]')
await page.click('[data-e2e-link="selectMenuBar"]');
await page.click('[data-e2e-link="MediaManager"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
}); "><pre class="notranslate"><code class="notranslate">test('Demo Test Scenario:', async ({ page }) => {
await page.goto('https://usk.enterprisetube.com/');
await page.waitForSelector('[data-e2e-span="vidizmo-app"]', { state : "attached" });
await page.click('[data-e2e-link="LoginSignInButton"]');
await page.fill('[data-e2e-input="emailAddress"]', '[email protected]');
await page.fill('[data-e2e-input="Password"]', 'Admin@123');
await page.click('[data-e2e-btn="signIn"]');
await page.waitForSelector('[data-e2e-heading="MashupsMostMostRecent"]')
await page.click('[data-e2e-link="selectMenuBar"]');
await page.click('[data-e2e-link="MediaManager"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
await page.click('[data-e2e-btn="toggleFilters"]');
});
</code></pre></div>
<p dir="auto"><strong>Describe the bug</strong><br>
If we run the above code when the trace is on in the config then it completes within the 30-40 seconds, if the trace is off then it completes in the 7-8 seconds in the latest chrome version but in the chrome version 95 in both cases time is same<br>
following are the results of the test</p>
<h2 dir="auto"><strong>Chrome Version : Version 101.0.4951.54</strong></h2>
<p dir="auto">Trace <strong>On</strong> in config<br>
takes <strong>30-40</strong> Seconds</p>
<p dir="auto">Trace <strong>off</strong> in config<br>
takes <strong>7</strong> Seconds</p>
<h2 dir="auto"><strong>Chrome Version : Version 95</strong></h2>
<p dir="auto">Trace <strong>On</strong> in config<br>
takes <strong>7</strong> Seconds</p>
<p dir="auto">Trace <strong>off</strong> in config<br>
takes <strong>7-8</strong> Seconds</p>
<p dir="auto">Configuration file</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const config: PlaywrightTestConfig = {
testDir: './tests',
timeout: 30 * 1000,
expect: {
timeout: 5000
},
forbidOnly: !!process.env.CI,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
actionTimeout: 0,
channel : "chrome",
trace: 'off',
},
};
export default config;"><pre class="notranslate"><code class="notranslate">const config: PlaywrightTestConfig = {
testDir: './tests',
timeout: 30 * 1000,
expect: {
timeout: 5000
},
forbidOnly: !!process.env.CI,
workers: process.env.CI ? 1 : undefined,
reporter: 'html',
use: {
actionTimeout: 0,
channel : "chrome",
trace: 'off',
},
};
export default config;
</code></pre></div>
<p dir="auto">I can also provide the sample github repository if needed</p>
<p dir="auto">This issue is related to following Bug <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1201157204" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/13498" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright/issues/13498/hovercard" href="https://github.com/microsoft/playwright/issues/13498">#13498</a></p> | 1 |
<p dir="auto">Hello,</p>
<p dir="auto">I discovered that my Seaborn-dependent package gets, as far as I can tell, eternally stuck when creating a displot histogram if using Seaborn==0.11.2 (matplotlib==3.4.2). Everything functions as intended on Seaborn v0.11.0 and 0.11.1.</p>
<p dir="auto">While solving the issue, I narrowed the problem down to <strong>row 400 of distributions.py plot_univariate_histogram()</strong>:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="all_data = self.comp_data.dropna()"><pre class="notranslate"><span class="pl-s1">all_data</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">comp_data</span>.<span class="pl-en">dropna</span>()</pre></div>
<p dir="auto">I was not able to view contents of self.comp_data on PyCharm's debugger, so that's the likely culprit.</p>
<p dir="auto">Furthermore, I tested that the problem occurs with a melted & merged Data Frame that <strong>has repeated indices</strong>. Resetting of the index solves the problem and the distributions are plotted within seconds. While altering my code solved this for me, I bring this to your attention as I feel like this (at least the Python getting stuck part) is not intended.</p>
<h3 dir="auto">Data and code</h3>
<p dir="auto">Note: '<em>Old ind</em>' are the indices before resetting, and '<em>Reset ind</em>' after reset.</p>
<table role="table">
<thead>
<tr>
<th>Reset ind</th>
<th>Old ind</th>
<th>Channel</th>
<th>DistBin</th>
<th>Sample Group</th>
<th>Type</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>0</td>
<td>DAPI10x</td>
<td>0</td>
<td>Ctrl</td>
<td>Area</td>
<td>31.2650</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>DAPI10x</td>
<td>0</td>
<td>Ctrl</td>
<td>Area</td>
<td>24.9275</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>DAPI10x</td>
<td>0</td>
<td>Ctrl</td>
<td>Area</td>
<td>81.1201</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>DAPI10x</td>
<td>0</td>
<td>Ctrl</td>
<td>Area</td>
<td>49.4325</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
<td>DAPI10x</td>
<td>0</td>
<td>Ctrl</td>
<td>Area</td>
<td>22.3925</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>1596983</td>
<td>40167</td>
<td>DAPI10x</td>
<td>61</td>
<td>MutB</td>
<td>Volume</td>
<td>287.5537</td>
</tr>
<tr>
<td>1596984</td>
<td>40168</td>
<td>DAPI10x</td>
<td>61</td>
<td>MutB</td>
<td>Volume</td>
<td>287.5537</td>
</tr>
<tr>
<td>1596985</td>
<td>40169</td>
<td>DAPI10x</td>
<td>61</td>
<td>MutB</td>
<td>Volume</td>
<td>349.9147</td>
</tr>
<tr>
<td>1596986</td>
<td>40170</td>
<td>DAPI10x</td>
<td>61</td>
<td>MutB</td>
<td>Volume</td>
<td>453.8498</td>
</tr>
<tr>
<td>1596987</td>
<td>40171</td>
<td>DAPI10x</td>
<td>61</td>
<td>MutB</td>
<td>Volume</td>
<td>204.4056</td>
</tr>
</tbody>
</table>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="row_order = data.loc[:, 'Type'].unique()
plot_palette = {'Ctrl': (0.39215686274509803, 0.5333333333333333, 0.9176470588235294),
'MutB': (0.9803921568627451, 0.7607843137254902, 0.0196078431372549)}
sns.displot(data=data, x='Value', hue='Sample Group', col=None, row='Type', alpha=0.4, kind='hist',
stat='probability', palette=plot_palette, kde=True, height=2.5, aspect=2.25,
row_order=row_order, discrete=False, multiple='stack',
facet_kws={'legend_out': True, 'sharex': False, 'sharey': False,
'gridspec_kws': {'top': 0.92, 'left': 0.15, 'right': 0.8, 'hspace': 0.6}}
)"><pre class="notranslate"><span class="pl-s1">row_order</span> <span class="pl-c1">=</span> <span class="pl-s1">data</span>.<span class="pl-s1">loc</span>[:, <span class="pl-s">'Type'</span>].<span class="pl-en">unique</span>()
<span class="pl-s1">plot_palette</span> <span class="pl-c1">=</span> {<span class="pl-s">'Ctrl'</span>: (<span class="pl-c1">0.39215686274509803</span>, <span class="pl-c1">0.5333333333333333</span>, <span class="pl-c1">0.9176470588235294</span>),
<span class="pl-s">'MutB'</span>: (<span class="pl-c1">0.9803921568627451</span>, <span class="pl-c1">0.7607843137254902</span>, <span class="pl-c1">0.0196078431372549</span>)}
<span class="pl-s1">sns</span>.<span class="pl-en">displot</span>(<span class="pl-s1">data</span><span class="pl-c1">=</span><span class="pl-s1">data</span>, <span class="pl-s1">x</span><span class="pl-c1">=</span><span class="pl-s">'Value'</span>, <span class="pl-s1">hue</span><span class="pl-c1">=</span><span class="pl-s">'Sample Group'</span>, <span class="pl-s1">col</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">row</span><span class="pl-c1">=</span><span class="pl-s">'Type'</span>, <span class="pl-s1">alpha</span><span class="pl-c1">=</span><span class="pl-c1">0.4</span>, <span class="pl-s1">kind</span><span class="pl-c1">=</span><span class="pl-s">'hist'</span>,
<span class="pl-s1">stat</span><span class="pl-c1">=</span><span class="pl-s">'probability'</span>, <span class="pl-s1">palette</span><span class="pl-c1">=</span><span class="pl-s1">plot_palette</span>, <span class="pl-s1">kde</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">height</span><span class="pl-c1">=</span><span class="pl-c1">2.5</span>, <span class="pl-s1">aspect</span><span class="pl-c1">=</span><span class="pl-c1">2.25</span>,
<span class="pl-s1">row_order</span><span class="pl-c1">=</span><span class="pl-s1">row_order</span>, <span class="pl-s1">discrete</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">multiple</span><span class="pl-c1">=</span><span class="pl-s">'stack'</span>,
<span class="pl-s1">facet_kws</span><span class="pl-c1">=</span>{<span class="pl-s">'legend_out'</span>: <span class="pl-c1">True</span>, <span class="pl-s">'sharex'</span>: <span class="pl-c1">False</span>, <span class="pl-s">'sharey'</span>: <span class="pl-c1">False</span>,
<span class="pl-s">'gridspec_kws'</span>: {<span class="pl-s">'top'</span>: <span class="pl-c1">0.92</span>, <span class="pl-s">'left'</span>: <span class="pl-c1">0.15</span>, <span class="pl-s">'right'</span>: <span class="pl-c1">0.8</span>, <span class="pl-s">'hspace'</span>: <span class="pl-c1">0.6</span>}}
)</pre></div> | <p dir="auto">I am using <code class="notranslate">histplot</code> for plotting simple histogram plots for medium sized data-sizes.</p>
<p dir="auto">I was using <code class="notranslate">histplot</code> for histogram determinations in my dataset using 0.11.1 and all worked very nicely and fast.</p>
<p dir="auto">Then upon upgrading to 0.11.2 it suddenly never finishes and I am stuck in plotting stuff...</p>
<p dir="auto">I have a plotting script looking like this:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="plt.figure()
sns.histplot(data=df, x="AllocCores", binwidth=1, discrete=True, log_scale=(False, True))"><pre class="notranslate"><span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">sns</span>.<span class="pl-en">histplot</span>(<span class="pl-s1">data</span><span class="pl-c1">=</span><span class="pl-s1">df</span>, <span class="pl-s1">x</span><span class="pl-c1">=</span><span class="pl-s">"AllocCores"</span>, <span class="pl-s1">binwidth</span><span class="pl-c1">=</span><span class="pl-c1">1</span>, <span class="pl-s1">discrete</span><span class="pl-c1">=</span><span class="pl-c1">True</span>, <span class="pl-s1">log_scale</span><span class="pl-c1">=</span>(<span class="pl-c1">False</span>, <span class="pl-c1">True</span>))</pre></div>
<p dir="auto">The data-frame has 789412 entries and the span of the data <code class="notranslate">df["AllocCores"].min / max</code> is <code class="notranslate">1, 1200</code>. So 1200 bins which I agree is very large but required in our analysis plots ;)</p>
<p dir="auto">Using <strong>0.11.1</strong> I get this:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$> time python script.py
seaborn version = 0.11.1
Starting to plot...
Choosing binwidth = 120
Choosing binwidth = 1070
Choosing binwidth = 16
Choosing binwidth = 16
python script.py 40.34s user 0.83s system 155% cpu 26.479 total"><pre class="notranslate">$<span class="pl-k">></span> <span class="pl-k">time</span> python script.py
seaborn version = 0.11.1
Starting to plot...
Choosing binwidth = 120
Choosing binwidth = 1070
Choosing binwidth = 16
Choosing binwidth = 16
python script.py 40.34s user 0.83s system 155% cpu 26.479 total</pre></div>
<p dir="auto">note that this is plotting 16 files in less than a minute.</p>
<p dir="auto">Using <strong>0.11.2</strong> I get this:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$> time python script.py
seaborn version = 0.11.2
Starting to plot..."><pre class="notranslate">$<span class="pl-k">></span> <span class="pl-k">time</span> python script.py
seaborn version = 0.11.2
Starting to plot...</pre></div>
<p dir="auto">it basically never ends... I have waited more than 10 minutes, but it isn't even done with the 1st plot.</p>
<p dir="auto">When killing it <code class="notranslate">Ctrl+^C</code> I get this stack-trace:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" File "script.py", line 96, in <module>
plot_alloccores(df)
File ".../script_lib.py", line 98, in plot_alloccores
sns.histplot(data=df, x="AllocCores", binwidth=1, discrete=True, log_scale=(False, True))
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py", line 1462, in histplot
p.plot_univariate_histogram(
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py", line 428, in plot_univariate_histogram
for sub_vars, sub_data in self.iter_data("hue", from_comp_data=True):
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py", line 983, in iter_data
data = self.comp_data
File "/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py", line 1057, in comp_data
comp_col.loc[orig.index] = pd.to_numeric(axis.convert_units(orig))
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py", line 671, in __setitem__
self._setitem_with_indexer(indexer, value)
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py", line 1055, in _setitem_with_indexer
value = self._align_series(indexer, Series(value))
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py", line 1173, in _align_series
ser = ser.reindex(obj.axes[0][indexer[0]], copy=True)._values
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/series.py", line 4030, in reindex
return super().reindex(index=index, **kwargs)
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py", line 4543, in reindex
return self._reindex_axes(
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py", line 4558, in _reindex_axes
new_index, indexer = ax.reindex(
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py", line 3153, in reindex
indexer, missing = self.get_indexer_non_unique(target)
File "/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py", line 4486, in get_indexer_non_unique
indexer, missing = self._engine.get_indexer_non_unique(tgt_values)
File "pandas/_libs/index.pyx", line 354, in pandas._libs.index.IndexEngine.get_indexer_non_unique
File "<__array_function__ internals>", line 5, in resize
File "/opt/gnu/9.3.0/python/packages/3.8.5/numpy/1.19.1/lib/python3.8/site-packages/numpy-1.19.1-py3.8-linux-x86_64.egg/numpy/core/fromnumeric.py", line 1417, in resize
a = concatenate((a,) * n_copies)
File "<__array_function__ internals>", line 5, in concatenate
KeyboardInterrupt"><pre class="notranslate"> File <span class="pl-s"><span class="pl-pds">"</span>script.py<span class="pl-pds">"</span></span>, line 96, <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
plot_alloccores(df)
File <span class="pl-s"><span class="pl-pds">"</span>.../script_lib.py<span class="pl-pds">"</span></span>, line 98, <span class="pl-k">in</span> plot_alloccores
sns.histplot(data=df, x=<span class="pl-s"><span class="pl-pds">"</span>AllocCores<span class="pl-pds">"</span></span>, binwidth=1, discrete=True, log_scale=(False, True))
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py<span class="pl-pds">"</span></span>, line 1462, <span class="pl-k">in</span> histplot
p.plot_univariate_histogram(
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/distributions.py<span class="pl-pds">"</span></span>, line 428, <span class="pl-k">in</span> plot_univariate_histogram
<span class="pl-k">for</span> <span class="pl-smi">sub_vars, sub_data</span> <span class="pl-k">in</span> self.iter_data(<span class="pl-s"><span class="pl-pds">"</span>hue<span class="pl-pds">"</span></span>, from_comp_data=True):
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py<span class="pl-pds">"</span></span>, line 983, <span class="pl-k">in</span> iter_data
data = self.comp_data
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/3.8.5/lib/python3.8/site-packages/seaborn/_core.py<span class="pl-pds">"</span></span>, line 1057, <span class="pl-k">in</span> comp_data
comp_col.loc[orig.index] = pd.to_numeric(axis.convert_units(orig))
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py<span class="pl-pds">"</span></span>, line 671, <span class="pl-k">in</span> __setitem__
self._setitem_with_indexer(indexer, value)
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py<span class="pl-pds">"</span></span>, line 1055, <span class="pl-k">in</span> _setitem_with_indexer
value = self._align_series(indexer, Series(value))
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexing.py<span class="pl-pds">"</span></span>, line 1173, <span class="pl-k">in</span> _align_series
ser = ser.reindex(obj.axes[0][indexer[0]], copy<span class="pl-k">=</span>True)._values
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/series.py<span class="pl-pds">"</span></span>, line 4030, <span class="pl-k">in</span> reindex
<span class="pl-k">return</span> <span class="pl-en">super</span>().reindex(index=index, <span class="pl-k">**</span>kwargs)
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py<span class="pl-pds">"</span></span>, line 4543, <span class="pl-k">in</span> reindex
<span class="pl-k">return</span> self._reindex_axes(
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/generic.py<span class="pl-pds">"</span></span>, line 4558, <span class="pl-k">in</span> _reindex_axes
new_index, indexer = ax.reindex(
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py<span class="pl-pds">"</span></span>, line 3153, <span class="pl-k">in</span> reindex
indexer, missing = self.get_indexer_non_unique(target)
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/pandas/1.0.5/lib/python3.8/site-packages/pandas-1.0.5-py3.8-linux-x86_64.egg/pandas/core/indexes/base.py<span class="pl-pds">"</span></span>, line 4486, <span class="pl-k">in</span> get_indexer_non_unique
indexer, missing = self._engine.get_indexer_non_unique(tgt_values)
File <span class="pl-s"><span class="pl-pds">"</span>pandas/_libs/index.pyx<span class="pl-pds">"</span></span>, line 354, <span class="pl-k">in</span> pandas._libs.index.IndexEngine.get_indexer_non_unique
File <span class="pl-s"><span class="pl-pds">"</span><__array_function__ internals><span class="pl-pds">"</span></span>, line 5, <span class="pl-k">in</span> resize
File <span class="pl-s"><span class="pl-pds">"</span>/opt/gnu/9.3.0/python/packages/3.8.5/numpy/1.19.1/lib/python3.8/site-packages/numpy-1.19.1-py3.8-linux-x86_64.egg/numpy/core/fromnumeric.py<span class="pl-pds">"</span></span>, line 1417, <span class="pl-k">in</span> resize
a = concatenate<span class="pl-s"><span class="pl-pds">((</span>a<span class="pl-k">,</span>) <span class="pl-k">*</span> n_copies)</span>
<span class="pl-s"> File "<__array_function__ internals>", line <span class="pl-c1">5</span>, in concatenate</span>
<span class="pl-s">KeyboardInterrupt</span></pre></div>
<p dir="auto">I hope that this can provide enough details for finding the regression, if not and you require some kind of data-set, let me know and I'll try to cook something out. There is some sensitive data that I can't share. But I may be able to fiddle with the entries if this may aid?</p> | 1 |
<p dir="auto">ex. one space click will become 2, a "arrow left" key will actually go up 2 levels</p> | <ul dir="auto">
<li>No drop-down for Cut,Copy &Paste Only Reveal in Tree View shown<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6115991/4435398/a543f46c-4742-11e4-87de-1153004b0f98.png"><img src="https://cloud.githubusercontent.com/assets/6115991/4435398/a543f46c-4742-11e4-87de-1153004b0f98.png" alt="capture1" style="max-width: 100%;"></a></li>
<li>Pasting any text using Ctrl+v causes pasting text twice<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6115991/4435410/46554ef0-4743-11e4-941b-fc2a447cf23e.PNG"><img src="https://cloud.githubusercontent.com/assets/6115991/4435410/46554ef0-4743-11e4-941b-fc2a447cf23e.PNG" alt="capture2" style="max-width: 100%;"></a></li>
<li>Backspace deletes 2 characters<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6115991/4435415/9d7b7b28-4743-11e4-9694-5ff09b9e37ea.PNG"><img src="https://cloud.githubusercontent.com/assets/6115991/4435415/9d7b7b28-4743-11e4-9694-5ff09b9e37ea.PNG" alt="capture3" style="max-width: 100%;"></a></li>
<li>Right key moves 2 cursor further<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6115991/4435438/6b6aa1a8-4744-11e4-8ab7-b339c7a216d5.PNG"><img src="https://cloud.githubusercontent.com/assets/6115991/4435438/6b6aa1a8-4744-11e4-8ab7-b339c7a216d5.PNG" alt="capture4" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6115991/4435439/6b74d2f4-4744-11e4-9345-841981075e00.PNG"><img src="https://cloud.githubusercontent.com/assets/6115991/4435439/6b74d2f4-4744-11e4-9345-841981075e00.PNG" alt="capture5" style="max-width: 100%;"></a></li>
<li>Down key moves 2 lines down</li>
</ul>
<p dir="auto"><strong>Information</strong><br>
Atom Version: 0.132.0<br>
OS: Windows 8.1</p> | 1 |
<h3 dir="auto">Problem</h3>
<p dir="auto">(A follow-up on <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="933456597" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/20548" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/20548/hovercard" href="https://github.com/matplotlib/matplotlib/issues/20548">#20548</a>.)</p>
<p dir="auto">The purpose of contour and tricontour is to draw contour lines along given levels. The algorithm tries to close the contour loops, but sometimes that's not possible or useful. Example:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import matplotlib.pyplot as plt
xmin, xmax = -3.0, 3.0
ymin, ymax = -3.0, 3.0
nx, ny = 500, 500
def f(z):
return np.angle(z)
x = np.linspace(xmin, xmax, nx)
y = np.linspace(ymin, ymax, ny)
X, Y = np.meshgrid(x, y)
fZ = f(X + 1j * Y)
c = plt.contour(X, Y, fZ, levels=[0.7853981633974483], colors="k")
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">xmin</span>, <span class="pl-s1">xmax</span> <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">3.0</span>, <span class="pl-c1">3.0</span>
<span class="pl-s1">ymin</span>, <span class="pl-s1">ymax</span> <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">3.0</span>, <span class="pl-c1">3.0</span>
<span class="pl-s1">nx</span>, <span class="pl-s1">ny</span> <span class="pl-c1">=</span> <span class="pl-c1">500</span>, <span class="pl-c1">500</span>
<span class="pl-k">def</span> <span class="pl-en">f</span>(<span class="pl-s1">z</span>):
<span class="pl-k">return</span> <span class="pl-s1">np</span>.<span class="pl-en">angle</span>(<span class="pl-s1">z</span>)
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-s1">xmin</span>, <span class="pl-s1">xmax</span>, <span class="pl-s1">nx</span>)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-s1">ymin</span>, <span class="pl-s1">ymax</span>, <span class="pl-s1">ny</span>)
<span class="pl-v">X</span>, <span class="pl-v">Y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">meshgrid</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>)
<span class="pl-s1">fZ</span> <span class="pl-c1">=</span> <span class="pl-en">f</span>(<span class="pl-v">X</span> <span class="pl-c1">+</span> <span class="pl-c1">1j</span> <span class="pl-c1">*</span> <span class="pl-v">Y</span>)
<span class="pl-s1">c</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">contour</span>(<span class="pl-v">X</span>, <span class="pl-v">Y</span>, <span class="pl-s1">fZ</span>, <span class="pl-s1">levels</span><span class="pl-c1">=</span>[<span class="pl-c1">0.7853981633974483</span>], <span class="pl-s1">colors</span><span class="pl-c1">=</span><span class="pl-s">"k"</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/181628/136400404-756af36f-1441-420b-9708-1983bec5b31b.png"><img src="https://user-images.githubusercontent.com/181628/136400404-756af36f-1441-420b-9708-1983bec5b31b.png" alt="screenshot" style="max-width: 100%;"></a></p>
<p dir="auto">The left "arm" of the contour is wrong. Let's verify this by computing the values:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="for allseg in c.allsegs:
for seg in allseg:
x, y = seg.T
z = x + 1j * y
print(f(z))"><pre class="notranslate"><span class="pl-k">for</span> <span class="pl-s1">allseg</span> <span class="pl-c1">in</span> <span class="pl-s1">c</span>.<span class="pl-s1">allsegs</span>:
<span class="pl-k">for</span> <span class="pl-s1">seg</span> <span class="pl-c1">in</span> <span class="pl-s1">allseg</span>:
<span class="pl-s1">x</span>, <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">seg</span>.<span class="pl-v">T</span>
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span> <span class="pl-c1">+</span> <span class="pl-c1">1j</span> <span class="pl-c1">*</span> <span class="pl-s1">y</span>
<span class="pl-en">print</span>(<span class="pl-en">f</span>(<span class="pl-s1">z</span>))</pre></div>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[3.14109133 3.14108931 3.14108728 3.14108523 3.14108316 3.14108107
# ...
3.13344468 3.13287655 3.13222326 3.1314641 3.13057109 3.1295054
3.12821158 3.12660761 3.12456683 3.12188272 3.1181943 3.11280868
3.10420637 3.08829091 3.04901618 2.8198421 0.78539816 0.78539816
0.78539816 0.78539816 0.78539816 0.78539816 0.78539816 0.78539816
0.78539816 0.78539816 0.78539816 0.78539816 0.78539816 0.78539816
# ...
.78539816 0.78539816 0.78539816 0.78539816 0.78539816 0.78539816
0.78539816 0.78539816]"><pre class="notranslate">[<span class="pl-c1">3.14109133</span> <span class="pl-c1">3.14108931</span> <span class="pl-c1">3.14108728</span> <span class="pl-c1">3.14108523</span> <span class="pl-c1">3.14108316</span> <span class="pl-c1">3.14108107</span>
<span class="pl-c"># ...</span>
<span class="pl-c1">3.13344468</span> <span class="pl-c1">3.13287655</span> <span class="pl-c1">3.13222326</span> <span class="pl-c1">3.1314641</span> <span class="pl-c1">3.13057109</span> <span class="pl-c1">3.1295054</span>
<span class="pl-c1">3.12821158</span> <span class="pl-c1">3.12660761</span> <span class="pl-c1">3.12456683</span> <span class="pl-c1">3.12188272</span> <span class="pl-c1">3.1181943</span> <span class="pl-c1">3.11280868</span>
<span class="pl-c1">3.10420637</span> <span class="pl-c1">3.08829091</span> <span class="pl-c1">3.04901618</span> <span class="pl-c1">2.8198421</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span>
<span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span>
<span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span>
<span class="pl-c"># ...</span>
.<span class="pl-c1">78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span>
<span class="pl-c1">0.78539816</span> <span class="pl-c1">0.78539816</span>]</pre></div>
<p dir="auto">Note that the specified level is <code class="notranslate">0.7853981633974483</code>, so the first half is completely off. <a href="https://github.com/matplotlib/matplotlib/issues/20548#issuecomment-871232335" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/20548/hovercard">A previous comment</a> suggests that the contouring algorithm is right, though.</p>
<p dir="auto">To fix this, I manually set the corresponding segments to <code class="notranslate">np.nan</code> which prevents plotting. However, this does <em>not</em> work for tricontour as I don't have a function <code class="notranslate">f()</code> that I can evaluate at the segments. The contouring algorithm itself must compute the values somewhere, so my suggestion would be to expose those values to the user.</p> | <p dir="auto">I tried to get a contour plot of the complex angles of a particular function, but always got one level too many around zeros and infinities. Consider the following MWE which is supposed to plot the contour line for <code class="notranslate">pi / 4</code> only. It plots <code class="notranslate">pi / 4</code> alright, but also <code class="notranslate">pi</code>.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import matplotlib.pyplot as plt
xmin, xmax = -3.0, 3.0
ymin, ymax = -3.0, 3.0
nx, ny = 500, 500
x = np.linspace(xmin, xmax, nx)
y = np.linspace(ymin, ymax, ny)
X, Y = np.meshgrid(x, y)
fZ = np.angle(X + 1j * Y)
plt.contour(X, Y, fZ, levels=[0.25 * np.pi], colors="k")
plt.gca().set_aspect("equal")
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">xmin</span>, <span class="pl-s1">xmax</span> <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">3.0</span>, <span class="pl-c1">3.0</span>
<span class="pl-s1">ymin</span>, <span class="pl-s1">ymax</span> <span class="pl-c1">=</span> <span class="pl-c1">-</span><span class="pl-c1">3.0</span>, <span class="pl-c1">3.0</span>
<span class="pl-s1">nx</span>, <span class="pl-s1">ny</span> <span class="pl-c1">=</span> <span class="pl-c1">500</span>, <span class="pl-c1">500</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-s1">xmin</span>, <span class="pl-s1">xmax</span>, <span class="pl-s1">nx</span>)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-s1">ymin</span>, <span class="pl-s1">ymax</span>, <span class="pl-s1">ny</span>)
<span class="pl-v">X</span>, <span class="pl-v">Y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">meshgrid</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>)
<span class="pl-s1">fZ</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">angle</span>(<span class="pl-v">X</span> <span class="pl-c1">+</span> <span class="pl-c1">1j</span> <span class="pl-c1">*</span> <span class="pl-v">Y</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">contour</span>(<span class="pl-v">X</span>, <span class="pl-v">Y</span>, <span class="pl-s1">fZ</span>, <span class="pl-s1">levels</span><span class="pl-c1">=</span>[<span class="pl-c1">0.25</span> <span class="pl-c1">*</span> <span class="pl-s1">np</span>.<span class="pl-s1">pi</span>], <span class="pl-s1">colors</span><span class="pl-c1">=</span><span class="pl-s">"k"</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">gca</span>().<span class="pl-en">set_aspect</span>(<span class="pl-s">"equal"</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/181628/123930099-b5e27500-d98f-11eb-8339-0864d5f80e7d.png"><img src="https://user-images.githubusercontent.com/181628/123930099-b5e27500-d98f-11eb-8339-0864d5f80e7d.png" alt="screenshot" style="max-width: 100%;"></a></p>
<p dir="auto">This is with mpl 3.4.2.</p>
<p dir="auto"><em>Edit:</em> A very similar report is <a href="https://stackoverflow.com/q/16197171/353337" rel="nofollow">on stackoverflow</a>.</p> | 1 |
<h3 dir="auto">Describe the bug</h3>
<p dir="auto">If we take a look into master of sqlalchemy it defines following install_requires:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="greenlet != 0.4.17;(platform_machine=='aarch64' or (platform_machine=='ppc64le' or (platform_machine=='x86_64' or (platform_machine=='amd64' or (platform_machine=='AMD64' or (platform_machine=='win32' or platform_machine=='WIN32'))))))"><pre class="notranslate"><code class="notranslate">greenlet != 0.4.17;(platform_machine=='aarch64' or (platform_machine=='ppc64le' or (platform_machine=='x86_64' or (platform_machine=='amd64' or (platform_machine=='AMD64' or (platform_machine=='win32' or platform_machine=='WIN32'))))))
</code></pre></div>
<p dir="auto">Thus because platform_machine is not one of the above, greenlet is never installed. I was told that platform_machine for such macos is <code class="notranslate">arm64</code> (I do not have Mac M1 at hand)</p>
<p dir="auto">This in effect prevents sqlalchemy from running.</p>
<p dir="auto">Fix is easy by <code class="notranslate">pip install greenlet</code> and then everything is back to normal.</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="
$ pip install sqlalchemy[asyncio]
$ pip show
SQLAlchemy==1.4.35
While it should be:
$ pip show
greenlet==1.1.2
SQLAlchemy==1.4.35"><pre class="notranslate">$ <span class="pl-s1">pip</span> <span class="pl-s1">install</span> <span class="pl-s1">sqlalchemy</span>[<span class="pl-s1">asyncio</span>]
$ <span class="pl-s1">pip</span> <span class="pl-s1">show</span>
<span class="pl-v">SQLAlchemy</span><span class="pl-c1">==</span><span class="pl-c1">1.4</span>.<span class="pl-c1">35</span>
<span class="pl-v">While</span> <span class="pl-s1">it</span> <span class="pl-s1">should</span> <span class="pl-s1">be</span>:
$ <span class="pl-s1">pip</span> <span class="pl-s1">show</span>
<span class="pl-s1">greenlet</span><span class="pl-c1">==</span><span class="pl-c1">1.1</span>.<span class="pl-c1">2</span>
<span class="pl-v">SQLAlchemy</span><span class="pl-c1">==</span><span class="pl-c1">1.4</span>.<span class="pl-c1">35</span></pre></div>
<h3 dir="auto">Error</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="N/A"><pre class="notranslate"><code class="notranslate">N/A
</code></pre></div>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>OS: MacOS</li>
<li>Python: Python3.9+</li>
<li>SQLAlchemy: SQLAlchemy = {version = "^1.4.35", extras = ["asyncio"]}</li>
<li>Database: Postgres</li>
<li>DBAPI (eg: psycopg, cx_oracle, mysqlclient): postgresql+asyncpg</li>
</ul>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | <h3 dir="auto">Describe the bug</h3>
<p dir="auto">When installing SQLAlchemy 1.4.x with the <code class="notranslate">asyncio</code> extra on a Apple M1 machine the <code class="notranslate">greenlet</code> package is not installed even if it's listed in the requirements and for <code class="notranslate">aarch64</code> architectures.</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="# On a Apple M1, inside a Docker container running Python in a linux distro
$ docker run --rm -it python:3.10 /bin/bash
root@afbf52f73731:/# pip install sqlalchemy==1.4.31
root@afbf52f73731:/# pip list | grep greenlet
greenlet 1.1.2
# On a Apple M1, in the local environment
$ pip install sqlalchemy==1.4.31
$ pip list | grep greenlet
# no output"><pre class="notranslate"><span class="pl-c"># On a Apple M1, inside a Docker container running Python in a linux distro</span>
$ <span class="pl-s1">docker</span> <span class="pl-s1">run</span> <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-s1">rm</span> <span class="pl-c1">-</span><span class="pl-s1">it</span> <span class="pl-s1">python</span>:<span class="pl-c1">3.10</span> <span class="pl-c1">/</span><span class="pl-s1">bin</span><span class="pl-c1">/</span><span class="pl-s1">bash</span>
<span class="pl-s1">root</span>@<span class="pl-s1">afbf52f73731</span>:<span class="pl-c1">/</span><span class="pl-c"># pip install sqlalchemy==1.4.31</span>
<span class="pl-s1">root</span>@<span class="pl-s1">afbf52f73731</span>:<span class="pl-c1">/</span><span class="pl-c"># pip list | grep greenlet</span>
<span class="pl-s1">greenlet</span> <span class="pl-c1">1.1</span><span class="pl-c1">.2</span>
<span class="pl-c"># On a Apple M1, in the local environment</span>
$ <span class="pl-s1">pip</span> <span class="pl-s1">install</span> <span class="pl-s1">sqlalchemy</span><span class="pl-c1">==</span><span class="pl-c1">1.4</span>.<span class="pl-c1">31</span>
$ <span class="pl-s1">pip</span> <span class="pl-s1">list</span> <span class="pl-c1">|</span> <span class="pl-s1">grep</span> <span class="pl-s1">greenlet</span>
<span class="pl-c"># no output</span></pre></div>
<h3 dir="auto">Error</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".venv/lib/python3.10/site-packages/alembic/command.py:320: in upgrade
script.run_env()
.venv/lib/python3.10/site-packages/alembic/script/base.py:563: in run_env
util.load_python_file(self.dir, "env.py")
.venv/lib/python3.10/site-packages/alembic/util/pyfiles.py:92: in load_python_file
module = load_module_py(module_id, path)
.venv/lib/python3.10/site-packages/alembic/util/pyfiles.py:108: in load_module_py
spec.loader.exec_module(module) # type: ignore
migrations/env.py:86: in <module>
asyncio.run(run_migrations_online())
../../../.pyenv/versions/3.10.2/lib/python3.10/asyncio/runners.py:44: in run
return loop.run_until_complete(main)
../../../.pyenv/versions/3.10.2/lib/python3.10/asyncio/base_events.py:641: in run_until_complete
return future.result()
migrations/env.py:71: in run_migrations_online
engine_from_config(
.venv/lib/python3.10/site-packages/sqlalchemy/engine/create.py:755: in engine_from_config
return create_engine(url, **options)
.venv/lib/python3.10/site-packages/sqlalchemy/util/deprecations.py:309: in warned
return fn(*args, **kwargs)
.venv/lib/python3.10/site-packages/sqlalchemy/engine/create.py:672: in create_engine
event.listen(pool, "connect", on_connect)
.venv/lib/python3.10/site-packages/sqlalchemy/event/api.py:115: in listen
_event_key(target, identifier, fn).listen(*args, **kw)
.venv/lib/python3.10/site-packages/sqlalchemy/event/registry.py:232: in listen
self.dispatch_target.dispatch._listen(self, *args, **kw)
.venv/lib/python3.10/site-packages/sqlalchemy/pool/events.py:63: in _listen
event_key.base_listen(**kw)
.venv/lib/python3.10/site-packages/sqlalchemy/event/registry.py:270: in base_listen
for_modify._set_asyncio()
.venv/lib/python3.10/site-packages/sqlalchemy/event/attr.py:274: in _set_asyncio
self._exec_once_mutex = AsyncAdaptedLock()
.venv/lib/python3.10/site-packages/sqlalchemy/util/concurrency.py:67: in AsyncAdaptedLock
_not_implemented()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
def _not_implemented():
# this conditional is to prevent pylance from considering
# greenlet_spawn() etc as "no return" and dimming out code below it
if have_greenlet:
return None
if not compat.py3k:
raise ValueError("Cannot use this function in py2.")
else:
> raise ValueError(
"the greenlet library is required to use this function."
" %s" % greenlet_error
if greenlet_error
else ""
)
E ValueError: the greenlet library is required to use this function. No module named 'greenlet'
.venv/lib/python3.10/site-packages/sqlalchemy/util/concurrency.py:47: ValueError"><pre class="notranslate"><code class="notranslate">.venv/lib/python3.10/site-packages/alembic/command.py:320: in upgrade
script.run_env()
.venv/lib/python3.10/site-packages/alembic/script/base.py:563: in run_env
util.load_python_file(self.dir, "env.py")
.venv/lib/python3.10/site-packages/alembic/util/pyfiles.py:92: in load_python_file
module = load_module_py(module_id, path)
.venv/lib/python3.10/site-packages/alembic/util/pyfiles.py:108: in load_module_py
spec.loader.exec_module(module) # type: ignore
migrations/env.py:86: in <module>
asyncio.run(run_migrations_online())
../../../.pyenv/versions/3.10.2/lib/python3.10/asyncio/runners.py:44: in run
return loop.run_until_complete(main)
../../../.pyenv/versions/3.10.2/lib/python3.10/asyncio/base_events.py:641: in run_until_complete
return future.result()
migrations/env.py:71: in run_migrations_online
engine_from_config(
.venv/lib/python3.10/site-packages/sqlalchemy/engine/create.py:755: in engine_from_config
return create_engine(url, **options)
.venv/lib/python3.10/site-packages/sqlalchemy/util/deprecations.py:309: in warned
return fn(*args, **kwargs)
.venv/lib/python3.10/site-packages/sqlalchemy/engine/create.py:672: in create_engine
event.listen(pool, "connect", on_connect)
.venv/lib/python3.10/site-packages/sqlalchemy/event/api.py:115: in listen
_event_key(target, identifier, fn).listen(*args, **kw)
.venv/lib/python3.10/site-packages/sqlalchemy/event/registry.py:232: in listen
self.dispatch_target.dispatch._listen(self, *args, **kw)
.venv/lib/python3.10/site-packages/sqlalchemy/pool/events.py:63: in _listen
event_key.base_listen(**kw)
.venv/lib/python3.10/site-packages/sqlalchemy/event/registry.py:270: in base_listen
for_modify._set_asyncio()
.venv/lib/python3.10/site-packages/sqlalchemy/event/attr.py:274: in _set_asyncio
self._exec_once_mutex = AsyncAdaptedLock()
.venv/lib/python3.10/site-packages/sqlalchemy/util/concurrency.py:67: in AsyncAdaptedLock
_not_implemented()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
def _not_implemented():
# this conditional is to prevent pylance from considering
# greenlet_spawn() etc as "no return" and dimming out code below it
if have_greenlet:
return None
if not compat.py3k:
raise ValueError("Cannot use this function in py2.")
else:
> raise ValueError(
"the greenlet library is required to use this function."
" %s" % greenlet_error
if greenlet_error
else ""
)
E ValueError: the greenlet library is required to use this function. No module named 'greenlet'
.venv/lib/python3.10/site-packages/sqlalchemy/util/concurrency.py:47: ValueError
</code></pre></div>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>OS: OS X 12.2</li>
<li>Python: 3.10</li>
<li>SQLAlchemy: 1.4.31</li>
<li>Database: not applicable</li>
<li>DBAPI not applicable</li>
</ul>
<h3 dir="auto">Additional context</h3>
<p dir="auto">The issue seems related to the way <code class="notranslate">platform.machine()</code> reports the underlying architecture, on Linux it reports <code class="notranslate">aarch64</code> and on OS X reports <code class="notranslate">arm64</code>, but the requirements contains only <code class="notranslate">aarch64</code> for <code class="notranslate">greenlet</code> <a href="https://github.com/sqlalchemy/sqlalchemy/blob/rel_1_4_31/setup.cfg#L44">https://github.com/sqlalchemy/sqlalchemy/blob/rel_1_4_31/setup.cfg#L44</a></p> | 1 |
<p dir="auto">It is very common for application developers to test their components with their templates. Internally we call these tests "component tests" (as opposed to unit- or integration-tests). These tests are not unit tests as they exercise more than just the component class. Nor are they integration tests as far as the application is concerned; that term is reserved for testing cross-component interactions, full application tests, and tests that involve the back-end.</p>
<p dir="auto">Here are the requirements:</p>
<ul dir="auto">
<li>instantiate a component in a test along with its template and child components</li>
<li>replace child components with mocks</li>
<li>pass bound values to the component</li>
<li>trigger change detection</li>
<li>fake the event loop, a la <a href="https://github.com/google/quiver-dart/blob/cf72b438560a502ebb319e764700e96c1f4dbe01/lib/testing/src/async/fake_async.dart">FakeAsync</a></li>
<li>verify that component implement change detection correctly (e.g. via observables, immutables)</li>
<li>access underlying DOM to trigger user events, such as click on buttons (this is usually done with the assistance of the Page Objects framework)</li>
</ul>
<p dir="auto">Strawman:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
// This annotation tells Angular about test-specific dependency overrides
@ComponentTest(
component: MyComponent,
dependencyOverrides: const {
ChildComponent: MockChildComponent,
RealGoogleMap: MockGoogleMap,
}
)
main() {
describe("my-component", () {
TestBed<MyComponent> testBed;
beforeEach(() {
testBed = createTestBedFor(MyComponent);
});
it("should work as intended", fakeAsync(async) {
// instantiates a new component
MyComponent cmp = testBed.component();
// pass bindings using normal setters
cmp.field1 = "hello";
cmp.field2 = "world";
// detectChanges runs change detection and returns how many
// components ended up reevaluated, allowing testing correctness
// of change detection
expect(testBed.detectChanges().length, 5);
// emulate passage of time
async.flushMicrotasks();
async.elapse(seconds: 1);
// get access to the DOM
Element rootElem = testBed.element();
rootElem.querySelector('some-button').click();
expect(cmp.buttonClicked, true);
});
});
}"><pre class="notranslate"><span class="pl-c">// This annotation tells Angular about test-specific dependency overrides</span>
<span class="pl-k">@ComponentTest</span>(
component<span class="pl-k">:</span> <span class="pl-c1">MyComponent</span>,
dependencyOverrides<span class="pl-k">:</span> <span class="pl-k">const</span> {
<span class="pl-c1">ChildComponent</span><span class="pl-k">:</span> <span class="pl-c1">MockChildComponent</span>,
<span class="pl-c1">RealGoogleMap</span><span class="pl-k">:</span> <span class="pl-c1">MockGoogleMap</span>,
}
)
<span class="pl-en">main</span>() {
<span class="pl-en">describe</span>(<span class="pl-s">"my-component"</span>, () {
<span class="pl-c1">TestBed</span><<span class="pl-c1">MyComponent</span>> testBed;
<span class="pl-en">beforeEach</span>(() {
testBed <span class="pl-k">=</span> <span class="pl-en">createTestBedFor</span>(<span class="pl-c1">MyComponent</span>);
});
<span class="pl-en">it</span>(<span class="pl-s">"should work as intended"</span>, <span class="pl-en">fakeAsync</span>(<span class="pl-k">async</span>) {
<span class="pl-c">// instantiates a new component</span>
<span class="pl-c1">MyComponent</span> cmp <span class="pl-k">=</span> testBed.<span class="pl-en">component</span>();
<span class="pl-c">// pass bindings using normal setters</span>
cmp.field1 <span class="pl-k">=</span> <span class="pl-s">"hello"</span>;
cmp.field2 <span class="pl-k">=</span> <span class="pl-s">"world"</span>;
<span class="pl-c">// detectChanges runs change detection and returns how many</span>
<span class="pl-c">// components ended up reevaluated, allowing testing correctness</span>
<span class="pl-c">// of change detection</span>
<span class="pl-en">expect</span>(testBed.<span class="pl-en">detectChanges</span>().length, <span class="pl-c1">5</span>);
<span class="pl-c">// emulate passage of time</span>
<span class="pl-k">async</span>.<span class="pl-en">flushMicrotasks</span>();
<span class="pl-k">async</span>.<span class="pl-en">elapse</span>(seconds<span class="pl-k">:</span> <span class="pl-c1">1</span>);
<span class="pl-c">// get access to the DOM</span>
<span class="pl-c1">Element</span> rootElem <span class="pl-k">=</span> testBed.<span class="pl-en">element</span>();
rootElem.<span class="pl-en">querySelector</span>(<span class="pl-s">'some-button'</span>).<span class="pl-en">click</span>();
<span class="pl-en">expect</span>(cmp.buttonClicked, <span class="pl-c1">true</span>);
});
});
}</pre></div> | <ul class="contains-task-list">
<li><strong>I'm submitting a ...</strong></li>
<li>[x ] bug report</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> feature request</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> support request => Please do not submit support request here, see note at the top of this template.</li>
</ul>
<p dir="auto"><strong>Current behavior</strong><br>
I'm using angular2 with the universal component, i had my project working few weeks ago but now i wanted to install the app on another machine and i have a dependency issue<br>
my package.json refers to<br>
"angular2": "2.0.0-beta.15",<br>
"angular2-universal": "0.98.3"<br>
...<br>
on my local machine, the initial install made few weeks ago succesfully installed the following<br>
+-- [email protected]<br>
+-- [email protected]<br>
| +-- [email protected]<br>
| +-- [email protected]<br>
| +-- [email protected]<br>
| | +-- [email protected]<br>
| | `-- [email protected]<br>
...</p>
<p dir="auto">same thing today on another machine gives<br>
+-- [email protected]<br>
+-- [email protected]<br>
| +-- [email protected]<br>
| +-- [email protected]<br>
| +-- UNMET PEER DEPENDENCY angular2-universal@^0.101.4<br>
| +-- [email protected]<br>
| | +-- [email protected]<br>
| | `-- [email protected]<br>
...<br>
and i assume that this is why my project aint working there</p>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
have a package that works with those dependencies</p>
<ul dir="auto">
<li><strong>What is the motivation / use case for changing the behavior?</strong><br>
it just fails</li>
<li><strong>Please tell us about your environment:</strong><br>
node 5.11.1<br>
windows 7</li>
<li><strong>Angular version:</strong> 2.0.0-beta.15</li>
<li><strong>Browser:</strong> [all ]</li>
<li><strong>Language:</strong> [ TypeScript]</li>
</ul> | 0 |
<p dir="auto"><strong>Edit July 2021:</strong> The layouts example has been updated to persist state across page transitions: <a href="https://github.com/vercel/next.js/tree/canary/examples/layout-component">https://github.com/vercel/next.js/tree/canary/examples/layout-component</a></p> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Expected to render css on the server first, using specific code in <code class="notranslate">_document.js</code>. So, expected behavior would be to see no FOUC.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">CSS is not rendered on the server, only on the client. It's interesting that class names are applied correctly on the server, only actual CSS is not rendered. As the result, we see FOUC before client side catch up.</p>
<p dir="auto">This happened right after updated to 5.0. Latest <code class="notranslate">canary</code> releases also broken.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li><code class="notranslate">curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-fela</code></li>
<li><code class="notranslate">cd with-fela</code></li>
<li><code class="notranslate">yarn</code></li>
<li><code class="notranslate">yarn dev</code></li>
</ol>
<h2 dir="auto">Context</h2>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>5.0.0 / 5.0.1-canary.4 / 5.0.1-canary.5 / 5.0.1-canary.9</td>
</tr>
<tr>
<td>node</td>
<td>9.5.0</td>
</tr>
<tr>
<td>OS</td>
<td>OSX 10.13.3</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">Doesn't seem to haven been caused by my change: <a href="https://storage.cloud.google.com/kubernetes-jenkins/pr-logs/pull/27083/node-pull-build-e2e-test/10720/build-log.txt" rel="nofollow">https://storage.cloud.google.com/kubernetes-jenkins/pr-logs/pull/27083/node-pull-build-e2e-test/10720/build-log.txt</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Summarizing 3 Failures:
[Fail] [k8s.io] Downward API [It] should provide pod name and namespace as env vars [Conformance]
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
[Fail] [k8s.io] Downward API [It] should provide pod IP as an env var
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
[Fail] [k8s.io] Downward API [It] should provide container's limits.cpu/memory and requests.cpu/memory as env vars
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
Ran 19 of 22 Specs in 1130.000 seconds
FAIL! -- 16 Passed | 3 Failed | 0 Pending | 3 Skipped --- FAIL: TestE2eNode (1130.00s)
FAIL
Ginkgo ran 1 suite in 18m50.080565864s
Test Suite Failed"><pre class="notranslate"><code class="notranslate">Summarizing 3 Failures:
[Fail] [k8s.io] Downward API [It] should provide pod name and namespace as env vars [Conformance]
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
[Fail] [k8s.io] Downward API [It] should provide pod IP as an env var
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
[Fail] [k8s.io] Downward API [It] should provide container's limits.cpu/memory and requests.cpu/memory as env vars
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
Ran 19 of 22 Specs in 1130.000 seconds
FAIL! -- 16 Passed | 3 Failed | 0 Pending | 3 Skipped --- FAIL: TestE2eNode (1130.00s)
FAIL
Ginkgo ran 1 suite in 18m50.080565864s
Test Suite Failed
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[k8s.io] Downward API
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:660
should provide container's limits.cpu/memory and requests.cpu/memory as env vars [It]
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e_node/downward_api_test.go:130
Expected error:
<*errors.errorString | 0xc8207f9770>: {
s: "gave up waiting for pod 'downward-api-63e732e1-334a-11e6-b754-42010af00048' to be 'success or failure' after 5m0s",
}
gave up waiting for pod 'downward-api-63e732e1-334a-11e6-b754-42010af00048' to be 'success or failure' after 5m0s
not to have occurred
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022"><pre class="notranslate"><code class="notranslate">[k8s.io] Downward API
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:660
should provide container's limits.cpu/memory and requests.cpu/memory as env vars [It]
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e_node/downward_api_test.go:130
Expected error:
<*errors.errorString | 0xc8207f9770>: {
s: "gave up waiting for pod 'downward-api-63e732e1-334a-11e6-b754-42010af00048' to be 'success or failure' after 5m0s",
}
gave up waiting for pod 'downward-api-63e732e1-334a-11e6-b754-42010af00048' to be 'success or failure' after 5m0s
not to have occurred
/var/lib/jenkins/workspace/node-pull-build-e2e-test/go/src/k8s.io/kubernetes/_output/local/go/src/k8s.io/kubernetes/test/e2e/framework/util.go:2022
</code></pre></div> | <p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="81976675" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/8917" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/8917/hovercard" href="https://github.com/kubernetes/kubernetes/pull/8917">#8917</a> deletes tests for deprecated apis. Now we will add tests for v1. I will make several small PRs and refer to this issue.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bgrant0607/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bgrant0607">@bgrant0607</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/krousey/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/krousey">@krousey</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikhiljindal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikhiljindal">@nikhiljindal</a></p> | 0 |
<h5 dir="auto">System information (version)</h5>
<p dir="auto"><a href="https://github.com/opencv/opencv/files/5196784/OpenCV1.zip">OpenCV1.zip</a></p>
<p dir="auto">Hello,</p>
<p dir="auto">I make an example program with opencv on my main computer (windows 10 x64) with opencv4.4.0, visual c++ 2019 and it work fine on the main computer. I have compiled sources files as explain on the opencv site.</p>
<p dir="auto">When i try to run it on a windows 7 x64 computer after importing all the dll (core440, videoio, ....) , i got the error :<br>
...opencv-4.4.0\modules\videoio\src\cap_msmf.cpp (682) CvCapture_MSMF::initStream Failed to set mediaType (stream 0, (640x480 @ 30) MFVideoFormat_RGB24(unsupported media type)</p>
<p dir="auto">I am serarching all other the web for few hours now but found nothing helping me... Does someone here have a solution ?</p>
<p dir="auto">Thanks !</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include <string>
#include <opencv2/core.hpp>
#include <opencv2/videoio.hpp>
#include <iostream>
#include <stdio.h>
using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
double Fiducial_Diameter = 0.5;
Mat src;
if (argc < 3) {
cerr << "ERROR! Argument missing\n";
return -1;
}
string num = argv[1];
string diam = argv[2];
VideoCapture cap;
int deviceID = stoi(num); // 0 = open default camera
int apiID = cv::CAP_ANY; // 0 = autodetect default API
// open selected camera using selected API
cap.open(deviceID, apiID);
// check if we succeeded
if (!cap.isOpened()) {
cerr << "ERROR! Unable to open camera\n";
return -1;
}
//--- GRAB AND WRITE LOOP
cout << "Start grabbing" << endl
<< "Press any key to terminate" << endl;
for (;;)
{
// wait for a new frame from camera and store it into 'frame'
cap.read(src);
// check if we succeeded
if (src.empty()) {
cerr << "ERROR! blank frame grabbed\n";
break;
}
// show live and wait for a key with timeout long enough to show images
// Get center of the image
Point CenterOfImage = Point(src.size().width / 2, src.size().height / 2);
circle(src, CenterOfImage, stoi(diam), Scalar(0, 255, 000), 1, LINE_AA);
imshow("Live", src);
if (waitKey(5) >= 0)
break;
}
return EXIT_SUCCESS;
}"><pre class="notranslate"><code class="notranslate">#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/imgproc.hpp"
#include <string>
#include <opencv2/core.hpp>
#include <opencv2/videoio.hpp>
#include <iostream>
#include <stdio.h>
using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
double Fiducial_Diameter = 0.5;
Mat src;
if (argc < 3) {
cerr << "ERROR! Argument missing\n";
return -1;
}
string num = argv[1];
string diam = argv[2];
VideoCapture cap;
int deviceID = stoi(num); // 0 = open default camera
int apiID = cv::CAP_ANY; // 0 = autodetect default API
// open selected camera using selected API
cap.open(deviceID, apiID);
// check if we succeeded
if (!cap.isOpened()) {
cerr << "ERROR! Unable to open camera\n";
return -1;
}
//--- GRAB AND WRITE LOOP
cout << "Start grabbing" << endl
<< "Press any key to terminate" << endl;
for (;;)
{
// wait for a new frame from camera and store it into 'frame'
cap.read(src);
// check if we succeeded
if (src.empty()) {
cerr << "ERROR! blank frame grabbed\n";
break;
}
// show live and wait for a key with timeout long enough to show images
// Get center of the image
Point CenterOfImage = Point(src.size().width / 2, src.size().height / 2);
circle(src, CenterOfImage, stoi(diam), Scalar(0, 255, 000), 1, LINE_AA);
imshow("Live", src);
if (waitKey(5) >= 0)
break;
}
return EXIT_SUCCESS;
}
</code></pre></div> | <p dir="auto">Win 7, CMake 3.18.1, VS 2015 community, opencv <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/opencv/opencv/commit/422f802ec96feecbc9db2f60879e8fe364cf8a92/hovercard" href="https://github.com/opencv/opencv/commit/422f802ec96feecbc9db2f60879e8fe364cf8a92"><tt>422f802</tt></a> with Qt 5.15 and eigen.</p>
<p dir="auto">Reading a frame from <code class="notranslate">VideoCapture</code> thrown exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\videoio_registr
y.cpp (191) cv::`anonymous-namespace'::VideoBackendRegistry::VideoBackendRegistr
y VIDEOIO: Enabled backends(7, sorted by priority): FFMPEG(1000); GSTREAMER(990)
; INTEL_MFX(980); MSMF(970); DSHOW(960); CV_IMAGES(950); CV_MJPEG(940)
[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\backend_plugin.
cpp (370) cv::impl::getPluginCandidates Found 2 plugin(s) for GSTREAMER
[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\backend_plugin.
cpp (175) cv::impl::DynamicLib::libraryLoad load c:\Lib\opencv\build_x64\bin\ope
ncv_videoio_gstreamer440_64d.dll => FAILED
[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\backend_plugin.
cpp (175) cv::impl::DynamicLib::libraryLoad load opencv_videoio_gstreamer440_64d
.dll => FAILED
[ WARN:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\cap_msmf.cpp (6
77) CvCapture_MSMF::initStream Failed to set mediaType (stream 0, (640x480 @ 30)
MFVideoFormat_RGB24(codec not found)
Cap backend: MSMF"><pre class="notranslate"><code class="notranslate">[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\videoio_registr
y.cpp (191) cv::`anonymous-namespace'::VideoBackendRegistry::VideoBackendRegistr
y VIDEOIO: Enabled backends(7, sorted by priority): FFMPEG(1000); GSTREAMER(990)
; INTEL_MFX(980); MSMF(970); DSHOW(960); CV_IMAGES(950); CV_MJPEG(940)
[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\backend_plugin.
cpp (370) cv::impl::getPluginCandidates Found 2 plugin(s) for GSTREAMER
[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\backend_plugin.
cpp (175) cv::impl::DynamicLib::libraryLoad load c:\Lib\opencv\build_x64\bin\ope
ncv_videoio_gstreamer440_64d.dll => FAILED
[ INFO:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\backend_plugin.
cpp (175) cv::impl::DynamicLib::libraryLoad load opencv_videoio_gstreamer440_64d
.dll => FAILED
[ WARN:0] global C:\Lib\opencv\source\opencv\modules\videoio\src\cap_msmf.cpp (6
77) CvCapture_MSMF::initStream Failed to set mediaType (stream 0, (640x480 @ 30)
MFVideoFormat_RGB24(codec not found)
Cap backend: MSMF
</code></pre></div>
<p dir="auto">Test code:</p>
<details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include <opencv2/imgcodecs.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2//highgui.hpp>
#include <fstream>
#include <iostream>
using namespace std;
using namespace cv;
int main(int argc, char** argv)
{
VideoCapture cap;
Mat frame;
bool bIsOpen = cap.open(0);
cout << "\nCap backend: " << cap.getBackendName() << endl;
if (!bIsOpen) {
cout << "Can't open camera!" << endl;
return -1;
}
while (waitKey() != 27) {
try {
cap >> frame; // <- exception here
}
catch (Exception &e) {
cout << e.err;
}
if (frame.empty()) {
cout << "Empty frame captured!" << endl;
return -1;
}
imshow("cap", frame);
}
return 0;
}
"><pre class="notranslate"><code class="notranslate">#include <opencv2/imgcodecs.hpp>
#include <opencv2/videoio.hpp>
#include <opencv2//highgui.hpp>
#include <fstream>
#include <iostream>
using namespace std;
using namespace cv;
int main(int argc, char** argv)
{
VideoCapture cap;
Mat frame;
bool bIsOpen = cap.open(0);
cout << "\nCap backend: " << cap.getBackendName() << endl;
if (!bIsOpen) {
cout << "Can't open camera!" << endl;
return -1;
}
while (waitKey() != 27) {
try {
cap >> frame; // <- exception here
}
catch (Exception &e) {
cout << e.err;
}
if (frame.empty()) {
cout << "Empty frame captured!" << endl;
return -1;
}
imshow("cap", frame);
}
return 0;
}
</code></pre></div>
</details>
<p dir="auto">In debug it is seen that error occurs here:<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/dbab8d8c3897040f134af7195e130dbfcdc2c065/modules/core/src/copy.cpp#L298">opencv/modules/core/src/copy.cpp</a>
</p>
<p class="mb-0 color-fg-muted">
Line 298
in
<a data-pjax="true" class="commit-tease-sha" href="/opencv/opencv/commit/dbab8d8c3897040f134af7195e130dbfcdc2c065">dbab8d8</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="L298" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="298"></td>
<td id="LC298" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">CV_IPP_RUN_FAST</span>(<span class="pl-c1">CV_INSTRUMENT_FUN_IPP</span>(ippiCopy_8u_C1R_L, sptr, (<span class="pl-k">int</span>)src.<span class="pl-smi">step</span>, dptr, (<span class="pl-k">int</span>)dst.<span class="pl-smi">step</span>, <span class="pl-c1">ippiSizeL</span>(sz.<span class="pl-smi">width</span>, sz.<span class="pl-smi">height</span>)) >= <span class="pl-c1">0</span>) </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">Reproduced on several different PC with different cameras.</p>
<p dir="auto">Last known OpenCV ver. where this code work is 4.12.</p> | 1 |
<ul dir="auto">
<li>VSCode Version: 1.0.0</li>
<li>OS Version: Windows</li>
</ul>
<p dir="auto">I love this editor. it's awesome, very fast response, open, edit.<br>
but it's not support emmet expand abbreviations in custom syntax eg .blade, .vue</p>
<p dir="auto">i try to add "files.associations": {"*.blade.php": "html"}, emmet work but my extension blade syntax hilighting not working. if it's can work together i think my heart is got by vscode <g-emoji class="g-emoji" alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png">👍</g-emoji></p>
<p dir="auto">if next release has settings about enable emmet expand abbreviations in settings.json or other place.<br>
i think it's wonderful text editor in this world.</p>
<p dir="auto">Best regard</p>
<p dir="auto">ps. sorry for my bad english</p> | <ul dir="auto">
<li>VSCode Version: 1.3.1</li>
<li>OS Version: Ubuntu 16.06</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Install <code class="notranslate">Nunjucks</code> plugin.</li>
<li>Type <code class="notranslate">p</code> and press tab.</li>
<li><code class="notranslate">\t</code> was inserted.</li>
</ol>
<p dir="auto">Expected Result:</p>
<ol dir="auto">
<li><code class="notranslate">p</code> expanded to <code class="notranslate"><p></p></code>.</li>
</ol>
<p dir="auto">I was looking for the setting to enable <code class="notranslate">emmet</code>, but it seems hard-coded in the source (<a href="https://github.com/Microsoft/vscode/blob/master/src/vs/workbench/parts/emmet/node/editorAccessor.ts#L20">src/vs/workbench/parts/emmet/node/editorAccessor.ts#L20</a>).</p>
<p dir="auto">Can we modify this value through preference?</p>
<p dir="auto">Thanks.</p> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.