text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<h3 dir="auto">Version</h3>
<p dir="auto">2.7.14</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://stackblitz.com/edit/vitejs-vite-zxmy3e?file=src%2Fcomponents%2FHelloWorld.vue,src%2FApp.vue&terminal=dev" rel="nofollow">stackblitz.com</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Comp.vue
defineProps<{ msg: boolean | null }>();"><pre class="notranslate"><span class="pl-c">// Comp.vue</span>
<span class="pl-en">defineProps</span><span class="pl-kos"><</span><span class="pl-kos">{</span> <span class="pl-c1">msg</span>: <span class="pl-smi">boolean</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-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<!-- App.vue -->
<template>
<Comp :msg="null" />
</template>"><pre class="notranslate"><span class="pl-c"><!-- App.vue --></span>
<span class="pl-kos"><</span><span class="pl-ent">template</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">Comp</span> <span class="pl-c1">:msg</span>="<span class="pl-s">null</span>" />
<span class="pl-kos"></</span><span class="pl-ent">template</span><span class="pl-kos">></span></pre></div>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">No warnings<br>
Vue 3: <a href="https://sfc.vuejs.org/#__DEV__eNp9kLtuwzAMRX+F0JIEiKXdcAMU3Tq0BbpqcRzaVWA9QMkpClf/XqrpIw8gmy55eUWeWdyHIA8Tilo0sSMTEkRMU9hoZ2zwlODB2wA9eQsLqYoo9oV2jTr62ckioQ1jm5AVQNOVmbr3/k4LN42jFqC406g/m1iLY35l2yD30TveYC7D+qcRtajhu1Jq/GfRWrylFGKtVOy7ssg+Sk+D4pekySVjUWK01Zb8e0TiYC3WJxmKiwekitDtkJBuZV5Yr3JLbNYu8ym/WC4pwti6gRmUY/j+HfbG4Qv5EJsZGE8NW+9HbB18QuEEebNcnaH9BzvP8Pj6/CRjIuMG038sOWAFOZ9SzV97tqJr" rel="nofollow">https://sfc.vuejs.org/#__DEV__eNp9kLtuwzAMRX+F0JIEiKXdcAMU3Tq0BbpqcRzaVWA9QMkpClf/XqrpIw8gmy55eUWeWdyHIA8Tilo0sSMTEkRMU9hoZ2zwlODB2wA9eQsLqYoo9oV2jTr62ckioQ1jm5AVQNOVmbr3/k4LN42jFqC406g/m1iLY35l2yD30TveYC7D+qcRtajhu1Jq/GfRWrylFGKtVOy7ssg+Sk+D4pekySVjUWK01Zb8e0TiYC3WJxmKiwekitDtkJBuZV5Yr3JLbNYu8ym/WC4pwti6gRmUY/j+HfbG4Qv5EJsZGE8NW+9HbB18QuEEebNcnaH9BzvP8Pj6/CRjIuMG038sOWAFOZ9SzV97tqJr</a></p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto"><code class="notranslate">Invalid prop type: "null" is not a constructor</code> and <code class="notranslate">Invalid prop: type check failed for prop "msg". Expected Boolean, , got Null</code> warnings</p>
<h3 dir="auto">Additional notes</h3>
<p dir="auto">Warnings per se are not the issue, they can be fixed by changing the prop definition to <code class="notranslate">msg?: boolean</code> which also accepts booleans, the issue is that this behaviour is not same as in Vue 3</p> | <h3 dir="auto">What problem does this feature solve?</h3>
<p dir="auto">Redundant properties (and low cohesion for each) for asynchronous evaluation:<br>
ไธบไบๅผๆญฅๆฑๅผ่่ฎพๆก็ฎ๏ผๅนถ้ไฝๆฏไธชๅ่ฝ็ๅ
่ๆง๏ผ๏ผ</p>
<div class="highlight highlight-text-html-vue notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<template>
<div>{{ result1 }} {{ result2 }}</div>
</template>
<script>
export default {
props: ["url1", "url2"],
data () {
return {
result1: "",
result2: ""
};
},
watch: {
async url1 (url1) {
this.result1 = await getPromise(url1);
},
async url2 (url2) {
this.result2 = await getPromise(url2);
}
}
};
</script>"><pre class="notranslate"><<span class="pl-ent">template</span>>
<<span class="pl-ent">div</span>>{{ result1 }} {{ result2 }}</<span class="pl-ent">div</span>>
</<span class="pl-ent">template</span>>
<span class="pl-s1"><<span class="pl-ent">script</span>></span>
<span class="pl-s1"><span class="pl-k">export</span> <span class="pl-c1">default</span> {</span>
<span class="pl-s1"> props<span class="pl-k">:</span> [<span class="pl-s"><span class="pl-pds">"</span>url1<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>url2<span class="pl-pds">"</span></span>],</span>
<span class="pl-s1"> <span class="pl-en">data</span> () {</span>
<span class="pl-s1"> <span class="pl-k">return</span> {</span>
<span class="pl-s1"> result1<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>,</span>
<span class="pl-s1"> result2<span class="pl-k">:</span> <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span></span>
<span class="pl-s1"> };</span>
<span class="pl-s1"> },</span>
<span class="pl-s1"> watch<span class="pl-k">:</span> {</span>
<span class="pl-s1"> <span class="pl-k">async</span> <span class="pl-en">url1</span> (<span class="pl-smi">url1</span>) {</span>
<span class="pl-s1"> <span class="pl-c1">this</span>.<span class="pl-smi">result1</span> <span class="pl-k">=</span> <span class="pl-k">await</span> <span class="pl-en">getPromise</span>(url1);</span>
<span class="pl-s1"> },</span>
<span class="pl-s1"> <span class="pl-k">async</span> <span class="pl-en">url2</span> (<span class="pl-smi">url2</span>) {</span>
<span class="pl-s1"> <span class="pl-c1">this</span>.<span class="pl-smi">result2</span> <span class="pl-k">=</span> <span class="pl-k">await</span> <span class="pl-en">getPromise</span>(url2);</span>
<span class="pl-s1"> }</span>
<span class="pl-s1"> }</span>
<span class="pl-s1">};</span>
<span class="pl-s1"></<span class="pl-ent">script</span>></span></pre></div>
<h3 dir="auto">What does the proposed API look like?</h3>
<div class="highlight highlight-text-html-vue notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<template>
<div>{{ result1 }} {{ result2 }}</div>
</template>
<script>
export default {
props: ["url1", "url2"],
computed: {
result1 () {
return getPromise(this.url1);
},
result2 () {
return getPromise(this.url2);
}
}
};
</script>"><pre class="notranslate"><<span class="pl-ent">template</span>>
<<span class="pl-ent">div</span>>{{ result1 }} {{ result2 }}</<span class="pl-ent">div</span>>
</<span class="pl-ent">template</span>>
<span class="pl-s1"><<span class="pl-ent">script</span>></span>
<span class="pl-s1"><span class="pl-k">export</span> <span class="pl-c1">default</span> {</span>
<span class="pl-s1"> props<span class="pl-k">:</span> [<span class="pl-s"><span class="pl-pds">"</span>url1<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>url2<span class="pl-pds">"</span></span>],</span>
<span class="pl-s1"> computed<span class="pl-k">:</span> {</span>
<span class="pl-s1"> <span class="pl-en">result1</span> () {</span>
<span class="pl-s1"> <span class="pl-k">return</span> <span class="pl-en">getPromise</span>(<span class="pl-c1">this</span>.<span class="pl-smi">url1</span>);</span>
<span class="pl-s1"> },</span>
<span class="pl-s1"> <span class="pl-en">result2</span> () {</span>
<span class="pl-s1"> <span class="pl-k">return</span> <span class="pl-en">getPromise</span>(<span class="pl-c1">this</span>.<span class="pl-smi">url2</span>);</span>
<span class="pl-s1"> }</span>
<span class="pl-s1"> }</span>
<span class="pl-s1">};</span>
<span class="pl-s1"></<span class="pl-ent">script</span>></span></pre></div> | 0 |
<p dir="auto">Currently the Configure Task Runner action generates a large task.json file with many different task configurations, that the user has to clean-up eventually, that is, delete the configs that do not apply.</p>
<p dir="auto">Instead of generating one large file we should allow the user to select what kind of task that should be configured and then to only generate this one. This is similar to how we generate the launch configurations.</p> | <p dir="auto"><strong>I have three questions:</strong></p>
<ul dir="auto">
<li>first of all why do I have eight process of VS Code?<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5618566/11995879/20900ce8-aa37-11e5-9a59-5042827a6715.png"><img src="https://cloud.githubusercontent.com/assets/5618566/11995879/20900ce8-aa37-11e5-9a59-5042827a6715.png" alt="code" style="max-width: 100%;"></a></li>
<li>then why VS Code is consuming something like 522096KB of memory? Isn't that too much?</li>
<li>and last, if electron allow 64-bit build why VSC still target 32-bit ?<a href="http://electron.atom.io/docs/v0.36.0/development/build-instructions-windows/#64bit-build" rel="nofollow">http://electron.atom.io/docs/v0.36.0/development/build-instructions-windows/#64bit-build</a></li>
</ul>
<p dir="auto"><strong>Extra info:</strong></p>
<ul dir="auto">
<li>I'm running windows 7 ultimate x64. 6GB memory, and this processor <a href="http://www.notebookcheck.net/AMD-A-Series-A6-3400M-Notebook-Processor.55753.0.html" rel="nofollow">http://www.notebookcheck.net/AMD-A-Series-A6-3400M-Notebook-Processor.55753.0.html</a>. VSC version 0.10.6</li>
<li>I took that screenshot with a small project (12 files, and 18 folders) on VSC, and with no file editing.</li>
</ul> | 0 |
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ julia10
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.0.0 (2018-08-08)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia> f = x->7
#3 (generic function with 1 method)
julia> f = x->f(x) + 1
#5 (generic function with 1 method)
julia> f(1)
Segmentation fault: 11 ๐ฒ
$ uname -a
Darwin Sams-15-Inch-MacBook.local 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 x86_64"><pre class="notranslate"><span class="pl-k">$</span> julia10
_
_ _ <span class="pl-c1">_</span>(_)_ <span class="pl-k">|</span> Documentation<span class="pl-k">:</span> https<span class="pl-k">:</span><span class="pl-k">//</span>docs<span class="pl-k">.</span>julialang<span class="pl-k">.</span>org
(_) <span class="pl-k">|</span> (_) (_) <span class="pl-k">|</span>
_ _ _<span class="pl-k">|</span> <span class="pl-k">|</span>_ __ _ <span class="pl-k">|</span> Type <span class="pl-s"><span class="pl-pds">"</span>?<span class="pl-pds">"</span></span> <span class="pl-k">for</span> help, <span class="pl-s"><span class="pl-pds">"</span>]?<span class="pl-pds">"</span></span> <span class="pl-k">for</span> Pkg help.
<span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span><span class="pl-k">/</span> <span class="pl-s"><span class="pl-pds"><span class="pl-c1">_</span>`</span> | |</span>
<span class="pl-s"> | | |_| | | | (_| | | Version 1.0.0 (2018-08-08)</span>
<span class="pl-s"> _/ |<span class="pl-cce">\_</span>_'_|_|_|<span class="pl-cce">\_</span>_'_| | Official https://julialang.org/ release</span>
<span class="pl-s">|__/ |</span>
<span class="pl-s"></span>
<span class="pl-s">julia> f = x->7</span>
<span class="pl-s">#3 (generic function with 1 method)</span>
<span class="pl-s"></span>
<span class="pl-s">julia> f = x->f(x) + 1</span>
<span class="pl-s">#5 (generic function with 1 method)</span>
<span class="pl-s"></span>
<span class="pl-s">julia> f(1)</span>
<span class="pl-s">Segmentation fault: 11 ๐ฒ</span>
<span class="pl-s"></span>
<span class="pl-s">$ uname -a</span>
<span class="pl-s">Darwin Sams-15-Inch-MacBook.local 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 x86_64</span></pre></div> | <p dir="auto">This one is a bit tricky... (occurs on recent v0.5 builds from master, but not v0.4.6)</p>
<p dir="auto">If you have a specific sort of function containing a recursive call (like the one below), and <code class="notranslate">n</code> recursive calls leads to a Stack Overflow, then <em>sometimes</em> making <code class="notranslate">n-1</code> recursive calls leads to a Segmentation Fault.</p>
<p dir="auto">An example of such a function:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function f(x)
if x > 0
unshift!(f(x-1), 1)
else
[1]
end
end"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">f</span>(x)
<span class="pl-k">if</span> x <span class="pl-k">></span> <span class="pl-c1">0</span>
<span class="pl-c1">unshift!</span>(<span class="pl-c1">f</span>(x<span class="pl-k">-</span><span class="pl-c1">1</span>), <span class="pl-c1">1</span>)
<span class="pl-k">else</span>
[<span class="pl-c1">1</span>]
<span class="pl-k">end</span>
<span class="pl-k">end</span></pre></div>
<p dir="auto">I've also created a little test file that does a simple binary search of the number of iterations to trigger the bug: <a href="https://gist.github.com/jballanc/1734f3a735b62c89908b51bb375d6c3e">https://gist.github.com/jballanc/1734f3a735b62c89908b51bb375d6c3e</a></p>
<p dir="auto">There seems to be a dependance on how the above script is run that affects whether or not the crash is triggered. On my machine running in the Emacs terminal crashes, running in a normal terminal doesn't crash, but running it as <code class="notranslate">julia -e 'versioninfo(); include("crash.jl")'</code> does crash. Manually searching for the correct <code class="notranslate">n</code> in the REPL also crashes reliably.</p>
<p dir="auto">The stack trace at the point of the segfault is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(lldb) bt
* thread #3: tid = 0xa312d, 0x0000000100139c10 libjulia.0.5.0.dylib`libunwind::LocalAddressSpace::get64(this=0x00000001002f2958, addr=140734791204856) + 16 at AddressSpace.hpp:92, stop reason = EXC_BAD_ACCESS (code=2, address=0x7fff5f3cbff8)
* frame #0: 0x0000000100139c10 libjulia.0.5.0.dylib`libunwind::LocalAddressSpace::get64(this=0x00000001002f2958, addr=140734791204856) + 16 at AddressSpace.hpp:92
frame #1: 0x000000010013e0fc libjulia.0.5.0.dylib`libunwind::CompactUnwinder_x86_64<libunwind::LocalAddressSpace>::stepWithCompactEncodingRBPFrame(compactEncoding=16974177, functionStart=4295582032, addressSpace=0x00000001002f2958, registers=0x0000700000103768) + 812 at CompactUnwinder.hpp:618
frame #2: 0x000000010013dd58 libjulia.0.5.0.dylib`libunwind::CompactUnwinder_x86_64<libunwind::LocalAddressSpace>::stepWithCompactEncoding(compactEncoding=16974177, functionStart=4295582032, addressSpace=0x00000001002f2958, registers=0x0000700000103768) + 120 at CompactUnwinder.hpp:545
frame #3: 0x000000010013dcd6 libjulia.0.5.0.dylib`libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::stepWithCompactEncoding(this=0x0000700000103710, (null)=0x00007000001034e0) + 54 at UnwindCursor.hpp:339
frame #4: 0x000000010013b0ac libjulia.0.5.0.dylib`libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::stepWithCompactEncoding(this=0x0000700000103710) + 60 at UnwindCursor.hpp:337
frame #5: 0x000000010013a4ea libjulia.0.5.0.dylib`libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::step(this=0x0000700000103710) + 90 at UnwindCursor.hpp:876
frame #6: 0x00000001001397fe libjulia.0.5.0.dylib`::unw_step(cursor=0x0000700000103710) + 30 at libuwind.cxx:288
frame #7: 0x0000000100090e19 libjulia.0.5.0.dylib`jl_unw_stepn [inlined] jl_unw_step(cursor=0x0000700000103710) + 441 at stackwalk.c:306 [opt]
frame #8: 0x0000000100090dd7 libjulia.0.5.0.dylib`jl_unw_stepn(cursor=0x0000700000103710, ip=0x0000000103cb9000, sp=<unavailable>, maxsize=80000) + 375 at stackwalk.c:46 [opt]
frame #9: 0x0000000100090ecf libjulia.0.5.0.dylib`rec_backtrace_ctx(data=0x0000000103cb9000, maxsize=80000, context=<unavailable>) + 63 at stackwalk.c:75 [opt]
frame #10: 0x00000001000815fd libjulia.0.5.0.dylib`jl_throw_in_thread(tid=<unavailable>, thread=1295, exception=0x0000000105c49b38) + 109 at signals-mach.c:131 [opt]
frame #11: 0x00000001000819b6 libjulia.0.5.0.dylib`catch_exception_raise(exception_port=<unavailable>, thread=1295, task=<unavailable>, exception=<unavailable>, code=<unavailable>, code_count=<unavailable>) + 822 at signals-mach.c:227 [opt]
frame #12: 0x00007fff8bfac440 libsystem_kernel.dylib`_Xexception_raise + 130
frame #13: 0x00007fff8bfac6fe libsystem_kernel.dylib`exc_server + 78
frame #14: 0x00007fff8bfbbce0 libsystem_kernel.dylib`mach_msg_server + 504
frame #15: 0x000000010008155d libjulia.0.5.0.dylib`mach_segv_listener(arg=<unavailable>) + 29 at signals-mach.c:73 [opt]
frame #16: 0x00007fff8d37199d libsystem_pthread.dylib`_pthread_body + 131
frame #17: 0x00007fff8d37191a libsystem_pthread.dylib`_pthread_start + 168
frame #18: 0x00007fff8d36f351 libsystem_pthread.dylib`thread_start + 13"><pre class="notranslate"><code class="notranslate">(lldb) bt
* thread #3: tid = 0xa312d, 0x0000000100139c10 libjulia.0.5.0.dylib`libunwind::LocalAddressSpace::get64(this=0x00000001002f2958, addr=140734791204856) + 16 at AddressSpace.hpp:92, stop reason = EXC_BAD_ACCESS (code=2, address=0x7fff5f3cbff8)
* frame #0: 0x0000000100139c10 libjulia.0.5.0.dylib`libunwind::LocalAddressSpace::get64(this=0x00000001002f2958, addr=140734791204856) + 16 at AddressSpace.hpp:92
frame #1: 0x000000010013e0fc libjulia.0.5.0.dylib`libunwind::CompactUnwinder_x86_64<libunwind::LocalAddressSpace>::stepWithCompactEncodingRBPFrame(compactEncoding=16974177, functionStart=4295582032, addressSpace=0x00000001002f2958, registers=0x0000700000103768) + 812 at CompactUnwinder.hpp:618
frame #2: 0x000000010013dd58 libjulia.0.5.0.dylib`libunwind::CompactUnwinder_x86_64<libunwind::LocalAddressSpace>::stepWithCompactEncoding(compactEncoding=16974177, functionStart=4295582032, addressSpace=0x00000001002f2958, registers=0x0000700000103768) + 120 at CompactUnwinder.hpp:545
frame #3: 0x000000010013dcd6 libjulia.0.5.0.dylib`libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::stepWithCompactEncoding(this=0x0000700000103710, (null)=0x00007000001034e0) + 54 at UnwindCursor.hpp:339
frame #4: 0x000000010013b0ac libjulia.0.5.0.dylib`libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::stepWithCompactEncoding(this=0x0000700000103710) + 60 at UnwindCursor.hpp:337
frame #5: 0x000000010013a4ea libjulia.0.5.0.dylib`libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_x86_64>::step(this=0x0000700000103710) + 90 at UnwindCursor.hpp:876
frame #6: 0x00000001001397fe libjulia.0.5.0.dylib`::unw_step(cursor=0x0000700000103710) + 30 at libuwind.cxx:288
frame #7: 0x0000000100090e19 libjulia.0.5.0.dylib`jl_unw_stepn [inlined] jl_unw_step(cursor=0x0000700000103710) + 441 at stackwalk.c:306 [opt]
frame #8: 0x0000000100090dd7 libjulia.0.5.0.dylib`jl_unw_stepn(cursor=0x0000700000103710, ip=0x0000000103cb9000, sp=<unavailable>, maxsize=80000) + 375 at stackwalk.c:46 [opt]
frame #9: 0x0000000100090ecf libjulia.0.5.0.dylib`rec_backtrace_ctx(data=0x0000000103cb9000, maxsize=80000, context=<unavailable>) + 63 at stackwalk.c:75 [opt]
frame #10: 0x00000001000815fd libjulia.0.5.0.dylib`jl_throw_in_thread(tid=<unavailable>, thread=1295, exception=0x0000000105c49b38) + 109 at signals-mach.c:131 [opt]
frame #11: 0x00000001000819b6 libjulia.0.5.0.dylib`catch_exception_raise(exception_port=<unavailable>, thread=1295, task=<unavailable>, exception=<unavailable>, code=<unavailable>, code_count=<unavailable>) + 822 at signals-mach.c:227 [opt]
frame #12: 0x00007fff8bfac440 libsystem_kernel.dylib`_Xexception_raise + 130
frame #13: 0x00007fff8bfac6fe libsystem_kernel.dylib`exc_server + 78
frame #14: 0x00007fff8bfbbce0 libsystem_kernel.dylib`mach_msg_server + 504
frame #15: 0x000000010008155d libjulia.0.5.0.dylib`mach_segv_listener(arg=<unavailable>) + 29 at signals-mach.c:73 [opt]
frame #16: 0x00007fff8d37199d libsystem_pthread.dylib`_pthread_body + 131
frame #17: 0x00007fff8d37191a libsystem_pthread.dylib`_pthread_start + 168
frame #18: 0x00007fff8d36f351 libsystem_pthread.dylib`thread_start + 13
</code></pre></div> | 1 |
<p dir="auto">The following code results in corrupt output: (Ubuntu 12.04 LTS, rust master pulled 25th Feb)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let arr : ~[&str] = std::os::args()[1].split_str("::").collect();
std::io::println("first " + arr[0]);
std::io::println("first again " + arr[0]);"><pre class="notranslate"><code class="notranslate">let arr : ~[&str] = std::os::args()[1].split_str("::").collect();
std::io::println("first " + arr[0]);
std::io::println("first again " + arr[0]);
</code></pre></div>
<p dir="auto">$ rustc isolate_issue.rs<br>
$ ./isolate_issue "foo::bar"<br>
first fir<br>
first again </p>
<p dir="auto">Ashish Myles noted that an earlier version of rust failed to compile this code, giving an error about the reference to the return value of std::os::args() not being valid for the duration of its use.</p>
<p dir="auto"><a href="https://mail.mozilla.org/pipermail/rust-dev/2014-February/008796.html" rel="nofollow">https://mail.mozilla.org/pipermail/rust-dev/2014-February/008796.html</a></p>
<p dir="auto">Pulling 'args' into a separate local variable works:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let args = std::os::args();
let arr : ~[&str] = args[1].split_str("::").collect();
std::io::println("first " + arr[0]);
std::io::println("first again " + arr[0]);"><pre class="notranslate"><code class="notranslate">let args = std::os::args();
let arr : ~[&str] = args[1].split_str("::").collect();
std::io::println("first " + arr[0]);
std::io::println("first again " + arr[0]);
</code></pre></div>
<p dir="auto">$ ./isolate_issue "foo::bar"<br>
first foo<br>
first again foo</p> | <h1 dir="auto">Updated bug</h1>
<p dir="auto">The compiler allows this code when it shouldn't</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="fn main() {
let a = ~"";
let b: ~[&str] = a.lines().collect();
drop(a);
for s in b.iter() {
println!("{}", *s);
}
}"><pre class="notranslate"><span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> a = ~""<span class="pl-kos">;</span>
<span class="pl-k">let</span> b<span class="pl-kos">:</span> ~<span class="pl-kos">[</span><span class="pl-c1">&</span><span class="pl-smi">str</span><span class="pl-kos">]</span> = a<span class="pl-kos">.</span><span class="pl-en">lines</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">collect</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">drop</span><span class="pl-kos">(</span>a<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> s <span class="pl-k">in</span> b<span class="pl-kos">.</span><span class="pl-en">iter</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">println</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-s">"{}"</span>, *s<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<h1 dir="auto">Original description</h1>
<p dir="auto">The following code is buggy:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let foo = ~"hello";
let foo: ~[&str] = foo.words().collect();
let invalid_string = foo[0];"><pre class="notranslate"><span class="pl-k">let</span> foo = ~"hello"<span class="pl-kos">;</span>
<span class="pl-k">let</span> foo<span class="pl-kos">:</span> ~<span class="pl-kos">[</span><span class="pl-c1">&</span><span class="pl-smi">str</span><span class="pl-kos">]</span> = foo<span class="pl-kos">.</span><span class="pl-en">words</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">collect</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> invalid_string = foo<span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Invalid string contains, as the name suggests, an invalid string; sometimes I get a string filled with <code class="notranslate">\x00</code>, sometimes just garbage, and usually it will eventually assert that the string contains invalid characters.</p>
<p dir="auto">It appears that the first <code class="notranslate">foo</code> gets dropped when the second one is assigned?<br>
Either the first <code class="notranslate">foo</code> is supposed to be dropped as happens now, and the borrow checker should forbid this code (since the old <code class="notranslate">foo</code> no longer exists, <code class="notranslate">&str</code> cannot have a lifetime), or it should let the first <code class="notranslate">foo</code> live until the end of the current scope, and make the above work.</p> | 1 |
<p dir="auto">I try to load an image with opencv and work further on it with the tensorflow framework. Unfortunately I get a really weird behaviour:</p>
<p dir="auto">The image is loaded without problems using <code class="notranslate">cc_binary(...)</code> in Bazel. Changing it to <code class="notranslate">tf_cc_binary(...)</code> doesn't stop the code from compilation or running, but opencv can't load any images any more.</p>
<h3 dir="auto">Source code / logs</h3>
<p dir="auto">This is my BUILD file:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
#tf_cc_binary( <-- using this, no image could be loaded anymore
cc_binary(
name = "main",
srcs = ["main.cpp"],
linkopts = [
"-lopencv_core",
"-lopencv_highgui",
"-lopencv_imgcodecs",
"-lopencv_imgproc",
],
visibility=["//visibility:public"]
)"><pre class="notranslate"><code class="notranslate">load("//tensorflow:tensorflow.bzl", "tf_cc_binary")
#tf_cc_binary( <-- using this, no image could be loaded anymore
cc_binary(
name = "main",
srcs = ["main.cpp"],
linkopts = [
"-lopencv_core",
"-lopencv_highgui",
"-lopencv_imgcodecs",
"-lopencv_imgproc",
],
visibility=["//visibility:public"]
)
</code></pre></div>
<p dir="auto">I use the standard example code from the opencv website. Again, it is working and the image gets loaded using <code class="notranslate">cc_binary(</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main( int argc, char** argv )
{
Mat image;
image = imread("tensorflow/test/imageHolder/data/example.jpg", CV_LOAD_IMAGE_COLOR); // Read the file
if(! image.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
return -1;
}
namedWindow( "Display window", WINDOW_AUTOSIZE );// Create a window for display.
imshow( "Display window", image ); // Show our image inside it.
waitKey(0); // Wait for a keystroke in the window
return 0;
}"><pre class="notranslate"><code class="notranslate">#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main( int argc, char** argv )
{
Mat image;
image = imread("tensorflow/test/imageHolder/data/example.jpg", CV_LOAD_IMAGE_COLOR); // Read the file
if(! image.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
return -1;
}
namedWindow( "Display window", WINDOW_AUTOSIZE );// Create a window for display.
imshow( "Display window", image ); // Show our image inside it.
waitKey(0); // Wait for a keystroke in the window
return 0;
}
</code></pre></div>
<p dir="auto">This is my file structure in case it matters:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="โโโ data
ย ย โโโ example.jpg
โโโ src
โโโ BUILD
โโโ main.cpp"><pre class="notranslate"><code class="notranslate">โโโ data
ย ย โโโ example.jpg
โโโ src
โโโ BUILD
โโโ main.cpp
</code></pre></div> | <h3 dir="auto">Environment info</h3>
<p dir="auto">Operating System: Ubuntu 14.04.</p>
<p dir="auto">If installed from sources, provide the commit hash: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/tensorflow/tensorflow/commit/f952246b1756242926d47091d09ceb7c7b963269/hovercard" href="https://github.com/tensorflow/tensorflow/commit/f952246b1756242926d47091d09ceb7c7b963269"><tt>f952246</tt></a></p>
<h3 dir="auto">Steps to reproduce</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ python2 -c "import tensorflow; import cv2; print cv2.imread('cat.jpg')"
None"><pre class="notranslate">$ python2 -c <span class="pl-s"><span class="pl-pds">"</span>import tensorflow; import cv2; print cv2.imread('cat.jpg')<span class="pl-pds">"</span></span>
None</pre></div>
<h3 dir="auto">What have you tried?</h3>
<p dir="auto">import cv2 before tensorflow works.</p>
<p dir="auto">This problem also exists on CentOS 7. It doesn't happen on a latest ArchLinux.<br>
It's likely due to that tensorflow has it's own libjpeg that conflicts with opencv on some platforms.</p> | 1 |
<p dir="auto">I am trying to compile Rust 0.12 on Debian Sid and it fails at the docs step.</p>
<p dir="auto">Running <code class="notranslate">make docs</code> will show the same issue:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@deli:/home/borisov/src/rust-0.12.0 # make docs
cfg: build triple x86_64-unknown-linux-gnu
cfg: host triples x86_64-unknown-linux-gnu
cfg: target triples x86_64-unknown-linux-gnu
cfg: enabling more debugging (CFG_ENABLE_DEBUG)
cfg: host for x86_64-unknown-linux-gnu is x86_64
cfg: os for x86_64-unknown-linux-gnu is unknown-linux-gnu
cfg: using CC=gcc (CFG_CC)
cfg: no llnextgen found, omitting grammar-verification
latex compiler: doc/guide.pdf
This is LuaTeX, Version beta-0.79.1 (TeX Live 2015/dev/Debian) (rev 4971)
restricted \write18 enabled.
/home/borisov/src/rust-0.12.0/mk/docs.mk:216: recipe for target 'doc/guide.pdf' failed
make: *** [doc/guide.pdf] Error 1"><pre class="notranslate"><code class="notranslate">root@deli:/home/borisov/src/rust-0.12.0 # make docs
cfg: build triple x86_64-unknown-linux-gnu
cfg: host triples x86_64-unknown-linux-gnu
cfg: target triples x86_64-unknown-linux-gnu
cfg: enabling more debugging (CFG_ENABLE_DEBUG)
cfg: host for x86_64-unknown-linux-gnu is x86_64
cfg: os for x86_64-unknown-linux-gnu is unknown-linux-gnu
cfg: using CC=gcc (CFG_CC)
cfg: no llnextgen found, omitting grammar-verification
latex compiler: doc/guide.pdf
This is LuaTeX, Version beta-0.79.1 (TeX Live 2015/dev/Debian) (rev 4971)
restricted \write18 enabled.
/home/borisov/src/rust-0.12.0/mk/docs.mk:216: recipe for target 'doc/guide.pdf' failed
make: *** [doc/guide.pdf] Error 1
</code></pre></div>
<p dir="auto">I haven't a found any log file with more information, but I admit I didn't look too hard. Let me know what more information I can provide.</p> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="rustdoc: doc/guide.html
pandoc: doc/guide.tex
/usr/bin/pandoc --standalone --toc --number-sections --include-before-body=doc/version.tex --from=markdown --include-before-body=doc/footer.tex --to=latex /home/liigo/rust/rust/src/doc/guide.md --output=doc/guide.tex
latex compiler: doc/guide.pdf
This is LuaTeX, Version beta-0.70.2-2012070300 (TeX Live 2012/Debian)
restricted \write18 enabled.
make: *** [doc/guide.pdf] Error 1"><pre class="notranslate"><code class="notranslate">rustdoc: doc/guide.html
pandoc: doc/guide.tex
/usr/bin/pandoc --standalone --toc --number-sections --include-before-body=doc/version.tex --from=markdown --include-before-body=doc/footer.tex --to=latex /home/liigo/rust/rust/src/doc/guide.md --output=doc/guide.tex
latex compiler: doc/guide.pdf
This is LuaTeX, Version beta-0.70.2-2012070300 (TeX Live 2012/Debian)
restricted \write18 enabled.
make: *** [doc/guide.pdf] Error 1
</code></pre></div> | 1 |
<p dir="auto">Hello,</p>
<p dir="auto">I'm using axios 0.17.1.</p>
<p dir="auto">When I send a request to my API with axios and that my server returns a 302 status code (redirection), the error.response object is undifined on catch function. The error object I have when a 302 request is send :</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/22802680/35156888-86c76f24-fd32-11e7-90fa-f092c8582aa3.png"><img src="https://user-images.githubusercontent.com/22802680/35156888-86c76f24-fd32-11e7-90fa-f092c8582aa3.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">My server is working properly and returning code 302, I can see it in firefox console. I also tried the request on postman.</p>
<p dir="auto">Is anyone can help me ?</p>
<p dir="auto">Thank you,</p>
<p dir="auto">Ben.</p> | <h4 dir="auto">Summary</h4>
<p dir="auto">Sending a JSON response with status code 302 and some payload from the server (Laravel 5.5) results in <code class="notranslate">error.response.data</code> being <code class="notranslate">undefined</code> in error handler on IE only (Chrome, Firefox, Safari, Opera do not seem affected, payload data is available as you would expect). <code class="notranslate">error.response.request.response</code> and <code class="notranslate">error.response.request.responseText</code> are empty string as well. Seems like IE is notorious for having these kind of <a href="https://github.com/axios/axios/issues/201" data-hovercard-type="issue" data-hovercard-url="/axios/axios/issues/201/hovercard">issues</a></p>
<h4 dir="auto">Context</h4>
<ul dir="auto">
<li>axios version: <em>v0.17.0</em></li>
<li>Environment: <em>php v7.0.22, edge 16, windows 10</em></li>
</ul> | 1 |
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1216870/2981716/a271ef08-dc0a-11e3-8a9a-5d5a4f50d1bb.gif"><img src="https://cloud.githubusercontent.com/assets/1216870/2981716/a271ef08-dc0a-11e3-8a9a-5d5a4f50d1bb.gif" alt="codefoldbug" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">As above - this particular structure causes the following fold to duplicate when unfolded, then throws an error on further folding.</p>
<p dir="auto">Dev console spits out<br>
<code class="notranslate">Uncaught TypeError: Cannot call method 'getBufferRange' of undefined</code><br>
<code class="notranslate">/Applications/Atom.app/Contents/Resources/app/src/editor-view.js:846</code></p> | <p dir="auto">Every time I go to add a file to Ignored Names the settings page scrolls to the bottom on me and I have to manually scroll back up.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/5bb510c5504875986dfc23f0214c798ec97082546925a038e12c61118b8ee1bf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3632332f313932343735302f31313639393866382d376532372d313165332d393735642d6139653034396362633538622e676966"><img src="https://camo.githubusercontent.com/5bb510c5504875986dfc23f0214c798ec97082546925a038e12c61118b8ee1bf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3632332f313932343735302f31313639393866382d376532372d313165332d393735642d6139653034396362633538622e676966" alt="atom-settings" data-animated-image="" data-canonical-src="https://f.cloud.github.com/assets/623/1924750/116998f8-7e27-11e3-975d-a9e049cbc58b.gif" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">In Electron's repo, there are some kinds of other foreign languages' documents translated by some contributors(Thanks all for them).</p>
<p dir="auto">It's quite nice for the native beginner, but there is an out-of-date issue of them. As the project developed, many new-added features and changes will cause the document updated. Right now we only keep the official document(English) updated.</p>
<p dir="auto">I think we should figure out a way to keep all the translated document updated. I post a discussion here.</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>
<p dir="auto">App crashing after file upload window appears</p>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>6.0.0 beta 3</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 10.14.5 / 10.14.6 beta 1</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>5.0.1</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Electron does not crash</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">App crashing after file upload window appears</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Install Electron v6.0.0 beta 3<br>
Add input type file<br>
Click on upload file input</p>
<p dir="auto"><strong>Repo fork:</strong><br>
<a href="https://github.com/JB1905/electron-quick-start">https://github.com/JB1905/electron-quick-start</a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/28870390/57982166-057cb580-7a42-11e9-816e-00596f6a33f7.gif"><img src="https://user-images.githubusercontent.com/28870390/57982166-057cb580-7a42-11e9-816e-00596f6a33f7.gif" alt="demo" data-animated-image="" style="max-width: 100%;"></a></p> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">I build a GridView with some Widgets including a Text with very long text which should be stripped. But the Text did not strip, it overflows and shows into the next item. I could strip it down to this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="GridView.builder(
gridDelegate: SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent: 200.0,
childAspectRatio: 3.0,
mainAxisSpacing: 24.0,
crossAxisSpacing: 4.0
),
padding: EdgeInsets.all(5.0),
itemCount: 50,
itemBuilder: Text(
"insert ververylong more text, I wont do here please duplicate line"
)
);"><pre class="notranslate"><code class="notranslate">GridView.builder(
gridDelegate: SliverGridDelegateWithMaxCrossAxisExtent(
maxCrossAxisExtent: 200.0,
childAspectRatio: 3.0,
mainAxisSpacing: 24.0,
crossAxisSpacing: 4.0
),
padding: EdgeInsets.all(5.0),
itemCount: 50,
itemBuilder: Text(
"insert ververylong more text, I wont do here please duplicate line"
)
);
</code></pre></div>
<ol dir="auto">
<li>Now play with the EdgeInsets: try 3, 4, 5, 6, ...</li>
<li>Depending on the padding, with some there is an overflow, with some not. Seems to be different in landscape and portrait.</li>
<li>Multiples are also affected: 10.0, 15.0 -- or 8.0, 12.0</li>
<li>Did not see the overflow with fractals like 4.1 or 4.01</li>
</ol>
<h2 dir="auto">Screenshots</h2>
<p dir="auto">EdgeInsets(4.0):</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2194730/41143625-3c236280-6afa-11e8-82b7-f2ce86ff0709.jpg"><img src="https://user-images.githubusercontent.com/2194730/41143625-3c236280-6afa-11e8-82b7-f2ce86ff0709.jpg" alt="screenshot_20180608-085154" style="max-width: 100%;"></a></p>
<p dir="auto">EdgeInsets(4.1):</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2194730/41143624-3bfa0fde-6afa-11e8-9ab6-d280f8c322e0.jpg"><img src="https://user-images.githubusercontent.com/2194730/41143624-3bfa0fde-6afa-11e8-9ab6-d280f8c322e0.jpg" alt="screenshot_20180608-085139" 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="]
(c) 2018 Microsoft Corporation. Alle Rechte vorbehalten.
C:\data\Projekte\jow_diag_f>flutter run --verbose
[ +86 ms] [C:\data\flutter\] git rev-parse --abbrev-ref --symbolic @{u}
[ +119 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ +1 ms] origin/beta
[ ] [C:\data\flutter\] git rev-parse --abbrev-ref HEAD
[ +45 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ +1 ms] [C:\data\flutter\] git ls-remote --get-url origin
[ +46 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [C:\data\flutter\] git log -n 1 --pretty=format:%H
[ +51 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [C:\data\flutter\] git log -n 1 --pretty=format:%ar
[ +55 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 4 weeks ago
[ +1 ms] [C:\data\flutter\] git describe --match v*.*.* --first-parent --long --tags
[ +53 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[ +317 ms] c:\data\sdk\platform-tools\adb devices -l
[ +24 ms] Exit code 0 from: c:\data\sdk\platform-tools\adb devices -l
[ ] List of devices attached
681072bd device product:OnePlus3 model:ONEPLUS_A3003 device:OnePlus3T transport_id:7
[ +181 ms] Found plugin flutter_webview_plugin at C:\data\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_webview_plugin-0.1.6\
[ +33 ms] Found plugin path_provider at C:\data\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-0.4.1\
[ +128 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell getprop
[ +101 ms] ro.hardware = qcom
[+1132 ms] Launching lib/main.dart on ONEPLUS A3003 in debug mode...
[ +14 ms] Initializing gradle...
[ +1 ms] Using gradle from C:\data\Projekte\jow_diag_f\android\gradlew.bat.
[ +98 ms] C:\data\Projekte\jow_diag_f\android\gradlew.bat -v
[ +821 ms]
------------------------------------------------------------
Gradle 4.4
------------------------------------------------------------
Build time: 2017-12-06 09:05:06 UTC
Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82
Groovy: 2.4.12
Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017
JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b02)
OS: Windows 10 10.0 amd64
[ +4 ms] Resolving dependencies...
[ ] [android\] C:\data\Projekte\jow_diag_f\android\gradlew.bat app:properties
[+1922 ms] WARNING: The specified Android SDK Build Tools version (25.0.0) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2.
Android SDK Build Tools 27.0.3 will be used.
To suppress this warning, remove "buildToolsVersion '25.0.0'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
:app:properties
------------------------------------------------------------
Project :app
------------------------------------------------------------
allprojects: [project ':app']
android: com.android.build.gradle.AppExtension_Decorated@2b52e029
androidDependencies: task ':app:androidDependencies'
ant: org.gradle.api.internal.project.DefaultAntBuilder@1b267660
antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@5358b521
archivesBaseName: app
artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@4ae98280
asDynamicObject: DynamicObject for project ':app'
assemble: task ':app:assemble'
assembleAndroidTest: task ':app:assembleAndroidTest'
assembleDebug: task ':app:assembleDebug'
assembleDebugAndroidTest: task ':app:assembleDebugAndroidTest'
assembleDebugUnitTest: task ':app:assembleDebugUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@7606705c
buildDependents: task ':app:buildDependents'
buildDir: C:\data\Projekte\jow_diag_f\build\app
buildFile: C:\data\Projekte\jow_diag_f\android\app\build.gradle
buildNeeded: task ':app:buildNeeded'
buildOutputs: BaseVariantOutput container
buildPath: :
buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@5ebb8d8a
buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@485cdac1
bundleAppClassesDebug: task ':app:bundleAppClassesDebug'
bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest'
bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest'
bundleAppClassesProfile: task ':app:bundleAppClassesProfile'
bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest'
bundleAppClassesRelease: task ':app:bundleAppClassesRelease'
bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest'
bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources'
bundleDebugResources: task ':app:bundleDebugResources'
bundleProfileResources: task ':app:bundleProfileResources'
bundleReleaseResources: task ':app:bundleReleaseResources'
check: task ':app:check'
checkDebugManifest: task ':app:checkDebugManifest'
checkProfileManifest: task ':app:checkProfileManifest'
checkReleaseManifest: task ':app:checkReleaseManifest'
childProjects: {}
class: class org.gradle.api.internal.project.DefaultProject_Decorated
classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@4ea7bcc8
cleanBuildCache: task ':app:cleanBuildCache'
compileDebugAidl: task ':app:compileDebugAidl'
compileDebugAndroidTestAidl: task ':app:compileDebugAndroidTestAidl'
compileDebugAndroidTestJavaWithJavac: task ':app:compileDebugAndroidTestJavaWithJavac'
compileDebugAndroidTestNdk: task ':app:compileDebugAndroidTestNdk'
compileDebugAndroidTestRenderscript: task ':app:compileDebugAndroidTestRenderscript'
compileDebugAndroidTestShaders: task ':app:compileDebugAndroidTestShaders'
compileDebugAndroidTestSources: task ':app:compileDebugAndroidTestSources'
compileDebugJavaWithJavac: task ':app:compileDebugJavaWithJavac'
compileDebugNdk: task ':app:compileDebugNdk'
compileDebugRenderscript: task ':app:compileDebugRenderscript'
compileDebugShaders: task ':app:compileDebugShaders'
compileDebugSources: task ':app:compileDebugSources'
compileDebugUnitTestJavaWithJavac: task ':app:compileDebugUnitTestJavaWithJavac'
compileDebugUnitTestSources: task ':app:compileDebugUnitTestSources'
compileLint: task ':app:compileLint'
compileProfileAidl: task ':app:compileProfileAidl'
compileProfileJavaWithJavac: task ':app:compileProfileJavaWithJavac'
compileProfileNdk: task ':app:compileProfileNdk'
compileProfileRenderscript: task ':app:compileProfileRenderscript'
compileProfileShaders: task ':app:compileProfileShaders'
compileProfileSources: task ':app:compileProfileSources'
compileProfileUnitTestJavaWithJavac: task ':app:compileProfileUnitTestJavaWithJavac'
compileProfileUnitTestSources: task ':app:compileProfileUnitTestSources'
compileReleaseAidl: task ':app:compileReleaseAidl'
compileReleaseJavaWithJavac: task ':app:compileReleaseJavaWithJavac'
compileReleaseNdk: task ':app:compileReleaseNdk'
compileReleaseRenderscript: task ':app:compileReleaseRenderscript'
compileReleaseShaders: task ':app:compileReleaseShaders'
compileReleaseSources: task ':app:compileReleaseSources'
compileReleaseUnitTestJavaWithJavac: task ':app:compileReleaseUnitTestJavaWithJavac'
compileReleaseUnitTestSources: task ':app:compileReleaseUnitTestSources'
components: SoftwareComponentInternal set
configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@be6b1d0
configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@933bafb
configurations: configuration container
connectedAndroidTest: task ':app:connectedAndroidTest'
connectedCheck: task ':app:connectedCheck'
connectedDebugAndroidTest: task ':app:connectedDebugAndroidTest'
consumeConfigAttr: task ':app:consumeConfigAttr'
convention: org.gradle.api.internal.plugins.DefaultConvention@2797e3ce
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests'
createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests'
defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@54255a08
defaultTasks: []
deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@6a73196d
dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@7e0382ba
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir: C:\data\Projekte\jow_diag_f\build\app\distributions
distsDirName: distributions
docsDir: C:\data\Projekte\jow_diag_f\build\app\docs
docsDirName: docs
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@66129727
extensions: org.gradle.api.internal.plugins.DefaultConvention@2797e3ce
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations: org.gradle.api.internal.file.DefaultFileOperations@181964f7
fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@6ad3aee8
flutter: FlutterExtension_Decorated@8a7e75a
flutterBuildDebug: task ':app:flutterBuildDebug'
flutterBuildProfile: task ':app:flutterBuildProfile'
flutterBuildRelease: task ':app:flutterBuildRelease'
flutterBuildX86Jar: task ':app:flutterBuildX86Jar'
generateDebugAndroidTestAssets: task ':app:generateDebugAndroidTestAssets'
generateDebugAndroidTestBuildConfig: task ':app:generateDebugAndroidTestBuildConfig'
generateDebugAndroidTestResValues: task ':app:generateDebugAndroidTestResValues'
generateDebugAndroidTestResources: task ':app:generateDebugAndroidTestResources'
generateDebugAndroidTestSources: task ':app:generateDebugAndroidTestSources'
generateDebugAssets: task ':app:generateDebugAssets'
generateDebugBuildConfig: task ':app:generateDebugBuildConfig'
generateDebugResValues: task ':app:generateDebugResValues'
generateDebugResources: task ':app:generateDebugResources'
generateDebugSources: task ':app:generateDebugSources'
generateProfileAssets: task ':app:generateProfileAssets'
generateProfileBuildConfig: task ':app:generateProfileBuildConfig'
generateProfileResValues: task ':app:generateProfileResValues'
generateProfileResources: task ':app:generateProfileResources'
generateProfileSources: task ':app:generateProfileSources'
generateReleaseAssets: task ':app:generateReleaseAssets'
generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig'
generateReleaseResValues: task ':app:generateReleaseResValues'
generateReleaseResources: task ':app:generateReleaseResources'
generateReleaseSources: task ':app:generateReleaseSources'
gradle: build 'android'
group: android
identityPath: :app
inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@7a7ee2c6
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest'
layout: org.gradle.api.internal.file.DefaultProjectLayout@29930fa2
libsDir: C:\data\Projekte\jow_diag_f\build\app\libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@43a3e924
logging: org.gradle.internal.logging.services.DefaultLoggingManager@5ec05096
mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug'
mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest'
mainApkListPersistenceProfile: task ':app:mainApkListPersistenceProfile'
mainApkListPersistenceRelease: task ':app:mainApkListPersistenceRelease'
mergeDebugAndroidTestAssets: task ':app:mergeDebugAndroidTestAssets'
mergeDebugAndroidTestJniLibFolders: task ':app:mergeDebugAndroidTestJniLibFolders'
mergeDebugAndroidTestResources: task ':app:mergeDebugAndroidTestResources'
mergeDebugAndroidTestShaders: task ':app:mergeDebugAndroidTestShaders'
mergeDebugAssets: task ':app:mergeDebugAssets'
mergeDebugJniLibFolders: task ':app:mergeDebugJniLibFolders'
mergeDebugResources: task ':app:mergeDebugResources'
mergeDebugShaders: task ':app:mergeDebugShaders'
mergeProfileAssets: task ':app:mergeProfileAssets'
mergeProfileJniLibFolders: task ':app:mergeProfileJniLibFolders'
mergeProfileResources: task ':app:mergeProfileResources'
mergeProfileShaders: task ':app:mergeProfileShaders'
mergeReleaseAssets: task ':app:mergeReleaseAssets'
mergeReleaseJniLibFolders: task ':app:mergeReleaseJniLibFolders'
mergeReleaseResources: task ':app:mergeReleaseResources'
mergeReleaseShaders: task ':app:mergeReleaseShaders'
mockableAndroidJar: task ':app:mockableAndroidJar'
modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@696af123
modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@ba5a9b1
module: org.gradle.api.internal.artifacts.ProjectBackedModule@1be2548a
name: app
normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@648f461a
objects: org.gradle.api.internal.model.DefaultObjectFactory@5550ab36
org.gradle.jvmargs: -Xmx1536M
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageProfile: task ':app:packageProfile'
packageRelease: task ':app:packageRelease'
parent: root project 'android'
parentIdentifier: root project 'android'
path: :app
platformAttrExtractor: task ':app:platformAttrExtractor'
pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@94815ea
plugins: [org.gradle.api.plugins.HelpTasksPlugin@1d57c1de, com.android.build.gradle.api.AndroidBasePlugin@45754312, org.gradle.language.base.plugins.LifecycleBasePlugin@3b867527, org.gradle.api.plugi
ns.BasePlugin@44f5e34a, org.gradle.api.plugins.ReportingBasePlugin@1430a7b, org.gradle.platform.base.plugins.ComponentBasePlugin@2feafaa6, org.gradle.language.base.plugins.LanguageBasePlugin@36632df2, org.gradle.platfo
rm.base.plugins.BinaryBasePlugin@19fdb4be, org.gradle.api.plugins.JavaBasePlugin@5374b395, com.android.build.gradle.AppPlugin@ef25273, FlutterPlugin@3210c547]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preProfileBuild: task ':app:preProfileBuild'
preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild'
preReleaseBuild: task ':app:preReleaseBuild'
preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild'
prepareLintJar: task ':app:prepareLintJar'
preparePUBLISHED_DEXDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_DEXDebugAndroidTestForPublishing'
preparePUBLISHED_DEXDebugForPublishing: task ':app:preparePUBLISHED_DEXDebugForPublishing'
preparePUBLISHED_DEXProfileForPublishing: task ':app:preparePUBLISHED_DEXProfileForPublishing'
preparePUBLISHED_DEXReleaseForPublishing: task ':app:preparePUBLISHED_DEXReleaseForPublishing'
preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing'
preparePUBLISHED_JAVA_RESDebugForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugForPublishing'
preparePUBLISHED_JAVA_RESProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESProfileForPublishing'
preparePUBLISHED_JAVA_RESReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESReleaseForPublishing'
preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing'
preparePUBLISHED_NATIVE_LIBSDebugForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugForPublishing'
preparePUBLISHED_NATIVE_LIBSProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSProfileForPublishing'
preparePUBLISHED_NATIVE_LIBSReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSReleaseForPublishing'
processDebugAndroidTestJavaRes: task ':app:processDebugAndroidTestJavaRes'
processDebugAndroidTestManifest: task ':app:processDebugAndroidTestManifest'
processDebugAndroidTestResources: task ':app:processDebugAndroidTestResources'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task ':app:processDebugUnitTestJavaRes'
processOperations: org.gradle.api.internal.file.DefaultFileOperations@181964f7
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task ':app:processProfileUnitTestJavaRes'
processReleaseJavaRes: task ':app:processReleaseJavaRes'
processReleaseManifest: task ':app:processReleaseManifest'
processReleaseResources: task ':app:processReleaseResources'
processReleaseUnitTestJavaRes: task ':app:processReleaseUnitTestJavaRes'
project: project ':app'
projectConfigurator: org.gradle.api.internal.project.BuildOperationCrossProjectConfigurator@37950e09
projectDir: C:\data\Projekte\jow_diag_f\android\app
projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@29b43177
projectPath: :app
projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@79ed266c
properties: {...}
providers: org.gradle.api.internal.provider.DefaultProviderFactory@2944983b
reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug'
reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile'
reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease'
reporting: org.gradle.api.reporting.ReportingExtension_Decorated@30c38bfe
reportsDir: C:\data\Projekte\jow_diag_f\build\app\reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@2f393ea9
resources: org.gradle.api.internal.resources.DefaultResourceHandler@278e9db0
rootDir: C:\data\Projekte\jow_diag_f\android
rootProject: root project 'android'
script: false
scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@3740016b
scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@1b70e006
serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@7dda49b7
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease'
standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@5ec05096
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir: C:\data\Projekte\jow_diag_f\build\app\reports\tests
testReportDirName: tests
testResultsDir: C:\data\Projekte\jow_diag_f\build\app\test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile'
transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease'
transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease'
transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'
transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile'
transformDexArchiveWithExternalLibsDexMergerForRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease'
transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest'
transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease'
transformNativeLibsWithStripDebugSymbolForDebug: task ':app:transformNativeLibsWithStripDebugSymbolForDebug'
transformNativeLibsWithStripDebugSymbolForProfile: task ':app:transformNativeLibsWithStripDebugSymbolForProfile'
transformNativeLibsWithStripDebugSymbolForRelease: task ':app:transformNativeLibsWithStripDebugSymbolForRelease'
transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForProfile: task ':app:transformResourcesWithMergeJavaResForProfile'
transformResourcesWithMergeJavaResForProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForProfileUnitTest'
transformResourcesWithMergeJavaResForRelease: task ':app:transformResourcesWithMergeJavaResForRelease'
transformResourcesWithMergeJavaResForReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForReleaseUnitTest'
uninstallAll: task ':app:uninstallAll'
uninstallDebug: task ':app:uninstallDebug'
uninstallDebugAndroidTest: task ':app:uninstallDebugAndroidTest'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeProfileApplicationId: task ':app:writeProfileApplicationId'
writeReleaseApplicationId: task ':app:writeReleaseApplicationId'
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
[ +19 ms] c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +19 ms] Exit code 0 from: c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ ] package: name='de.jockels.jowdiagf' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
uses-permission: name='android.permission.WRITE_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_PHONE_STATE'
application-label:'jow_diag_f'
application-label-af:'jow_diag_f'
application-label-am:'jow_diag_f'
application-label-ar:'jow_diag_f'
application-label-az:'jow_diag_f'
application-label-be:'jow_diag_f'
application-label-bg:'jow_diag_f'
application-label-bn:'jow_diag_f'
application-label-bs:'jow_diag_f'
application-label-ca:'jow_diag_f'
application-label-cs:'jow_diag_f'
application-label-da:'jow_diag_f'
application-label-de:'jow_diag_f'
application-label-el:'jow_diag_f'
application-label-en-AU:'jow_diag_f'
application-label-en-GB:'jow_diag_f'
application-label-en-IN:'jow_diag_f'
application-label-es:'jow_diag_f'
application-label-es-US:'jow_diag_f'
application-label-et:'jow_diag_f'
application-label-eu:'jow_diag_f'
application-label-fa:'jow_diag_f'
application-label-fi:'jow_diag_f'
application-label-fr:'jow_diag_f'
application-label-fr-CA:'jow_diag_f'
application-label-gl:'jow_diag_f'
application-label-gu:'jow_diag_f'
application-label-hi:'jow_diag_f'
application-label-hr:'jow_diag_f'
application-label-hu:'jow_diag_f'
application-label-hy:'jow_diag_f'
application-label-in:'jow_diag_f'
application-label-is:'jow_diag_f'
application-label-it:'jow_diag_f'
application-label-iw:'jow_diag_f'
application-label-ja:'jow_diag_f'
application-label-ka:'jow_diag_f'
application-label-kk:'jow_diag_f'
application-label-km:'jow_diag_f'
application-label-kn:'jow_diag_f'
application-label-ko:'jow_diag_f'
application-label-ky:'jow_diag_f'
application-label-lo:'jow_diag_f'
application-label-lt:'jow_diag_f'
application-label-lv:'jow_diag_f'
application-label-mk:'jow_diag_f'
application-label-ml:'jow_diag_f'
application-label-mn:'jow_diag_f'
application-label-mr:'jow_diag_f'
application-label-ms:'jow_diag_f'
application-label-my:'jow_diag_f'
application-label-nb:'jow_diag_f'
application-label-ne:'jow_diag_f'
application-label-nl:'jow_diag_f'
application-label-pa:'jow_diag_f'
application-label-pl:'jow_diag_f'
application-label-pt:'jow_diag_f'
application-label-pt-BR:'jow_diag_f'
application-label-pt-PT:'jow_diag_f'
application-label-ro:'jow_diag_f'
application-label-ru:'jow_diag_f'
application-label-si:'jow_diag_f'
application-label-sk:'jow_diag_f'
application-label-sl:'jow_diag_f'
application-label-sq:'jow_diag_f'
application-label-sr:'jow_diag_f'
application-label-sr-Latn:'jow_diag_f'
application-label-sv:'jow_diag_f'
application-label-sw:'jow_diag_f'
application-label-ta:'jow_diag_f'
application-label-te:'jow_diag_f'
application-label-th:'jow_diag_f'
application-label-tl:'jow_diag_f'
application-label-tr:'jow_diag_f'
application-label-uk:'jow_diag_f'
application-label-ur:'jow_diag_f'
application-label-uz:'jow_diag_f'
application-label-vi:'jow_diag_f'
application-label-zh-CN:'jow_diag_f'
application-label-zh-HK:'jow_diag_f'
application-label-zh-TW:'jow_diag_f'
application-label-zu:'jow_diag_f'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='jow_diag_f' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='de.jockels.jowdiagf.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--' 'af' 'am' 'ar' 'az' 'be' 'bg' 'bn' 'bs' 'ca' 'cs' 'da' 'de' 'el' 'en-AU' 'en-GB' 'en-IN' 'es' 'es-US' 'et' 'eu' 'fa' 'fi' 'fr' 'fr-CA' 'gl' 'gu' 'hi' 'hr' 'hu' 'hy' 'in' 'is' 'it' 'iw' 'ja'
'ka' 'kk' 'km' 'kn' 'ko' 'ky' 'lo' 'lt' 'lv' 'mk' 'ml' 'mn' 'mr' 'ms' 'my' 'nb' 'ne' 'nl' 'pa' 'pl' 'pt' 'pt-BR' 'pt-PT' 'ro' 'ru' 'si' 'sk' 'sl' 'sq' 'sr' 'sr-Latn' 'sv' 'sw' 'ta' 'te' 'th' 'tl' 'tr' 'uk' 'ur' 'uz' 'v
i' 'zh-CN' 'zh-HK' 'zh-TW' 'zu'
densities: '160' '240' '320' '480' '640'
native-code: 'arm64-v8a' 'x86' 'x86_64'
[ +21 ms] c:\data\sdk\platform-tools\adb -s 681072bd logcat -v time -t 1
[ +122 ms] Exit code 0 from: c:\data\sdk\platform-tools\adb -s 681072bd logcat -v time -t 1
[ ] --------- beginning of system
06-08 08:52:10.319 D/NetlinkEvent( 914): Unknown ND option type 31
[ +5 ms] c:\data\sdk\platform-tools\adb -s 681072bd logcat -v time
[ +486 ms] DependencyChecker: C:\data\Projekte\jow_diag_f\lib\main.dart is newer than 2018-06-08 08:12:59.000
[ +9 ms] c:\data\sdk\platform-tools\adb version
[ +31 ms] Android Debug Bridge version 1.0.40
Version 4797878
Installed as c:\data\sdk\platform-tools\adb.EXE
[ +7 ms] c:\data\sdk\platform-tools\adb start-server
[ +31 ms] Building APK
[ +14 ms] Running 'gradlew assembleDebug'...
[ +5 ms] [android\] C:\data\Projekte\jow_diag_f\android\gradlew.bat -Ptarget=C:\data\Projekte\jow_diag_f\lib/main.dart -Ppreview-dart-2=true -Ptarget-platform=android-arm64 assembleDebug
[+1743 ms] WARNING: The specified Android SDK Build Tools version (25.0.0) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2.
[ ] Android SDK Build Tools 27.0.3 will be used.
[ ] To suppress this warning, remove "buildToolsVersion '25.0.0'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
[ +248 ms] :app:preBuild UP-TO-DATE
[ ] :flutter_webview_plugin:preBuild UP-TO-DATE
[ ] :flutter_webview_plugin:preDebugBuild UP-TO-DATE
[ ] :flutter_webview_plugin:checkDebugManifest UP-TO-DATE
[ +8 ms] :flutter_webview_plugin:processDebugManifest UP-TO-DATE
[ ] :path_provider:preBuild UP-TO-DATE
[ ] :path_provider:preDebugBuild UP-TO-DATE
[ ] :path_provider:checkDebugManifest UP-TO-DATE
[ +9 ms] :path_provider:processDebugManifest UP-TO-DATE
[ +107 ms] :app:preDebugBuild UP-TO-DATE
[ +21 ms] :flutter_webview_plugin:compileDebugAidl UP-TO-DATE
[ +10 ms] :path_provider:compileDebugAidl UP-TO-DATE
[ +12 ms] :app:compileDebugAidl UP-TO-DATE
[ ] :flutter_webview_plugin:packageDebugRenderscript NO-SOURCE
[ ] :path_provider:packageDebugRenderscript NO-SOURCE
[ +10 ms] :app:compileDebugRenderscript UP-TO-DATE
[ +11 ms] :app:flutterBuildX86Jar UP-TO-DATE
[ ] :app:checkDebugManifest UP-TO-DATE
[ ] :app:generateDebugBuildConfig UP-TO-DATE
[ ] :app:prepareLintJar UP-TO-DATE
[ +30 ms] :app:cleanMergeDebugAssets
[+5884 ms] :app:flutterBuildDebug
[ +10 ms] :app:mergeDebugShaders UP-TO-DATE
[ ] :app:compileDebugShaders UP-TO-DATE
[ ] :app:generateDebugAssets UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:mergeDebugShaders UP-TO-DATE
[ ] :flutter_webview_plugin:compileDebugShaders UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugAssets UP-TO-DATE
[ ] :flutter_webview_plugin:packageDebugAssets UP-TO-DATE
[ +8 ms] :path_provider:mergeDebugShaders UP-TO-DATE
[ ] :path_provider:compileDebugShaders UP-TO-DATE
[ ] :path_provider:generateDebugAssets UP-TO-DATE
[ ] :path_provider:packageDebugAssets UP-TO-DATE
[ +31 ms] :app:mergeDebugAssets
[ +263 ms] :app:copyFlutterAssetsDebug
[ +1 ms] :app:mainApkListPersistenceDebug UP-TO-DATE
[ ] :app:generateDebugResValues UP-TO-DATE
[ +9 ms] :app:generateDebugResources UP-TO-DATE
[ ] :flutter_webview_plugin:compileDebugRenderscript UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugResValues UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugResources UP-TO-DATE
[ +7 ms] :flutter_webview_plugin:packageDebugResources UP-TO-DATE
[ +11 ms] :path_provider:compileDebugRenderscript UP-TO-DATE
[ ] :path_provider:generateDebugResValues UP-TO-DATE
[ ] :path_provider:generateDebugResources UP-TO-DATE
[ +9 ms] :path_provider:packageDebugResources UP-TO-DATE
[ +65 ms] :app:mergeDebugResources UP-TO-DATE
[ +1 ms] :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ +9 ms] :app:processDebugManifest UP-TO-DATE
[ ] :app:splitsDiscoveryTaskDebug UP-TO-DATE
[ ] :flutter_webview_plugin:platformAttrExtractor UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:generateDebugRFile UP-TO-DATE
[ ] :path_provider:platformAttrExtractor UP-TO-DATE
[ +10 ms] :path_provider:generateDebugRFile UP-TO-DATE
[ +11 ms] :app:processDebugResources UP-TO-DATE
[ +10 ms] :app:generateDebugSources UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugBuildConfig UP-TO-DATE
[ ] :flutter_webview_plugin:prepareLintJar UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugSources UP-TO-DATE
[ ] :flutter_webview_plugin:javaPreCompileDebug UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:compileDebugJavaWithJavac UP-TO-DATE
[ +10 ms] :flutter_webview_plugin:processDebugJavaRes NO-SOURCE
[ ] :flutter_webview_plugin:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug UP-TO-DATE
[ ] :path_provider:generateDebugBuildConfig UP-TO-DATE
[ ] :path_provider:prepareLintJar UP-TO-DATE
[ ] :path_provider:generateDebugSources UP-TO-DATE
[ +8 ms] :path_provider:javaPreCompileDebug UP-TO-DATE
[ +10 ms] :path_provider:compileDebugJavaWithJavac UP-TO-DATE
[ ] :path_provider:processDebugJavaRes NO-SOURCE
[ ] :path_provider:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug UP-TO-DATE
[ +10 ms] :app:javaPreCompileDebug UP-TO-DATE
[ +21 ms] :app:compileDebugJavaWithJavac UP-TO-DATE
[ ] :app:compileDebugNdk NO-SOURCE
[ ] :app:compileDebugSources UP-TO-DATE
[ +33 ms] :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[ +21 ms] :app:transformDexArchiveWithExternalLibsDexMergerForDebug UP-TO-DATE
[ +11 ms] :app:transformDexArchiveWithDexMergerForDebug UP-TO-DATE
[ +1 ms] :app:mergeDebugJniLibFolders UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:compileDebugNdk NO-SOURCE
[ ] :flutter_webview_plugin:mergeDebugJniLibFolders UP-TO-DATE
[ +2 ms] :flutter_webview_plugin:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ +7 ms] :flutter_webview_plugin:transformNativeLibsWithStripDebugSymbolForDebug UP-TO-DATE
[ ] :flutter_webview_plugin:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[ ] :path_provider:compileDebugNdk NO-SOURCE
[ ] :path_provider:mergeDebugJniLibFolders UP-TO-DATE
[ +9 ms] :path_provider:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ ] :path_provider:transformNativeLibsWithStripDebugSymbolForDebug UP-TO-DATE
[ ] :path_provider:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[ +10 ms] :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ +10 ms] :app:transformNativeLibsWithStripDebugSymbolForDebug UP-TO-DATE
[ ] :app:processDebugJavaRes NO-SOURCE
[ +22 ms] :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] :app:validateSigningDebug UP-TO-DATE
[+3257 ms] :app:packageDebug
[ ] :app:assembleDebug
[ +53 ms] :flutter_webview_plugin:extractDebugAnnotations UP-TO-DATE
[ ] :flutter_webview_plugin:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] :flutter_webview_plugin:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[ ] :flutter_webview_plugin:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] :flutter_webview_plugin:bundleDebug UP-TO-DATE
[ ] :flutter_webview_plugin:compileDebugSources UP-TO-DATE
[ ] :flutter_webview_plugin:assembleDebug UP-TO-DATE
[ +40 ms] :path_provider:extractDebugAnnotations UP-TO-DATE
[ +1 ms] :path_provider:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] :path_provider:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] :path_provider:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[ +9 ms] :path_provider:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] :path_provider:bundleDebug UP-TO-DATE
[ ] :path_provider:compileDebugSources UP-TO-DATE
[ ] :path_provider:assembleDebug UP-TO-DATE
[ +9 ms] BUILD SUCCESSFUL in 12s
[ ] 83 actionable tasks: 5 executed, 78 up-to-date
[ +487 ms] calculateSha: C:\data\Projekte\jow_diag_f\build\app\outputs\apk/app.apk
[ +589 ms] Built build\app\outputs\apk\debug\app-debug.apk.
[ +1 ms] c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +21 ms] Exit code 0 from: c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ ] package: name='de.jockels.jowdiagf' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
uses-permission: name='android.permission.WRITE_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_PHONE_STATE'
application-label:'jow_diag_f'
application-label-af:'jow_diag_f'
application-label-am:'jow_diag_f'
application-label-ar:'jow_diag_f'
application-label-az:'jow_diag_f'
application-label-be:'jow_diag_f'
application-label-bg:'jow_diag_f'
application-label-bn:'jow_diag_f'
application-label-bs:'jow_diag_f'
application-label-ca:'jow_diag_f'
application-label-cs:'jow_diag_f'
application-label-da:'jow_diag_f'
application-label-de:'jow_diag_f'
application-label-el:'jow_diag_f'
application-label-en-AU:'jow_diag_f'
application-label-en-GB:'jow_diag_f'
application-label-en-IN:'jow_diag_f'
application-label-es:'jow_diag_f'
application-label-es-US:'jow_diag_f'
application-label-et:'jow_diag_f'
application-label-eu:'jow_diag_f'
application-label-fa:'jow_diag_f'
application-label-fi:'jow_diag_f'
application-label-fr:'jow_diag_f'
application-label-fr-CA:'jow_diag_f'
application-label-gl:'jow_diag_f'
application-label-gu:'jow_diag_f'
application-label-hi:'jow_diag_f'
application-label-hr:'jow_diag_f'
application-label-hu:'jow_diag_f'
application-label-hy:'jow_diag_f'
application-label-in:'jow_diag_f'
application-label-is:'jow_diag_f'
application-label-it:'jow_diag_f'
application-label-iw:'jow_diag_f'
application-label-ja:'jow_diag_f'
application-label-ka:'jow_diag_f'
application-label-kk:'jow_diag_f'
application-label-km:'jow_diag_f'
application-label-kn:'jow_diag_f'
application-label-ko:'jow_diag_f'
application-label-ky:'jow_diag_f'
application-label-lo:'jow_diag_f'
application-label-lt:'jow_diag_f'
application-label-lv:'jow_diag_f'
application-label-mk:'jow_diag_f'
application-label-ml:'jow_diag_f'
application-label-mn:'jow_diag_f'
application-label-mr:'jow_diag_f'
application-label-ms:'jow_diag_f'
application-label-my:'jow_diag_f'
application-label-nb:'jow_diag_f'
application-label-ne:'jow_diag_f'
application-label-nl:'jow_diag_f'
application-label-pa:'jow_diag_f'
application-label-pl:'jow_diag_f'
application-label-pt:'jow_diag_f'
application-label-pt-BR:'jow_diag_f'
application-label-pt-PT:'jow_diag_f'
application-label-ro:'jow_diag_f'
application-label-ru:'jow_diag_f'
application-label-si:'jow_diag_f'
application-label-sk:'jow_diag_f'
application-label-sl:'jow_diag_f'
application-label-sq:'jow_diag_f'
application-label-sr:'jow_diag_f'
application-label-sr-Latn:'jow_diag_f'
application-label-sv:'jow_diag_f'
application-label-sw:'jow_diag_f'
application-label-ta:'jow_diag_f'
application-label-te:'jow_diag_f'
application-label-th:'jow_diag_f'
application-label-tl:'jow_diag_f'
application-label-tr:'jow_diag_f'
application-label-uk:'jow_diag_f'
application-label-ur:'jow_diag_f'
application-label-uz:'jow_diag_f'
application-label-vi:'jow_diag_f'
application-label-zh-CN:'jow_diag_f'
application-label-zh-HK:'jow_diag_f'
application-label-zh-TW:'jow_diag_f'
application-label-zu:'jow_diag_f'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='jow_diag_f' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='de.jockels.jowdiagf.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--' 'af' 'am' 'ar' 'az' 'be' 'bg' 'bn' 'bs' 'ca' 'cs' 'da' 'de' 'el' 'en-AU' 'en-GB' 'en-IN' 'es' 'es-US' 'et' 'eu' 'fa' 'fi' 'fr' 'fr-CA' 'gl' 'gu' 'hi' 'hr' 'hu' 'hy' 'in' 'is' 'it' 'iw' 'ja'
'ka' 'kk' 'km' 'kn' 'ko' 'ky' 'lo' 'lt' 'lv' 'mk' 'ml' 'mn' 'mr' 'ms' 'my' 'nb' 'ne' 'nl' 'pa' 'pl' 'pt' 'pt-BR' 'pt-PT' 'ro' 'ru' 'si' 'sk' 'sl' 'sq' 'sr' 'sr-Latn' 'sv' 'sw' 'ta' 'te' 'th' 'tl' 'tr' 'uk' 'ur' 'uz' 'v
i' 'zh-CN' 'zh-HK' 'zh-TW' 'zu'
densities: '160' '240' '320' '480' '640'
native-code: 'arm64-v8a' 'x86' 'x86_64'
[ +3 ms] Stopping app 'app.apk' on ONEPLUS A3003.
[ +1 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell am force-stop de.jockels.jowdiagf
[ +150 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell pm list packages de.jockels.jowdiagf
[ +473 ms] package:de.jockels.jowdiagf
[ +5 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell cat /data/local/tmp/sky.de.jockels.jowdiagf.sha1
[ +51 ms] 8faa54a4f9970f005322c2f6a8abe4fac948c572
[ +1 ms] Installing APK.
[ +3 ms] c:\data\sdk\platform-tools\adb version
[ +25 ms] Android Debug Bridge version 1.0.40
Version 4797878
Installed as c:\data\sdk\platform-tools\adb.EXE
[ ] c:\data\sdk\platform-tools\adb start-server
[ +23 ms] Installing build\app\outputs\apk\app.apk...
[ ] c:\data\sdk\platform-tools\adb -s 681072bd install -r build\app\outputs\apk\app.apk
[+3821 ms] Success
[ +2 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell echo -n ff9fd74b80f845cc506e0b8496d807502c04d0f4 > /data/local/tmp/sky.de.jockels.jowdiagf.sha1
[ +71 ms] ONEPLUS A3003 startApp
[ +3 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true de.j
ockels.jowdiagf/de.jockels.jowdiagf.MainActivity
[ +119 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=de.jockels.jowdiagf/.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[ +840 ms] I/FlutterActivityDelegate(24559): onResume setting current activity to this
[ +178 ms] Observatory URL on device: http://127.0.0.1:42715/
[ +10 ms] c:\data\sdk\platform-tools\adb -s 681072bd forward tcp:8101 tcp:42715
[ +29 ms] Forwarded host port 8101 to device port 42715 for Observatory
[ +12 ms] Connecting to service protocol: http://127.0.0.1:8101/
[ +382 ms] Successfully connected to service protocol: http://127.0.0.1:8101/
[ +12 ms] getVM: {}
[ +22 ms] getIsolate: {isolateId: isolates/290656618}
[ +4 ms] _flutter.listViews: {}
[ +926 ms] DevFS: Creating new filesystem on the device (null)
[ +1 ms] _createDevFS: {fsName: jow_diag_f}
[ +59 ms] DevFS: Created new filesystem on the device (file:///data/user/0/de.jockels.jowdiagf/cache/jow_diag_fSBYYFE/jow_diag_f/)
[ +3 ms] Updating assets
[ +340 ms] Syncing files to device ONEPLUS A3003...
[ +5 ms] DevFS: Starting sync from LocalDirectory: 'C:\data\Projekte\jow_diag_f'
[ ] Scanning project files
[ +5 ms] Scanning package files
[ +102 ms] Scanning asset files
[ +1 ms] Scanning for deleted files
[ +64 ms] Compiling dart to kernel with 631 updated files
[ +5 ms] C:\data\flutter\bin\cache\dart-sdk\bin\dart C:\data\flutter\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root C:\data\flutter\bin\cache\artifacts\engine\common\flutter_patched_s
dk/ --incremental --strong --target=flutter --output-dill build\app.dill --packages C:\data\Projekte\jow_diag_f\.packages --filesystem-scheme org-dartlang-root
[+2183 ms] Updating files
[ +815 ms] DevFS: Sync finished
[ +1 ms] Synced 0.8MB.
[ +2 ms] _flutter.listViews: {}
[ +23 ms] Connected to _flutterView/0x7b8b9bd998.
[ +2 ms] ๐ฅ To hot reload your app on the fly, press "r". To restart the app entirely, press "R".
[ +1 ms] An Observatory debugger and profiler on ONEPLUS A3003 is available at: http://127.0.0.1:8101/
[ ] For a more detailed help message, press "h". To quit, press "q".
[+110214 ms] DevFS: Deleting filesystem on the device (file:///data/user/0/de.jockels.jowdiagf/cache/jow_diag_fSBYYFE/jow_diag_f/)
[ +2 ms] _deleteDevFS: {fsName: jow_diag_f}
[ +49 ms] DevFS: Deleted filesystem on the device (file:///data/user/0/de.jockels.jowdiagf/cache/jow_diag_fSBYYFE/jow_diag_f/)
[ +9 ms] ext.flutter.exit: {isolateId: isolates/290656618}
[ +100 ms] Application finished.
[ +59 ms] "flutter run" took 139.943ms.
[ +10 ms] Service protocol connection closed.
C:\data\Projekte\jow_diag_f>flutter analyze
Analyzing jow_diag_f...
info - Name types using UpperCamelCase - lib\rssWidget.dart:27:7
info - The function 'rssItem1' isn't used - lib\rssWidget.dart:108:12
info - The function 'rssItem4' isn't used - lib\rssWidget.dart:162:14
info - The function 'rssList1' isn't used - lib\rssWidget.dart:182:14
info - Avoid using braces in interpolation when not needed - lib\sysinfoWidget.dart:577:37
info - Avoid using braces in interpolation when not needed - lib\sysinfoWidget.dart:577:47
6 issues found. (ran in 12.1s)
C:\data\Projekte\jow_diag_f>flutter doctor -v
[โ] Flutter (Channel beta, v0.4.4, on Microsoft Windows [Version 10.0.17134.48], locale de-DE)
โข Flutter version 0.4.4 at C:\data\flutter
โข Framework revision f9bb4289e9 (4 weeks ago), 2018-05-11 21:44:54 -0700
โข Engine revision 06afdfe54e
โข Dart version 2.0.0-dev.54.0.flutter-46ab040e58
[โ] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข Android SDK at c:\data\sdk
โข Android NDK at c:\data\sdk\ndk-bundle
โข Platform android-27, build-tools 27.0.3
โข ANDROID_HOME = c:\data\sdk
โข Java binary at: C:\data\android-studio\jre\bin\java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
โข All Android licenses accepted.
[โ] Android Studio (version 3.1)
โข Android Studio at C:\data\android-studio
โข Flutter plugin version 25.0.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
[โ] Connected devices (1 available)
โข ONEPLUS A3003 โข 681072bd โข android-arm64 โข Android 8.0.0 (API 26)
โข No issues found!
C:\data\Projekte\jow_diag_f>"><pre class="notranslate"><code class="notranslate">]
(c) 2018 Microsoft Corporation. Alle Rechte vorbehalten.
C:\data\Projekte\jow_diag_f>flutter run --verbose
[ +86 ms] [C:\data\flutter\] git rev-parse --abbrev-ref --symbolic @{u}
[ +119 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ +1 ms] origin/beta
[ ] [C:\data\flutter\] git rev-parse --abbrev-ref HEAD
[ +45 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ +1 ms] [C:\data\flutter\] git ls-remote --get-url origin
[ +46 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [C:\data\flutter\] git log -n 1 --pretty=format:%H
[ +51 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [C:\data\flutter\] git log -n 1 --pretty=format:%ar
[ +55 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 4 weeks ago
[ +1 ms] [C:\data\flutter\] git describe --match v*.*.* --first-parent --long --tags
[ +53 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[ +317 ms] c:\data\sdk\platform-tools\adb devices -l
[ +24 ms] Exit code 0 from: c:\data\sdk\platform-tools\adb devices -l
[ ] List of devices attached
681072bd device product:OnePlus3 model:ONEPLUS_A3003 device:OnePlus3T transport_id:7
[ +181 ms] Found plugin flutter_webview_plugin at C:\data\flutter\.pub-cache\hosted\pub.dartlang.org\flutter_webview_plugin-0.1.6\
[ +33 ms] Found plugin path_provider at C:\data\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-0.4.1\
[ +128 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell getprop
[ +101 ms] ro.hardware = qcom
[+1132 ms] Launching lib/main.dart on ONEPLUS A3003 in debug mode...
[ +14 ms] Initializing gradle...
[ +1 ms] Using gradle from C:\data\Projekte\jow_diag_f\android\gradlew.bat.
[ +98 ms] C:\data\Projekte\jow_diag_f\android\gradlew.bat -v
[ +821 ms]
------------------------------------------------------------
Gradle 4.4
------------------------------------------------------------
Build time: 2017-12-06 09:05:06 UTC
Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82
Groovy: 2.4.12
Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017
JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b02)
OS: Windows 10 10.0 amd64
[ +4 ms] Resolving dependencies...
[ ] [android\] C:\data\Projekte\jow_diag_f\android\gradlew.bat app:properties
[+1922 ms] WARNING: The specified Android SDK Build Tools version (25.0.0) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2.
Android SDK Build Tools 27.0.3 will be used.
To suppress this warning, remove "buildToolsVersion '25.0.0'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
:app:properties
------------------------------------------------------------
Project :app
------------------------------------------------------------
allprojects: [project ':app']
android: com.android.build.gradle.AppExtension_Decorated@2b52e029
androidDependencies: task ':app:androidDependencies'
ant: org.gradle.api.internal.project.DefaultAntBuilder@1b267660
antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@5358b521
archivesBaseName: app
artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@4ae98280
asDynamicObject: DynamicObject for project ':app'
assemble: task ':app:assemble'
assembleAndroidTest: task ':app:assembleAndroidTest'
assembleDebug: task ':app:assembleDebug'
assembleDebugAndroidTest: task ':app:assembleDebugAndroidTest'
assembleDebugUnitTest: task ':app:assembleDebugUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@7606705c
buildDependents: task ':app:buildDependents'
buildDir: C:\data\Projekte\jow_diag_f\build\app
buildFile: C:\data\Projekte\jow_diag_f\android\app\build.gradle
buildNeeded: task ':app:buildNeeded'
buildOutputs: BaseVariantOutput container
buildPath: :
buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@5ebb8d8a
buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@485cdac1
bundleAppClassesDebug: task ':app:bundleAppClassesDebug'
bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest'
bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest'
bundleAppClassesProfile: task ':app:bundleAppClassesProfile'
bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest'
bundleAppClassesRelease: task ':app:bundleAppClassesRelease'
bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest'
bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources'
bundleDebugResources: task ':app:bundleDebugResources'
bundleProfileResources: task ':app:bundleProfileResources'
bundleReleaseResources: task ':app:bundleReleaseResources'
check: task ':app:check'
checkDebugManifest: task ':app:checkDebugManifest'
checkProfileManifest: task ':app:checkProfileManifest'
checkReleaseManifest: task ':app:checkReleaseManifest'
childProjects: {}
class: class org.gradle.api.internal.project.DefaultProject_Decorated
classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@4ea7bcc8
cleanBuildCache: task ':app:cleanBuildCache'
compileDebugAidl: task ':app:compileDebugAidl'
compileDebugAndroidTestAidl: task ':app:compileDebugAndroidTestAidl'
compileDebugAndroidTestJavaWithJavac: task ':app:compileDebugAndroidTestJavaWithJavac'
compileDebugAndroidTestNdk: task ':app:compileDebugAndroidTestNdk'
compileDebugAndroidTestRenderscript: task ':app:compileDebugAndroidTestRenderscript'
compileDebugAndroidTestShaders: task ':app:compileDebugAndroidTestShaders'
compileDebugAndroidTestSources: task ':app:compileDebugAndroidTestSources'
compileDebugJavaWithJavac: task ':app:compileDebugJavaWithJavac'
compileDebugNdk: task ':app:compileDebugNdk'
compileDebugRenderscript: task ':app:compileDebugRenderscript'
compileDebugShaders: task ':app:compileDebugShaders'
compileDebugSources: task ':app:compileDebugSources'
compileDebugUnitTestJavaWithJavac: task ':app:compileDebugUnitTestJavaWithJavac'
compileDebugUnitTestSources: task ':app:compileDebugUnitTestSources'
compileLint: task ':app:compileLint'
compileProfileAidl: task ':app:compileProfileAidl'
compileProfileJavaWithJavac: task ':app:compileProfileJavaWithJavac'
compileProfileNdk: task ':app:compileProfileNdk'
compileProfileRenderscript: task ':app:compileProfileRenderscript'
compileProfileShaders: task ':app:compileProfileShaders'
compileProfileSources: task ':app:compileProfileSources'
compileProfileUnitTestJavaWithJavac: task ':app:compileProfileUnitTestJavaWithJavac'
compileProfileUnitTestSources: task ':app:compileProfileUnitTestSources'
compileReleaseAidl: task ':app:compileReleaseAidl'
compileReleaseJavaWithJavac: task ':app:compileReleaseJavaWithJavac'
compileReleaseNdk: task ':app:compileReleaseNdk'
compileReleaseRenderscript: task ':app:compileReleaseRenderscript'
compileReleaseShaders: task ':app:compileReleaseShaders'
compileReleaseSources: task ':app:compileReleaseSources'
compileReleaseUnitTestJavaWithJavac: task ':app:compileReleaseUnitTestJavaWithJavac'
compileReleaseUnitTestSources: task ':app:compileReleaseUnitTestSources'
components: SoftwareComponentInternal set
configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@be6b1d0
configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@933bafb
configurations: configuration container
connectedAndroidTest: task ':app:connectedAndroidTest'
connectedCheck: task ':app:connectedCheck'
connectedDebugAndroidTest: task ':app:connectedDebugAndroidTest'
consumeConfigAttr: task ':app:consumeConfigAttr'
convention: org.gradle.api.internal.plugins.DefaultConvention@2797e3ce
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests'
createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests'
defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@54255a08
defaultTasks: []
deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@6a73196d
dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@7e0382ba
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir: C:\data\Projekte\jow_diag_f\build\app\distributions
distsDirName: distributions
docsDir: C:\data\Projekte\jow_diag_f\build\app\docs
docsDirName: docs
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@66129727
extensions: org.gradle.api.internal.plugins.DefaultConvention@2797e3ce
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations: org.gradle.api.internal.file.DefaultFileOperations@181964f7
fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@6ad3aee8
flutter: FlutterExtension_Decorated@8a7e75a
flutterBuildDebug: task ':app:flutterBuildDebug'
flutterBuildProfile: task ':app:flutterBuildProfile'
flutterBuildRelease: task ':app:flutterBuildRelease'
flutterBuildX86Jar: task ':app:flutterBuildX86Jar'
generateDebugAndroidTestAssets: task ':app:generateDebugAndroidTestAssets'
generateDebugAndroidTestBuildConfig: task ':app:generateDebugAndroidTestBuildConfig'
generateDebugAndroidTestResValues: task ':app:generateDebugAndroidTestResValues'
generateDebugAndroidTestResources: task ':app:generateDebugAndroidTestResources'
generateDebugAndroidTestSources: task ':app:generateDebugAndroidTestSources'
generateDebugAssets: task ':app:generateDebugAssets'
generateDebugBuildConfig: task ':app:generateDebugBuildConfig'
generateDebugResValues: task ':app:generateDebugResValues'
generateDebugResources: task ':app:generateDebugResources'
generateDebugSources: task ':app:generateDebugSources'
generateProfileAssets: task ':app:generateProfileAssets'
generateProfileBuildConfig: task ':app:generateProfileBuildConfig'
generateProfileResValues: task ':app:generateProfileResValues'
generateProfileResources: task ':app:generateProfileResources'
generateProfileSources: task ':app:generateProfileSources'
generateReleaseAssets: task ':app:generateReleaseAssets'
generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig'
generateReleaseResValues: task ':app:generateReleaseResValues'
generateReleaseResources: task ':app:generateReleaseResources'
generateReleaseSources: task ':app:generateReleaseSources'
gradle: build 'android'
group: android
identityPath: :app
inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@7a7ee2c6
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest'
layout: org.gradle.api.internal.file.DefaultProjectLayout@29930fa2
libsDir: C:\data\Projekte\jow_diag_f\build\app\libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@43a3e924
logging: org.gradle.internal.logging.services.DefaultLoggingManager@5ec05096
mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug'
mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest'
mainApkListPersistenceProfile: task ':app:mainApkListPersistenceProfile'
mainApkListPersistenceRelease: task ':app:mainApkListPersistenceRelease'
mergeDebugAndroidTestAssets: task ':app:mergeDebugAndroidTestAssets'
mergeDebugAndroidTestJniLibFolders: task ':app:mergeDebugAndroidTestJniLibFolders'
mergeDebugAndroidTestResources: task ':app:mergeDebugAndroidTestResources'
mergeDebugAndroidTestShaders: task ':app:mergeDebugAndroidTestShaders'
mergeDebugAssets: task ':app:mergeDebugAssets'
mergeDebugJniLibFolders: task ':app:mergeDebugJniLibFolders'
mergeDebugResources: task ':app:mergeDebugResources'
mergeDebugShaders: task ':app:mergeDebugShaders'
mergeProfileAssets: task ':app:mergeProfileAssets'
mergeProfileJniLibFolders: task ':app:mergeProfileJniLibFolders'
mergeProfileResources: task ':app:mergeProfileResources'
mergeProfileShaders: task ':app:mergeProfileShaders'
mergeReleaseAssets: task ':app:mergeReleaseAssets'
mergeReleaseJniLibFolders: task ':app:mergeReleaseJniLibFolders'
mergeReleaseResources: task ':app:mergeReleaseResources'
mergeReleaseShaders: task ':app:mergeReleaseShaders'
mockableAndroidJar: task ':app:mockableAndroidJar'
modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@696af123
modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@ba5a9b1
module: org.gradle.api.internal.artifacts.ProjectBackedModule@1be2548a
name: app
normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@648f461a
objects: org.gradle.api.internal.model.DefaultObjectFactory@5550ab36
org.gradle.jvmargs: -Xmx1536M
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageProfile: task ':app:packageProfile'
packageRelease: task ':app:packageRelease'
parent: root project 'android'
parentIdentifier: root project 'android'
path: :app
platformAttrExtractor: task ':app:platformAttrExtractor'
pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@94815ea
plugins: [org.gradle.api.plugins.HelpTasksPlugin@1d57c1de, com.android.build.gradle.api.AndroidBasePlugin@45754312, org.gradle.language.base.plugins.LifecycleBasePlugin@3b867527, org.gradle.api.plugi
ns.BasePlugin@44f5e34a, org.gradle.api.plugins.ReportingBasePlugin@1430a7b, org.gradle.platform.base.plugins.ComponentBasePlugin@2feafaa6, org.gradle.language.base.plugins.LanguageBasePlugin@36632df2, org.gradle.platfo
rm.base.plugins.BinaryBasePlugin@19fdb4be, org.gradle.api.plugins.JavaBasePlugin@5374b395, com.android.build.gradle.AppPlugin@ef25273, FlutterPlugin@3210c547]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preProfileBuild: task ':app:preProfileBuild'
preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild'
preReleaseBuild: task ':app:preReleaseBuild'
preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild'
prepareLintJar: task ':app:prepareLintJar'
preparePUBLISHED_DEXDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_DEXDebugAndroidTestForPublishing'
preparePUBLISHED_DEXDebugForPublishing: task ':app:preparePUBLISHED_DEXDebugForPublishing'
preparePUBLISHED_DEXProfileForPublishing: task ':app:preparePUBLISHED_DEXProfileForPublishing'
preparePUBLISHED_DEXReleaseForPublishing: task ':app:preparePUBLISHED_DEXReleaseForPublishing'
preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugAndroidTestForPublishing'
preparePUBLISHED_JAVA_RESDebugForPublishing: task ':app:preparePUBLISHED_JAVA_RESDebugForPublishing'
preparePUBLISHED_JAVA_RESProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESProfileForPublishing'
preparePUBLISHED_JAVA_RESReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESReleaseForPublishing'
preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugAndroidTestForPublishing'
preparePUBLISHED_NATIVE_LIBSDebugForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDebugForPublishing'
preparePUBLISHED_NATIVE_LIBSProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSProfileForPublishing'
preparePUBLISHED_NATIVE_LIBSReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSReleaseForPublishing'
processDebugAndroidTestJavaRes: task ':app:processDebugAndroidTestJavaRes'
processDebugAndroidTestManifest: task ':app:processDebugAndroidTestManifest'
processDebugAndroidTestResources: task ':app:processDebugAndroidTestResources'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task ':app:processDebugUnitTestJavaRes'
processOperations: org.gradle.api.internal.file.DefaultFileOperations@181964f7
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task ':app:processProfileUnitTestJavaRes'
processReleaseJavaRes: task ':app:processReleaseJavaRes'
processReleaseManifest: task ':app:processReleaseManifest'
processReleaseResources: task ':app:processReleaseResources'
processReleaseUnitTestJavaRes: task ':app:processReleaseUnitTestJavaRes'
project: project ':app'
projectConfigurator: org.gradle.api.internal.project.BuildOperationCrossProjectConfigurator@37950e09
projectDir: C:\data\Projekte\jow_diag_f\android\app
projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@29b43177
projectPath: :app
projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@79ed266c
properties: {...}
providers: org.gradle.api.internal.provider.DefaultProviderFactory@2944983b
reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug'
reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile'
reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease'
reporting: org.gradle.api.reporting.ReportingExtension_Decorated@30c38bfe
reportsDir: C:\data\Projekte\jow_diag_f\build\app\reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@2f393ea9
resources: org.gradle.api.internal.resources.DefaultResourceHandler@278e9db0
rootDir: C:\data\Projekte\jow_diag_f\android
rootProject: root project 'android'
script: false
scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@3740016b
scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@1b70e006
serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@7dda49b7
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease'
standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@5ec05096
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir: C:\data\Projekte\jow_diag_f\build\app\reports\tests
testReportDirName: tests
testResultsDir: C:\data\Projekte\jow_diag_f\build\app\test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile'
transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease'
transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease'
transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'
transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile'
transformDexArchiveWithExternalLibsDexMergerForRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease'
transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest'
transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease'
transformNativeLibsWithStripDebugSymbolForDebug: task ':app:transformNativeLibsWithStripDebugSymbolForDebug'
transformNativeLibsWithStripDebugSymbolForProfile: task ':app:transformNativeLibsWithStripDebugSymbolForProfile'
transformNativeLibsWithStripDebugSymbolForRelease: task ':app:transformNativeLibsWithStripDebugSymbolForRelease'
transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForProfile: task ':app:transformResourcesWithMergeJavaResForProfile'
transformResourcesWithMergeJavaResForProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForProfileUnitTest'
transformResourcesWithMergeJavaResForRelease: task ':app:transformResourcesWithMergeJavaResForRelease'
transformResourcesWithMergeJavaResForReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForReleaseUnitTest'
uninstallAll: task ':app:uninstallAll'
uninstallDebug: task ':app:uninstallDebug'
uninstallDebugAndroidTest: task ':app:uninstallDebugAndroidTest'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeProfileApplicationId: task ':app:writeProfileApplicationId'
writeReleaseApplicationId: task ':app:writeReleaseApplicationId'
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
[ +19 ms] c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +19 ms] Exit code 0 from: c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ ] package: name='de.jockels.jowdiagf' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
uses-permission: name='android.permission.WRITE_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_PHONE_STATE'
application-label:'jow_diag_f'
application-label-af:'jow_diag_f'
application-label-am:'jow_diag_f'
application-label-ar:'jow_diag_f'
application-label-az:'jow_diag_f'
application-label-be:'jow_diag_f'
application-label-bg:'jow_diag_f'
application-label-bn:'jow_diag_f'
application-label-bs:'jow_diag_f'
application-label-ca:'jow_diag_f'
application-label-cs:'jow_diag_f'
application-label-da:'jow_diag_f'
application-label-de:'jow_diag_f'
application-label-el:'jow_diag_f'
application-label-en-AU:'jow_diag_f'
application-label-en-GB:'jow_diag_f'
application-label-en-IN:'jow_diag_f'
application-label-es:'jow_diag_f'
application-label-es-US:'jow_diag_f'
application-label-et:'jow_diag_f'
application-label-eu:'jow_diag_f'
application-label-fa:'jow_diag_f'
application-label-fi:'jow_diag_f'
application-label-fr:'jow_diag_f'
application-label-fr-CA:'jow_diag_f'
application-label-gl:'jow_diag_f'
application-label-gu:'jow_diag_f'
application-label-hi:'jow_diag_f'
application-label-hr:'jow_diag_f'
application-label-hu:'jow_diag_f'
application-label-hy:'jow_diag_f'
application-label-in:'jow_diag_f'
application-label-is:'jow_diag_f'
application-label-it:'jow_diag_f'
application-label-iw:'jow_diag_f'
application-label-ja:'jow_diag_f'
application-label-ka:'jow_diag_f'
application-label-kk:'jow_diag_f'
application-label-km:'jow_diag_f'
application-label-kn:'jow_diag_f'
application-label-ko:'jow_diag_f'
application-label-ky:'jow_diag_f'
application-label-lo:'jow_diag_f'
application-label-lt:'jow_diag_f'
application-label-lv:'jow_diag_f'
application-label-mk:'jow_diag_f'
application-label-ml:'jow_diag_f'
application-label-mn:'jow_diag_f'
application-label-mr:'jow_diag_f'
application-label-ms:'jow_diag_f'
application-label-my:'jow_diag_f'
application-label-nb:'jow_diag_f'
application-label-ne:'jow_diag_f'
application-label-nl:'jow_diag_f'
application-label-pa:'jow_diag_f'
application-label-pl:'jow_diag_f'
application-label-pt:'jow_diag_f'
application-label-pt-BR:'jow_diag_f'
application-label-pt-PT:'jow_diag_f'
application-label-ro:'jow_diag_f'
application-label-ru:'jow_diag_f'
application-label-si:'jow_diag_f'
application-label-sk:'jow_diag_f'
application-label-sl:'jow_diag_f'
application-label-sq:'jow_diag_f'
application-label-sr:'jow_diag_f'
application-label-sr-Latn:'jow_diag_f'
application-label-sv:'jow_diag_f'
application-label-sw:'jow_diag_f'
application-label-ta:'jow_diag_f'
application-label-te:'jow_diag_f'
application-label-th:'jow_diag_f'
application-label-tl:'jow_diag_f'
application-label-tr:'jow_diag_f'
application-label-uk:'jow_diag_f'
application-label-ur:'jow_diag_f'
application-label-uz:'jow_diag_f'
application-label-vi:'jow_diag_f'
application-label-zh-CN:'jow_diag_f'
application-label-zh-HK:'jow_diag_f'
application-label-zh-TW:'jow_diag_f'
application-label-zu:'jow_diag_f'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='jow_diag_f' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='de.jockels.jowdiagf.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--' 'af' 'am' 'ar' 'az' 'be' 'bg' 'bn' 'bs' 'ca' 'cs' 'da' 'de' 'el' 'en-AU' 'en-GB' 'en-IN' 'es' 'es-US' 'et' 'eu' 'fa' 'fi' 'fr' 'fr-CA' 'gl' 'gu' 'hi' 'hr' 'hu' 'hy' 'in' 'is' 'it' 'iw' 'ja'
'ka' 'kk' 'km' 'kn' 'ko' 'ky' 'lo' 'lt' 'lv' 'mk' 'ml' 'mn' 'mr' 'ms' 'my' 'nb' 'ne' 'nl' 'pa' 'pl' 'pt' 'pt-BR' 'pt-PT' 'ro' 'ru' 'si' 'sk' 'sl' 'sq' 'sr' 'sr-Latn' 'sv' 'sw' 'ta' 'te' 'th' 'tl' 'tr' 'uk' 'ur' 'uz' 'v
i' 'zh-CN' 'zh-HK' 'zh-TW' 'zu'
densities: '160' '240' '320' '480' '640'
native-code: 'arm64-v8a' 'x86' 'x86_64'
[ +21 ms] c:\data\sdk\platform-tools\adb -s 681072bd logcat -v time -t 1
[ +122 ms] Exit code 0 from: c:\data\sdk\platform-tools\adb -s 681072bd logcat -v time -t 1
[ ] --------- beginning of system
06-08 08:52:10.319 D/NetlinkEvent( 914): Unknown ND option type 31
[ +5 ms] c:\data\sdk\platform-tools\adb -s 681072bd logcat -v time
[ +486 ms] DependencyChecker: C:\data\Projekte\jow_diag_f\lib\main.dart is newer than 2018-06-08 08:12:59.000
[ +9 ms] c:\data\sdk\platform-tools\adb version
[ +31 ms] Android Debug Bridge version 1.0.40
Version 4797878
Installed as c:\data\sdk\platform-tools\adb.EXE
[ +7 ms] c:\data\sdk\platform-tools\adb start-server
[ +31 ms] Building APK
[ +14 ms] Running 'gradlew assembleDebug'...
[ +5 ms] [android\] C:\data\Projekte\jow_diag_f\android\gradlew.bat -Ptarget=C:\data\Projekte\jow_diag_f\lib/main.dart -Ppreview-dart-2=true -Ptarget-platform=android-arm64 assembleDebug
[+1743 ms] WARNING: The specified Android SDK Build Tools version (25.0.0) is ignored, as it is below the minimum supported version (27.0.3) for Android Gradle Plugin 3.1.2.
[ ] Android SDK Build Tools 27.0.3 will be used.
[ ] To suppress this warning, remove "buildToolsVersion '25.0.0'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
[ +248 ms] :app:preBuild UP-TO-DATE
[ ] :flutter_webview_plugin:preBuild UP-TO-DATE
[ ] :flutter_webview_plugin:preDebugBuild UP-TO-DATE
[ ] :flutter_webview_plugin:checkDebugManifest UP-TO-DATE
[ +8 ms] :flutter_webview_plugin:processDebugManifest UP-TO-DATE
[ ] :path_provider:preBuild UP-TO-DATE
[ ] :path_provider:preDebugBuild UP-TO-DATE
[ ] :path_provider:checkDebugManifest UP-TO-DATE
[ +9 ms] :path_provider:processDebugManifest UP-TO-DATE
[ +107 ms] :app:preDebugBuild UP-TO-DATE
[ +21 ms] :flutter_webview_plugin:compileDebugAidl UP-TO-DATE
[ +10 ms] :path_provider:compileDebugAidl UP-TO-DATE
[ +12 ms] :app:compileDebugAidl UP-TO-DATE
[ ] :flutter_webview_plugin:packageDebugRenderscript NO-SOURCE
[ ] :path_provider:packageDebugRenderscript NO-SOURCE
[ +10 ms] :app:compileDebugRenderscript UP-TO-DATE
[ +11 ms] :app:flutterBuildX86Jar UP-TO-DATE
[ ] :app:checkDebugManifest UP-TO-DATE
[ ] :app:generateDebugBuildConfig UP-TO-DATE
[ ] :app:prepareLintJar UP-TO-DATE
[ +30 ms] :app:cleanMergeDebugAssets
[+5884 ms] :app:flutterBuildDebug
[ +10 ms] :app:mergeDebugShaders UP-TO-DATE
[ ] :app:compileDebugShaders UP-TO-DATE
[ ] :app:generateDebugAssets UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:mergeDebugShaders UP-TO-DATE
[ ] :flutter_webview_plugin:compileDebugShaders UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugAssets UP-TO-DATE
[ ] :flutter_webview_plugin:packageDebugAssets UP-TO-DATE
[ +8 ms] :path_provider:mergeDebugShaders UP-TO-DATE
[ ] :path_provider:compileDebugShaders UP-TO-DATE
[ ] :path_provider:generateDebugAssets UP-TO-DATE
[ ] :path_provider:packageDebugAssets UP-TO-DATE
[ +31 ms] :app:mergeDebugAssets
[ +263 ms] :app:copyFlutterAssetsDebug
[ +1 ms] :app:mainApkListPersistenceDebug UP-TO-DATE
[ ] :app:generateDebugResValues UP-TO-DATE
[ +9 ms] :app:generateDebugResources UP-TO-DATE
[ ] :flutter_webview_plugin:compileDebugRenderscript UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugResValues UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugResources UP-TO-DATE
[ +7 ms] :flutter_webview_plugin:packageDebugResources UP-TO-DATE
[ +11 ms] :path_provider:compileDebugRenderscript UP-TO-DATE
[ ] :path_provider:generateDebugResValues UP-TO-DATE
[ ] :path_provider:generateDebugResources UP-TO-DATE
[ +9 ms] :path_provider:packageDebugResources UP-TO-DATE
[ +65 ms] :app:mergeDebugResources UP-TO-DATE
[ +1 ms] :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ +9 ms] :app:processDebugManifest UP-TO-DATE
[ ] :app:splitsDiscoveryTaskDebug UP-TO-DATE
[ ] :flutter_webview_plugin:platformAttrExtractor UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:generateDebugRFile UP-TO-DATE
[ ] :path_provider:platformAttrExtractor UP-TO-DATE
[ +10 ms] :path_provider:generateDebugRFile UP-TO-DATE
[ +11 ms] :app:processDebugResources UP-TO-DATE
[ +10 ms] :app:generateDebugSources UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugBuildConfig UP-TO-DATE
[ ] :flutter_webview_plugin:prepareLintJar UP-TO-DATE
[ ] :flutter_webview_plugin:generateDebugSources UP-TO-DATE
[ ] :flutter_webview_plugin:javaPreCompileDebug UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:compileDebugJavaWithJavac UP-TO-DATE
[ +10 ms] :flutter_webview_plugin:processDebugJavaRes NO-SOURCE
[ ] :flutter_webview_plugin:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug UP-TO-DATE
[ ] :path_provider:generateDebugBuildConfig UP-TO-DATE
[ ] :path_provider:prepareLintJar UP-TO-DATE
[ ] :path_provider:generateDebugSources UP-TO-DATE
[ +8 ms] :path_provider:javaPreCompileDebug UP-TO-DATE
[ +10 ms] :path_provider:compileDebugJavaWithJavac UP-TO-DATE
[ ] :path_provider:processDebugJavaRes NO-SOURCE
[ ] :path_provider:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug UP-TO-DATE
[ +10 ms] :app:javaPreCompileDebug UP-TO-DATE
[ +21 ms] :app:compileDebugJavaWithJavac UP-TO-DATE
[ ] :app:compileDebugNdk NO-SOURCE
[ ] :app:compileDebugSources UP-TO-DATE
[ +33 ms] :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[ +21 ms] :app:transformDexArchiveWithExternalLibsDexMergerForDebug UP-TO-DATE
[ +11 ms] :app:transformDexArchiveWithDexMergerForDebug UP-TO-DATE
[ +1 ms] :app:mergeDebugJniLibFolders UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:compileDebugNdk NO-SOURCE
[ ] :flutter_webview_plugin:mergeDebugJniLibFolders UP-TO-DATE
[ +2 ms] :flutter_webview_plugin:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ +7 ms] :flutter_webview_plugin:transformNativeLibsWithStripDebugSymbolForDebug UP-TO-DATE
[ ] :flutter_webview_plugin:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[ ] :path_provider:compileDebugNdk NO-SOURCE
[ ] :path_provider:mergeDebugJniLibFolders UP-TO-DATE
[ +9 ms] :path_provider:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ ] :path_provider:transformNativeLibsWithStripDebugSymbolForDebug UP-TO-DATE
[ ] :path_provider:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE
[ +10 ms] :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ +10 ms] :app:transformNativeLibsWithStripDebugSymbolForDebug UP-TO-DATE
[ ] :app:processDebugJavaRes NO-SOURCE
[ +22 ms] :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] :app:validateSigningDebug UP-TO-DATE
[+3257 ms] :app:packageDebug
[ ] :app:assembleDebug
[ +53 ms] :flutter_webview_plugin:extractDebugAnnotations UP-TO-DATE
[ ] :flutter_webview_plugin:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] :flutter_webview_plugin:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ +9 ms] :flutter_webview_plugin:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[ ] :flutter_webview_plugin:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] :flutter_webview_plugin:bundleDebug UP-TO-DATE
[ ] :flutter_webview_plugin:compileDebugSources UP-TO-DATE
[ ] :flutter_webview_plugin:assembleDebug UP-TO-DATE
[ +40 ms] :path_provider:extractDebugAnnotations UP-TO-DATE
[ +1 ms] :path_provider:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] :path_provider:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ ] :path_provider:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE
[ +9 ms] :path_provider:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE
[ ] :path_provider:bundleDebug UP-TO-DATE
[ ] :path_provider:compileDebugSources UP-TO-DATE
[ ] :path_provider:assembleDebug UP-TO-DATE
[ +9 ms] BUILD SUCCESSFUL in 12s
[ ] 83 actionable tasks: 5 executed, 78 up-to-date
[ +487 ms] calculateSha: C:\data\Projekte\jow_diag_f\build\app\outputs\apk/app.apk
[ +589 ms] Built build\app\outputs\apk\debug\app-debug.apk.
[ +1 ms] c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +21 ms] Exit code 0 from: c:\data\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ ] package: name='de.jockels.jowdiagf' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
uses-permission: name='android.permission.WRITE_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_EXTERNAL_STORAGE'
uses-permission: name='android.permission.READ_PHONE_STATE'
application-label:'jow_diag_f'
application-label-af:'jow_diag_f'
application-label-am:'jow_diag_f'
application-label-ar:'jow_diag_f'
application-label-az:'jow_diag_f'
application-label-be:'jow_diag_f'
application-label-bg:'jow_diag_f'
application-label-bn:'jow_diag_f'
application-label-bs:'jow_diag_f'
application-label-ca:'jow_diag_f'
application-label-cs:'jow_diag_f'
application-label-da:'jow_diag_f'
application-label-de:'jow_diag_f'
application-label-el:'jow_diag_f'
application-label-en-AU:'jow_diag_f'
application-label-en-GB:'jow_diag_f'
application-label-en-IN:'jow_diag_f'
application-label-es:'jow_diag_f'
application-label-es-US:'jow_diag_f'
application-label-et:'jow_diag_f'
application-label-eu:'jow_diag_f'
application-label-fa:'jow_diag_f'
application-label-fi:'jow_diag_f'
application-label-fr:'jow_diag_f'
application-label-fr-CA:'jow_diag_f'
application-label-gl:'jow_diag_f'
application-label-gu:'jow_diag_f'
application-label-hi:'jow_diag_f'
application-label-hr:'jow_diag_f'
application-label-hu:'jow_diag_f'
application-label-hy:'jow_diag_f'
application-label-in:'jow_diag_f'
application-label-is:'jow_diag_f'
application-label-it:'jow_diag_f'
application-label-iw:'jow_diag_f'
application-label-ja:'jow_diag_f'
application-label-ka:'jow_diag_f'
application-label-kk:'jow_diag_f'
application-label-km:'jow_diag_f'
application-label-kn:'jow_diag_f'
application-label-ko:'jow_diag_f'
application-label-ky:'jow_diag_f'
application-label-lo:'jow_diag_f'
application-label-lt:'jow_diag_f'
application-label-lv:'jow_diag_f'
application-label-mk:'jow_diag_f'
application-label-ml:'jow_diag_f'
application-label-mn:'jow_diag_f'
application-label-mr:'jow_diag_f'
application-label-ms:'jow_diag_f'
application-label-my:'jow_diag_f'
application-label-nb:'jow_diag_f'
application-label-ne:'jow_diag_f'
application-label-nl:'jow_diag_f'
application-label-pa:'jow_diag_f'
application-label-pl:'jow_diag_f'
application-label-pt:'jow_diag_f'
application-label-pt-BR:'jow_diag_f'
application-label-pt-PT:'jow_diag_f'
application-label-ro:'jow_diag_f'
application-label-ru:'jow_diag_f'
application-label-si:'jow_diag_f'
application-label-sk:'jow_diag_f'
application-label-sl:'jow_diag_f'
application-label-sq:'jow_diag_f'
application-label-sr:'jow_diag_f'
application-label-sr-Latn:'jow_diag_f'
application-label-sv:'jow_diag_f'
application-label-sw:'jow_diag_f'
application-label-ta:'jow_diag_f'
application-label-te:'jow_diag_f'
application-label-th:'jow_diag_f'
application-label-tl:'jow_diag_f'
application-label-tr:'jow_diag_f'
application-label-uk:'jow_diag_f'
application-label-ur:'jow_diag_f'
application-label-uz:'jow_diag_f'
application-label-vi:'jow_diag_f'
application-label-zh-CN:'jow_diag_f'
application-label-zh-HK:'jow_diag_f'
application-label-zh-TW:'jow_diag_f'
application-label-zu:'jow_diag_f'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='jow_diag_f' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='de.jockels.jowdiagf.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--' 'af' 'am' 'ar' 'az' 'be' 'bg' 'bn' 'bs' 'ca' 'cs' 'da' 'de' 'el' 'en-AU' 'en-GB' 'en-IN' 'es' 'es-US' 'et' 'eu' 'fa' 'fi' 'fr' 'fr-CA' 'gl' 'gu' 'hi' 'hr' 'hu' 'hy' 'in' 'is' 'it' 'iw' 'ja'
'ka' 'kk' 'km' 'kn' 'ko' 'ky' 'lo' 'lt' 'lv' 'mk' 'ml' 'mn' 'mr' 'ms' 'my' 'nb' 'ne' 'nl' 'pa' 'pl' 'pt' 'pt-BR' 'pt-PT' 'ro' 'ru' 'si' 'sk' 'sl' 'sq' 'sr' 'sr-Latn' 'sv' 'sw' 'ta' 'te' 'th' 'tl' 'tr' 'uk' 'ur' 'uz' 'v
i' 'zh-CN' 'zh-HK' 'zh-TW' 'zu'
densities: '160' '240' '320' '480' '640'
native-code: 'arm64-v8a' 'x86' 'x86_64'
[ +3 ms] Stopping app 'app.apk' on ONEPLUS A3003.
[ +1 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell am force-stop de.jockels.jowdiagf
[ +150 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell pm list packages de.jockels.jowdiagf
[ +473 ms] package:de.jockels.jowdiagf
[ +5 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell cat /data/local/tmp/sky.de.jockels.jowdiagf.sha1
[ +51 ms] 8faa54a4f9970f005322c2f6a8abe4fac948c572
[ +1 ms] Installing APK.
[ +3 ms] c:\data\sdk\platform-tools\adb version
[ +25 ms] Android Debug Bridge version 1.0.40
Version 4797878
Installed as c:\data\sdk\platform-tools\adb.EXE
[ ] c:\data\sdk\platform-tools\adb start-server
[ +23 ms] Installing build\app\outputs\apk\app.apk...
[ ] c:\data\sdk\platform-tools\adb -s 681072bd install -r build\app\outputs\apk\app.apk
[+3821 ms] Success
[ +2 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell echo -n ff9fd74b80f845cc506e0b8496d807502c04d0f4 > /data/local/tmp/sky.de.jockels.jowdiagf.sha1
[ +71 ms] ONEPLUS A3003 startApp
[ +3 ms] c:\data\sdk\platform-tools\adb -s 681072bd shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true de.j
ockels.jowdiagf/de.jockels.jowdiagf.MainActivity
[ +119 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=de.jockels.jowdiagf/.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[ +840 ms] I/FlutterActivityDelegate(24559): onResume setting current activity to this
[ +178 ms] Observatory URL on device: http://127.0.0.1:42715/
[ +10 ms] c:\data\sdk\platform-tools\adb -s 681072bd forward tcp:8101 tcp:42715
[ +29 ms] Forwarded host port 8101 to device port 42715 for Observatory
[ +12 ms] Connecting to service protocol: http://127.0.0.1:8101/
[ +382 ms] Successfully connected to service protocol: http://127.0.0.1:8101/
[ +12 ms] getVM: {}
[ +22 ms] getIsolate: {isolateId: isolates/290656618}
[ +4 ms] _flutter.listViews: {}
[ +926 ms] DevFS: Creating new filesystem on the device (null)
[ +1 ms] _createDevFS: {fsName: jow_diag_f}
[ +59 ms] DevFS: Created new filesystem on the device (file:///data/user/0/de.jockels.jowdiagf/cache/jow_diag_fSBYYFE/jow_diag_f/)
[ +3 ms] Updating assets
[ +340 ms] Syncing files to device ONEPLUS A3003...
[ +5 ms] DevFS: Starting sync from LocalDirectory: 'C:\data\Projekte\jow_diag_f'
[ ] Scanning project files
[ +5 ms] Scanning package files
[ +102 ms] Scanning asset files
[ +1 ms] Scanning for deleted files
[ +64 ms] Compiling dart to kernel with 631 updated files
[ +5 ms] C:\data\flutter\bin\cache\dart-sdk\bin\dart C:\data\flutter\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root C:\data\flutter\bin\cache\artifacts\engine\common\flutter_patched_s
dk/ --incremental --strong --target=flutter --output-dill build\app.dill --packages C:\data\Projekte\jow_diag_f\.packages --filesystem-scheme org-dartlang-root
[+2183 ms] Updating files
[ +815 ms] DevFS: Sync finished
[ +1 ms] Synced 0.8MB.
[ +2 ms] _flutter.listViews: {}
[ +23 ms] Connected to _flutterView/0x7b8b9bd998.
[ +2 ms] ๐ฅ To hot reload your app on the fly, press "r". To restart the app entirely, press "R".
[ +1 ms] An Observatory debugger and profiler on ONEPLUS A3003 is available at: http://127.0.0.1:8101/
[ ] For a more detailed help message, press "h". To quit, press "q".
[+110214 ms] DevFS: Deleting filesystem on the device (file:///data/user/0/de.jockels.jowdiagf/cache/jow_diag_fSBYYFE/jow_diag_f/)
[ +2 ms] _deleteDevFS: {fsName: jow_diag_f}
[ +49 ms] DevFS: Deleted filesystem on the device (file:///data/user/0/de.jockels.jowdiagf/cache/jow_diag_fSBYYFE/jow_diag_f/)
[ +9 ms] ext.flutter.exit: {isolateId: isolates/290656618}
[ +100 ms] Application finished.
[ +59 ms] "flutter run" took 139.943ms.
[ +10 ms] Service protocol connection closed.
C:\data\Projekte\jow_diag_f>flutter analyze
Analyzing jow_diag_f...
info - Name types using UpperCamelCase - lib\rssWidget.dart:27:7
info - The function 'rssItem1' isn't used - lib\rssWidget.dart:108:12
info - The function 'rssItem4' isn't used - lib\rssWidget.dart:162:14
info - The function 'rssList1' isn't used - lib\rssWidget.dart:182:14
info - Avoid using braces in interpolation when not needed - lib\sysinfoWidget.dart:577:37
info - Avoid using braces in interpolation when not needed - lib\sysinfoWidget.dart:577:47
6 issues found. (ran in 12.1s)
C:\data\Projekte\jow_diag_f>flutter doctor -v
[โ] Flutter (Channel beta, v0.4.4, on Microsoft Windows [Version 10.0.17134.48], locale de-DE)
โข Flutter version 0.4.4 at C:\data\flutter
โข Framework revision f9bb4289e9 (4 weeks ago), 2018-05-11 21:44:54 -0700
โข Engine revision 06afdfe54e
โข Dart version 2.0.0-dev.54.0.flutter-46ab040e58
[โ] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข Android SDK at c:\data\sdk
โข Android NDK at c:\data\sdk\ndk-bundle
โข Platform android-27, build-tools 27.0.3
โข ANDROID_HOME = c:\data\sdk
โข Java binary at: C:\data\android-studio\jre\bin\java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
โข All Android licenses accepted.
[โ] Android Studio (version 3.1)
โข Android Studio at C:\data\android-studio
โข Flutter plugin version 25.0.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
[โ] Connected devices (1 available)
โข ONEPLUS A3003 โข 681072bd โข android-arm64 โข Android 8.0.0 (API 26)
โข No issues found!
C:\data\Projekte\jow_diag_f>
</code></pre></div> | <p dir="auto">In flutter version beta 0.5.1, my project has been working normally for months.<br>
but when I upgrade flutter to beta 0.6.0 or higher,it can't build release apk any more,and debug mode works fine.</p>
<p dir="auto">flutter build apk<br>
Initializing gradle...<br>
Resolving dependencies...<br>
Running 'gradlew assembleRelease'...<br>
Dart snapshot generator failed with exit code -1073741819<br>
Snapshotting exited with non-zero exit code: -1073741819</p>
<p dir="auto">my configure is correct, and a helloworld can also build release apk well, or if I relpase my project't "lib/main.dart" with helloworld's, it build success too.</p>
<p dir="auto">and if I switch to beta 0.5.1 again, build release success too.</p>
<p dir="auto">maybe there is something different with dart 2.0,caused this problem?</p> | 0 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
A routed component cannot use a relative path to navigate to another component; whether from the primary changing the named router outlet, or from a named router changing the primary.<br>
The issue is written up <a href="http://stackoverflow.com/questions/42227349/angular-2-relative-pathing-from-a-named-outlet" rel="nofollow">here</a>.<br>
The closest routerLink syntax to navigating to a new named router outlet component is:<br>
<code class="notranslate"><a [routerLink]="['', {outlets: {aux: ['details']}}]">Details</a></code><br>
However, when a routed component is already in the aux named route, this routerLink produces an extra set of parenthesis.</p>
<blockquote>
<p dir="auto">auth/portfolio/(home/1//aux:details)(aux:details)</p>
</blockquote>
<p dir="auto">If a routed component isn't already in the aux named route, then the url generated is malformed anyway.</p>
<blockquote>
<p dir="auto">auth/portfolio/(home/1)(aux:details)</p>
</blockquote>
<p dir="auto"><strong>Expected behavior</strong><br>
I would expect to be able to change to another route via a routerLink like the documentation says, regardless of the depth I am in the URL tree.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
<a href="https://plnkr.co/edit/uoUBG6yDfNb6P0oLKN16?p=preview" rel="nofollow">https://plnkr.co/edit/uoUBG6yDfNb6P0oLKN16?p=preview</a></p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
We have an application where the named router outlet is used to display lists of entities. Upon selecting an entity, the application replaces the primary router outlet with the details of the entity. Entity details control which lists are available, so navigation occurs in the primary router outlet to change which component is showing in the named router outlet.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong><br>
Azure App Services</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.4.7<br>
<a href="https://unpkg.com/@angular/[email protected]/bundles/router.umd.js" rel="nofollow">https://unpkg.com/@angular/[email protected]/bundles/router.umd.js</a></p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong><br>
Chrome 56</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</p>
</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report"><pre class="notranslate"><code class="notranslate">[X] bug report
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">I have some routes like:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const routes = [
{ path: "", component: HomeComponent, pathMatch: "full" },
{ path: "profile", component: ProfileComponent },
{ path: "menu", component: MenuComponent, outlet: "sidebar" },
];"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">routes</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">""</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">HomeComponent</span><span class="pl-kos">,</span> <span class="pl-c1">pathMatch</span>: <span class="pl-s">"full"</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">"profile"</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">ProfileComponent</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">"menu"</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">MenuComponent</span><span class="pl-kos">,</span> <span class="pl-c1">outlet</span>: <span class="pl-s">"sidebar"</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">When the route <code class="notranslate">http://localhost/(sidebar:menu)</code> is open, then I'm able to remove the named outlet and go to <code class="notranslate">http://localhost/</code> by clicking an anchor like the following:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<a [routerLink]="['', {outlets: {sidebar: null}}]">
Close
</a>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">[routerLink]</span>="<span class="pl-s">['', {outlets: {sidebar: null}}]</span>"<span class="pl-kos">></span>
Close
<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span></pre></div>
<p dir="auto">What doesn't work is navigating away from the sidebar <strong>and also</strong> going to another route like <code class="notranslate">http://localhost/profile</code>.</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<a [routerLink]="['/profile', {outlets: {sidebar: null}}]">
Close
</a>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">[routerLink]</span>="<span class="pl-s">['/profile', {outlets: {sidebar: null}}]</span>"<span class="pl-kos">></span>
Close
<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span></pre></div>
<p dir="auto">The link that is rendered is <code class="notranslate">http://localhost:3971/profile(sidebar:menu)</code></p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">The link that should be rendered is <code class="notranslate">http://localhost:3971/profile</code>.</p>
<p dir="auto"><strong>Repro</strong></p>
<p dir="auto"><a href="https://github.com/tinchou/router-repro">https://github.com/tinchou/router-repro</a></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows 10, Visual Studio 2017</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.3.1 (didn't work with 2.1.0 either)</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> all</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> TypeScript 2.0.10</p>
</li>
</ul> | 1 |
<p dir="auto">Hi Guys</p>
<p dir="auto">is there a way of passing paramtetr to wt command so Windows Terminal would start with different tab than the default?</p>
<p dir="auto">For example:</p>
<p dir="auto">wt {guid}</p>
<p dir="auto">If not i would like to propose feature request.</p>
<p dir="auto">Thank you.</p> | <p dir="auto">when ever i click on setting icon it open a .json file in notepad<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/55340717/65831824-0caeac80-e2db-11e9-9ecc-5a997f09d29f.png"><img src="https://user-images.githubusercontent.com/55340717/65831824-0caeac80-e2db-11e9-9ecc-5a997f09d29f.png" alt="Screenshot (20)" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Recently experiencing a ton of crashes which require me to reload the entire editor window when renaming files.</p>
<p dir="auto">I cannot say for sure, but I have a feeling its related to new files. That is, files created after the initial editor window is loaded (again, not 100% on that).</p>
<h4 dir="auto">Steps:</h4>
<ol dir="auto">
<li>Create a new file in the project directory currently open in Atom (either using Atom or <code class="notranslate">echo "Test" >> new.txt</code>).</li>
<li>Rename the file (either using Atom of <code class="notranslate">mv new.txt old.txt</code>)</li>
<li>Crash window opens and forced to reload the editor.</li>
</ol>
<p dir="auto"><em>Note:</em> Quitting then relaunching does not seem to help.</p>
<h4 dir="auto">System:</h4>
<ul dir="auto">
<li><strong>Atom</strong>: <code class="notranslate">0.146.0</code></li>
<li><strong>System</strong>: <code class="notranslate">OS X 10.10</code></li>
</ul> | <p dir="auto">I was deleting a file and selected "Move to Trash".</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Process: Atom Helper [18018]
Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
Identifier: com.github.atom.helper
Version: 0.144.0 (0.144.0)
Code Type: X86-64 (Native)
Parent Process: Atom [17105]
Responsible: Atom [17105]
User ID: 501
Date/Time: 2014-11-10 11:13:40.159 -0500
OS Version: Mac OS X 10.10 (14A388a)
Report Version: 11
Anonymous UUID: 0D99533C-FAE2-A277-F6A0-24E885FAEBD0
Sleep/Wake UUID: 1B46AED7-9249-4C7D-8C81-A39D43E7C69C
Time Awake Since Boot: 100000 seconds
Time Since Wake: 11000 seconds
Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libchromiumcontent.dylib 0x000000010847c6b5 base::debug::BreakDebugger() + 5
1 libchromiumcontent.dylib 0x00000001084a960f logging::LogMessage::~LogMessage() + 655
2 libchromiumcontent.dylib 0x000000010ad5f93b content::ResourceDispatcher::OnSetDataBuffer(int, base::FileDescriptor, int, int) + 523
3 libchromiumcontent.dylib 0x000000010ad5edda content::ResourceDispatcher::DispatchMessage(IPC::Message const&) + 1098
4 libchromiumcontent.dylib 0x000000010ad5e5a8 content::ResourceDispatcher::OnMessageReceived(IPC::Message const&) + 584
5 libchromiumcontent.dylib 0x000000010ad1d7fd content::ChildThread::OnMessageReceived(IPC::Message const&) + 61
6 libchromiumcontent.dylib 0x000000010897f4cb IPC::ChannelProxy::Context::OnDispatchMessage(IPC::Message const&) + 123
7 libchromiumcontent.dylib 0x000000010847dd5f base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&) + 207
8 libchromiumcontent.dylib 0x00000001084b94b8 base::MessageLoop::RunTask(base::PendingTask const&) + 536
9 libchromiumcontent.dylib 0x00000001084b9a31 base::MessageLoop::DoWork() + 689
10 libchromiumcontent.dylib 0x0000000108465d61 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 3137
11 com.apple.CoreFoundation 0x00007fff93eb0661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
12 com.apple.CoreFoundation 0x00007fff93ea28bc __CFRunLoopDoSources0 + 476
13 com.apple.CoreFoundation 0x00007fff93ea1e1f __CFRunLoopRun + 927
14 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
15 com.apple.Foundation 0x00007fff8e459ab9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
16 libchromiumcontent.dylib 0x0000000108466354 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100
17 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
18 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
19 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
20 libchromiumcontent.dylib 0x000000010ae57e72 content::RenderWidget::UnregisterRenderFrame(content::RenderFrameImpl*) + 10402
21 libchromiumcontent.dylib 0x0000000108459d44 content::ContentMainRunner::Create() + 2196
22 libchromiumcontent.dylib 0x0000000108459236 content::ContentMain(content::ContentMainParams const&) + 54
23 com.github.AtomFramework 0x0000000107bfa298 AtomMain + 72
24 libdyld.dylib 0x00007fff9cbd35c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff996e422e kevent64 + 10
1 libdispatch.dylib 0x00007fff96808a6a _dispatch_mgr_thread + 52
Thread 2:: Chrome_ChildIOThread
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 libchromiumcontent.dylib 0x0000000108503150 logging::VlogInfo::GetMaxVlogLevel() const + 4336
2 libchromiumcontent.dylib 0x0000000108464f7c base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 252
3 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
4 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
5 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
6 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
7 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 3:: OptimizingCompi
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109c3fb75 v8::Testing::DeoptimizeAll() + 2490821
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 4:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 5:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 6:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 7:: Compositor
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 com.github.AtomFramework 0x0000000107db073b uv_sem_wait + 16
2 com.github.AtomFramework 0x0000000107c4213b atom::NodeBindings::EmbedThreadRunner(void*) + 35
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 9:: HTMLParserThread
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
2 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
4 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 12:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 14:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff996e3946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff9096e4a1 start_wqthread + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000000000000004b rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0xfffffffffffffffb
rdi: 0x00007fff5800e0b0 rsi: 0x00007fbe9ac9a938 rbp: 0x00007fff5800e070 rsp: 0x00007fff5800e070
r8: 0x00007fff5800e030 r9: 0x00007fff7dfb5300 r10: 0x00000000000170d8 r11: 0x00000040bd3737b8
r12: 0x00007fff5800e6e8 r13: 0x00007fff7eaef070 r14: 0x00007fff5800e6f8 r15: 0x0000000000080000
rip: 0x000000010847c6b5 rfl: 0x0000000000000246 cr2: 0x000000010847c6b0
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 3
Binary Images:
0x107bef000 - 0x107beffff +com.github.atom.helper (0.144.0 - 0.144.0) <A8A51FE1-F1BE-3CE1-92CC-E85D1817D694> /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
0x107bf9000 - 0x107f70fff +com.github.AtomFramework (0) <B09F3577-C18F-37FC-A53B-99B43EBF1691> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework
0x1082c0000 - 0x1082dffff +com.github.Squirrel (1.0 - 1) <8A2477CD-7A5C-3305-84F6-8EE9B2EF8478> /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x108302000 - 0x108399ff7 +com.github.ReactiveCocoa (1.0 - 1) <054804D9-6597-3679-814F-441C4B01ADED> /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x108413000 - 0x108430fff +com.github.Mantle (1.0 - 1) <C9D801BD-C96E-3266-9933-65220955C964> /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x108448000 - 0x10beeefb7 +libchromiumcontent.dylib (0) <6B119240-C11D-3907-8152-A756C7E79C87> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib
0x10ca16000 - 0x10ca4dfff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4DED30CF-CBA6-3223-9D3F-7D4D634656B8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x10ca75000 - 0x10caaaff7 libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
0x111a9e000 - 0x111ca8fef +ffmpegsumo.so (???) <664D031F-7854-302A-BC46-9D5F398D12FB> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so
0x11353a000 - 0x11353dfff +pathwatcher.node (???) <AA772458-0AF8-3683-AC80-8210CE3791A1> /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/build/Release/pathwatcher.node
0x1135c7000 - 0x1135c9ff7 +keyboard-layout-observer.node (???) <81A3C7FC-72F8-3DAB-890B-BA9C033B4CCE> /Applications/Atom.app/Contents/Resources/app/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node
0x1135ce000 - 0x113621ff7 +onig_scanner.node (???) <D1971343-BCC1-3083-8F41-787D4B1F22B9> /Applications/Atom.app/Contents/Resources/app/node_modules/oniguruma/build/Release/onig_scanner.node
0x11478c000 - 0x11482dfff +git.node (???) <31F720E7-631E-3E59-9FC2-035EDA2BC8B8> /Applications/Atom.app/Contents/Resources/app/node_modules/git-utils/build/Release/git.node
0x114879000 - 0x11487afff +runas.node (???) <0265DDA1-229F-3D93-B105-C8DD82F2B679> /Applications/Atom.app/Contents/Resources/app/node_modules/runas/build/Release/runas.node
0x11742b000 - 0x11742dfff +scrollbar-style-observer.node (???) <0CD9C9A7-0F6B-39EB-BEC6-0E48C77DABF0> /Applications/Atom.app/Contents/Resources/app/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node
0x7fff63f35000 - 0x7fff63f6b837 dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
0x7fff8d767000 - 0x7fff8d87fffb com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8d880000 - 0x7fff8d88dff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8d890000 - 0x7fff8d8b6ff7 com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff8d8c6000 - 0x7fff8d8e5fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff8d9dc000 - 0x7fff8d9e0ff7 libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8da4f000 - 0x7fff8da51ff7 com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff8da67000 - 0x7fff8da67fff com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8da68000 - 0x7fff8db4bfff libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8db4c000 - 0x7fff8df23fe7 com.apple.CoreAUC (211.0.0 - 211.0.0) <C0DFCFBA-90E6-38F7-B858-E80A880514E6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8df24000 - 0x7fff8df64ff7 com.apple.CloudDocs (1.0 - 280.1) <21D7E10A-99EF-34BE-82D7-29A6F1761DE5> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff8df65000 - 0x7fff8dfe2fff com.apple.CoreServices.OSServices (640.3 - 640.3) <EF21E94C-1B34-38F2-AD1E-5BF3AC8C8A23> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8dfe3000 - 0x7fff8e000ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff8e09a000 - 0x7fff8e3b5fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8e3b6000 - 0x7fff8e3b8fff com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8e3b9000 - 0x7fff8e3bbffb libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8e3eb000 - 0x7fff8e3eeff7 com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8e3ef000 - 0x7fff8e71dff7 com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8e71e000 - 0x7fff8e733ff7 com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8e750000 - 0x7fff8e79dff3 com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8e79e000 - 0x7fff8e7c1fff com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8e826000 - 0x7fff8eaa0fff com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8eaa1000 - 0x7fff8eaa7ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff8eb51000 - 0x7fff8eb51ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff8ecb1000 - 0x7fff8ecdefff com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff8ed09000 - 0x7fff8ed3bff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8ed92000 - 0x7fff8edacff7 com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8edae000 - 0x7fff8edfdff7 com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8edfe000 - 0x7fff8ee6cffb com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8ee6d000 - 0x7fff8f070ff3 com.apple.CFNetwork (720.0.9 - 720.0.9) <78EE1B88-394F-3BB8-93A6-E068990559EC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8f071000 - 0x7fff8f1a1fff com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8f1c4000 - 0x7fff8f4abffb com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8f4ac000 - 0x7fff8f4aeff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8f4db000 - 0x7fff8f4ecfff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff8f59d000 - 0x7fff8f5b9fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff8f5ba000 - 0x7fff8f5bdfff com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8f605000 - 0x7fff8f606fff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff8f607000 - 0x7fff8f6c6fff com.apple.backup.framework (1.6 - 1.6) <373C7CF8-2A85-3B59-BFBC-FFA3FAE2293D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8f708000 - 0x7fff8f708fff libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8f709000 - 0x7fff8f752ff3 com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8f75c000 - 0x7fff8f75ffff com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8f856000 - 0x7fff8f881fff com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8f882000 - 0x7fff8f8faff7 com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8f9d6000 - 0x7fff8fafdfff com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8fafe000 - 0x7fff8fb44ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff9006f000 - 0x7fff90070fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff90071000 - 0x7fff90071fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff9012e000 - 0x7fff9016ffff libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff901be000 - 0x7fff901bfff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff901c0000 - 0x7fff901e0fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff9026a000 - 0x7fff9026ffff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff90270000 - 0x7fff90278ff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff90279000 - 0x7fff9027ffff libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
0x7fff90280000 - 0x7fff90286ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff908eb000 - 0x7fff9096cff3 com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff9096d000 - 0x7fff90976fff libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
0x7fff90981000 - 0x7fff90a71fef libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff90a72000 - 0x7fff90a73ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff90a74000 - 0x7fff90a74ff7 liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
0x7fff90a84000 - 0x7fff90a8bfff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff90a8c000 - 0x7fff90aebff3 com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff90b00000 - 0x7fff90b02fff com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff90b5e000 - 0x7fff90b8eff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff90b8f000 - 0x7fff90b99ff7 com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff90be0000 - 0x7fff90be5ffb libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
0x7fff90e9b000 - 0x7fff90f07fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff90f08000 - 0x7fff90f22ff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff90fa6000 - 0x7fff910c7fff com.apple.LaunchServices (644.10 - 644.10) <0B1C68BC-0AEB-38E2-ABC8-E92728FEC475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff910f0000 - 0x7fff91236fef libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
0x7fff91237000 - 0x7fff91271ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff91272000 - 0x7fff91288ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff9128c000 - 0x7fff912c4ffb libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
0x7fff912c5000 - 0x7fff912cdffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff912ce000 - 0x7fff912effff com.apple.framework.Apple80211 (10.0 - 1000.57.3) <F64EB1A1-57F3-3ABA-97D0-DB7C926FD07F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff9131b000 - 0x7fff91326ff7 com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff91327000 - 0x7fff91355fff com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff91356000 - 0x7fff91356fff com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff91357000 - 0x7fff913beff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff913d6000 - 0x7fff913f0ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff913f5000 - 0x7fff91493fff com.apple.Metadata (10.7.0 - 916) <DA8A1D18-19FE-37B3-BE12-85C5B0A00736> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff91494000 - 0x7fff914bcfff libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
0x7fff915fa000 - 0x7fff9168bfff com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff9168c000 - 0x7fff916a7ff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff916a8000 - 0x7fff916adff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff916bd000 - 0x7fff916e9fff libsandbox.1.dylib (358.1.1) <C0B45487-F3CF-32CA-A875-CDCC48D2EA3E> /usr/lib/libsandbox.1.dylib
0x7fff91f73000 - 0x7fff9245ffff com.apple.MediaToolbox (1.0 - 1562.19) <E9F75769-1173-3EF6-8373-7673FA5B54F3> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff9247a000 - 0x7fff92487fff com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff92488000 - 0x7fff9248cfff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff9248d000 - 0x7fff92495fff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff92496000 - 0x7fff924c1ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff924c2000 - 0x7fff924cbff3 com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff92f6a000 - 0x7fff92ffefff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff92fff000 - 0x7fff93003fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff93004000 - 0x7fff93011fff com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff93031000 - 0x7fff930b3fff com.apple.PerformanceAnalysis (1.0 - 1) <478055FE-1A94-31C7-A1A2-D67F19CA6A74> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff933bd000 - 0x7fff933d6ff7 com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff933d7000 - 0x7fff936d9fff com.apple.HIToolbox (2.1.1 - 756) <07287312-97EC-3894-96F6-5CB6BA5E0081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff936dc000 - 0x7fff9377bdf7 com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff93780000 - 0x7fff93816ffb com.apple.CoreMedia (1.0 - 1562.19) <A754225C-2ED9-3220-A079-D50E695A1523> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff93817000 - 0x7fff93833ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff93834000 - 0x7fff938d6fff com.apple.Bluetooth (4.3.0 - 4.3.0f10) <70922125-2A01-37AE-9CB8-D8A9578092E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff93928000 - 0x7fff9398fff7 com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff93abf000 - 0x7fff93aeafff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff93b94000 - 0x7fff93b9eff7 com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff93b9f000 - 0x7fff93ba4ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff93ba5000 - 0x7fff93cb4ffb com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff93cb5000 - 0x7fff93cc1ff7 com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff93cc2000 - 0x7fff93e2dff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <E5A68E3A-79E7-36A3-9C6B-E1DF75ADDA95> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff93e2e000 - 0x7fff93e2fff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff93e30000 - 0x7fff941c6fff com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff941c7000 - 0x7fff941c8fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff94200000 - 0x7fff94204ff7 com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff944b2000 - 0x7fff9472cff3 com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff947f1000 - 0x7fff94923ff7 com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff94924000 - 0x7fff9494cffb libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff94959000 - 0x7fff94959fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff94961000 - 0x7fff94970fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff94973000 - 0x7fff949cefef libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff949cf000 - 0x7fff949dafff libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff949db000 - 0x7fff949ebff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff94a19000 - 0x7fff94b2bff7 libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff94b2c000 - 0x7fff94ba0fff com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff94baa000 - 0x7fff94bb1fff libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff94bb2000 - 0x7fff94bbdff7 com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff94bbe000 - 0x7fff94be2fef libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff94c76000 - 0x7fff94dd4ff3 com.apple.avfoundation (2.0 - 889.10) <3CB185EA-C806-326E-B8DA-FDDCFA123509> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff94dd5000 - 0x7fff94ec9ff7 libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff95538000 - 0x7fff95589ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <CC57353D-8D25-3579-8A66-30A09F7BEED0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff9558a000 - 0x7fff95616fff libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
0x7fff956af000 - 0x7fff956c2ff7 com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff956c3000 - 0x7fff957fdff7 com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff967fe000 - 0x7fff96800ff7 libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
0x7fff96801000 - 0x7fff96803ff7 libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
0x7fff96804000 - 0x7fff9682eff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff96af9000 - 0x7fff96b3fffb libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff96b40000 - 0x7fff96b4bff7 libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
0x7fff96b4c000 - 0x7fff96e7ffff libmecabra.dylib (666) <2CE5540A-D412-3D53-9E11-86C24D61713B> /usr/lib/libmecabra.dylib
0x7fff96e80000 - 0x7fff96e88fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff96f96000 - 0x7fff97088ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff97089000 - 0x7fff97217fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff972f8000 - 0x7fff972f9fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff972fa000 - 0x7fff9730bff7 libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
0x7fff97318000 - 0x7fff97319fff libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
0x7fff97434000 - 0x7fff97c6dffb com.apple.CoreGraphics (1.600.0 - 772) <D981E0F3-2FB7-38B7-A9FD-E991ADB06182> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff97c9d000 - 0x7fff97ca4fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff97ca5000 - 0x7fff97f0dffb com.apple.security (7.0 - 57031.1.35) <66CFAFF2-980E-3B99-B7E0-7D7751F6283C> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff97f0e000 - 0x7fff9833efff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff98345000 - 0x7fff9835bff7 com.apple.CoreMediaAuthoring (2.2 - 951) <98CB5AB8-6BCA-3C45-98EC-67F39EEE56C5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff9835c000 - 0x7fff9850cff7 com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff9850d000 - 0x7fff98545fff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff98546000 - 0x7fff98573fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff98574000 - 0x7fff98585ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff98736000 - 0x7fff9874aff7 com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff9874b000 - 0x7fff98764fff com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff98765000 - 0x7fff98b72ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff98b73000 - 0x7fff98edefff com.apple.VideoToolbox (1.0 - 1562.19) <28668FCA-D122-30CC-92EE-5224A0767CBC> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff98edf000 - 0x7fff98ee7fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff98efd000 - 0x7fff98f08fff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
0x7fff98f09000 - 0x7fff98f55fff com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff98f61000 - 0x7fff98f63fff libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
0x7fff98fcf000 - 0x7fff98fd2fff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff990a9000 - 0x7fff990bbff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff990ff000 - 0x7fff9912fffb com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff99445000 - 0x7fff99475fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff99476000 - 0x7fff9947afff libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff9947b000 - 0x7fff994adfff libTrueTypeScaler.dylib (134) <6AA9A44F-EB8B-3B31-B1A3-915D03EEBA44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff994ae000 - 0x7fff9955dfe7 libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff9955e000 - 0x7fff99576ff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
0x7fff99577000 - 0x7fff99584ff7 libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
0x7fff99679000 - 0x7fff996ccffb libAVFAudio.dylib (118.3) <371F1478-9AA3-312A-A93A-88E349000279> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff996cd000 - 0x7fff996eafff libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
0x7fff99883000 - 0x7fff998d2ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff998d3000 - 0x7fff998edff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff99a7b000 - 0x7fff99ab6fff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff99ab7000 - 0x7fff99c9c267 libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
0x7fff99c9d000 - 0x7fff99c9dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff99d70000 - 0x7fff9a01aff7 com.apple.GeoServices (1.0 - 982.4.10) <B77D4082-4FBB-3F6E-AB9F-3BBBA34C0DC3> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff9a52f000 - 0x7fff9a59efff com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff9a5d3000 - 0x7fff9a5d7fff libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
0x7fff9a5d8000 - 0x7fff9a5ddff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff9a5de000 - 0x7fff9a667fff com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff9a668000 - 0x7fff9a7acff7 com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff9a7ad000 - 0x7fff9a7affff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff9aa6a000 - 0x7fff9aabefff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff9ab34000 - 0x7fff9ab80ff7 libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
0x7fff9ab81000 - 0x7fff9ab81fff com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff9ab82000 - 0x7fff9abc2ff7 libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff9abc3000 - 0x7fff9abc9fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff9ae35000 - 0x7fff9ae39fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff9ae3a000 - 0x7fff9ae94ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff9af27000 - 0x7fff9af27ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff9af28000 - 0x7fff9b01afff libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
0x7fff9b023000 - 0x7fff9b02bffb com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9b046000 - 0x7fff9b061ff7 com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff9b0c8000 - 0x7fff9b13efe7 libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
0x7fff9b13f000 - 0x7fff9b148fff libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff9b149000 - 0x7fff9b32eff3 libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
0x7fff9b32f000 - 0x7fff9b32ffff com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9b330000 - 0x7fff9b3c5ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff9b3c7000 - 0x7fff9b402fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff9b403000 - 0x7fff9b428fff libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff9b429000 - 0x7fff9b47aff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff9b47b000 - 0x7fff9bfbcfff com.apple.AppKit (6.9 - 1343.14) <7E32F178-C705-3E83-81C5-FB31D5507B3A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff9bfbd000 - 0x7fff9bfd7ff7 libextension.dylib (55) <17514AB2-C503-3D49-A725-EBC1140567A6> /usr/lib/libextension.dylib
0x7fff9bfd8000 - 0x7fff9bfeaff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff9c039000 - 0x7fff9c047ff7 com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff9c0c9000 - 0x7fff9c13dff3 com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff9c13e000 - 0x7fff9c140fff libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff9c141000 - 0x7fff9c143fff libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff9c144000 - 0x7fff9c17dfff com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff9c1e4000 - 0x7fff9c255ff7 com.apple.framework.IOKit (2.0.2 - 1050.1.21) <E4139120-1631-35D0-AA76-B1F4043844BE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff9c256000 - 0x7fff9c258ff7 com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff9c259000 - 0x7fff9c260ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff9c261000 - 0x7fff9c289fff libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
0x7fff9cbd0000 - 0x7fff9cbd3ff7 libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
0x7fff9cbd4000 - 0x7fff9cea3ff3 com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff9cea4000 - 0x7fff9cecdffb libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
0x7fff9cece000 - 0x7fff9ced7ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff9cf69000 - 0x7fff9cf80ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff9cf99000 - 0x7fff9cfe6ff3 com.apple.CoreMediaIO (601.0 - 4749) <0336FB6D-5A3D-3672-A002-B856BF569CD0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 61
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 64236
thread_create: 1
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=278.0M resident=202.6M(73%) swapped_out_or_unallocated=75.4M(27%)
Writable regions: Total=604.9M written=411.0M(68%) resident=421.6M(70%) swapped_out=13.2M(2%) unallocated=183.3M(30%)
REGION TYPE VIRTUAL
=========== =======
ATS (font support) 32.6M
ATS (font support) (reserved) 8K reserved VM address space (unallocated)
Activity Tracing 2048K
CG shared images 144K
CoreUI image data 28K
Dispatch continuations 16.0M
Kernel Alloc Once 8K
MALLOC 156.5M
MALLOC (admin) 32K
Memory Tag 252 20K
Memory Tag 255 772.0M
STACK GUARD 56.1M
Stack 36.4M
VM_ALLOCATE 73.1M
__DATA 21.5M
__IMAGE 528K
__LINKEDIT 83.1M
__TEXT 194.9M
__UNICODE 544K
mapped file 252.8M
shared memory 4K
=========== =======
TOTAL 1.7G
TOTAL, minus reserved VM space 1.7G
"><pre class="notranslate"><code class="notranslate">Process: Atom Helper [18018]
Path: /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
Identifier: com.github.atom.helper
Version: 0.144.0 (0.144.0)
Code Type: X86-64 (Native)
Parent Process: Atom [17105]
Responsible: Atom [17105]
User ID: 501
Date/Time: 2014-11-10 11:13:40.159 -0500
OS Version: Mac OS X 10.10 (14A388a)
Report Version: 11
Anonymous UUID: 0D99533C-FAE2-A277-F6A0-24E885FAEBD0
Sleep/Wake UUID: 1B46AED7-9249-4C7D-8C81-A39D43E7C69C
Time Awake Since Boot: 100000 seconds
Time Since Wake: 11000 seconds
Crashed Thread: 0 CrRendererMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Thread 0 Crashed:: CrRendererMain Dispatch queue: com.apple.main-thread
0 libchromiumcontent.dylib 0x000000010847c6b5 base::debug::BreakDebugger() + 5
1 libchromiumcontent.dylib 0x00000001084a960f logging::LogMessage::~LogMessage() + 655
2 libchromiumcontent.dylib 0x000000010ad5f93b content::ResourceDispatcher::OnSetDataBuffer(int, base::FileDescriptor, int, int) + 523
3 libchromiumcontent.dylib 0x000000010ad5edda content::ResourceDispatcher::DispatchMessage(IPC::Message const&) + 1098
4 libchromiumcontent.dylib 0x000000010ad5e5a8 content::ResourceDispatcher::OnMessageReceived(IPC::Message const&) + 584
5 libchromiumcontent.dylib 0x000000010ad1d7fd content::ChildThread::OnMessageReceived(IPC::Message const&) + 61
6 libchromiumcontent.dylib 0x000000010897f4cb IPC::ChannelProxy::Context::OnDispatchMessage(IPC::Message const&) + 123
7 libchromiumcontent.dylib 0x000000010847dd5f base::debug::TaskAnnotator::RunTask(char const*, char const*, base::PendingTask const&) + 207
8 libchromiumcontent.dylib 0x00000001084b94b8 base::MessageLoop::RunTask(base::PendingTask const&) + 536
9 libchromiumcontent.dylib 0x00000001084b9a31 base::MessageLoop::DoWork() + 689
10 libchromiumcontent.dylib 0x0000000108465d61 base::MessagePumpLibevent::OnWakeup(int, short, void*) + 3137
11 com.apple.CoreFoundation 0x00007fff93eb0661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
12 com.apple.CoreFoundation 0x00007fff93ea28bc __CFRunLoopDoSources0 + 476
13 com.apple.CoreFoundation 0x00007fff93ea1e1f __CFRunLoopRun + 927
14 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
15 com.apple.Foundation 0x00007fff8e459ab9 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
16 libchromiumcontent.dylib 0x0000000108466354 base::MessagePumpNSRunLoop::DoRun(base::MessagePump::Delegate*) + 100
17 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
18 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
19 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
20 libchromiumcontent.dylib 0x000000010ae57e72 content::RenderWidget::UnregisterRenderFrame(content::RenderFrameImpl*) + 10402
21 libchromiumcontent.dylib 0x0000000108459d44 content::ContentMainRunner::Create() + 2196
22 libchromiumcontent.dylib 0x0000000108459236 content::ContentMain(content::ContentMainParams const&) + 54
23 com.github.AtomFramework 0x0000000107bfa298 AtomMain + 72
24 libdyld.dylib 0x00007fff9cbd35c9 start + 1
Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff996e422e kevent64 + 10
1 libdispatch.dylib 0x00007fff96808a6a _dispatch_mgr_thread + 52
Thread 2:: Chrome_ChildIOThread
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 libchromiumcontent.dylib 0x0000000108503150 logging::VlogInfo::GetMaxVlogLevel() const + 4336
2 libchromiumcontent.dylib 0x0000000108464f7c base::MessagePumpLibevent::Run(base::MessagePump::Delegate*) + 252
3 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
4 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
5 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
6 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
7 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
9 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 3:: OptimizingCompi
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109c3fb75 v8::Testing::DeoptimizeAll() + 2490821
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 4:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 5:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 6:: v8:SweeperThrea
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 libchromiumcontent.dylib 0x0000000109d56ea7 v8::Unlocker::~Unlocker() + 477879
2 libchromiumcontent.dylib 0x0000000109b44b80 v8::Testing::DeoptimizeAll() + 1462736
3 libchromiumcontent.dylib 0x0000000109d583d7 v8::Unlocker::~Unlocker() + 483303
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 7:: Compositor
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 8:
0 libsystem_kernel.dylib 0x00007fff996de56a semaphore_wait_trap + 10
1 com.github.AtomFramework 0x0000000107db073b uv_sem_wait + 16
2 com.github.AtomFramework 0x0000000107c4213b atom::NodeBindings::EmbedThreadRunner(void*) + 35
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 9:: HTMLParserThread
0 libsystem_kernel.dylib 0x00007fff996de52e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff996dd69f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff93ea2b14 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff93ea1fdb __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff93ea1838 CFRunLoopRunSpecific + 296
5 libchromiumcontent.dylib 0x0000000108465f4f base::MessagePumpCFRunLoop::DoRun(base::MessagePump::Delegate*) + 79
6 libchromiumcontent.dylib 0x0000000108465bcc base::MessagePumpLibevent::OnWakeup(int, short, void*) + 2732
7 libchromiumcontent.dylib 0x00000001084d2cb6 base::RunLoop::Run() + 70
8 libchromiumcontent.dylib 0x00000001084b8c1d base::MessageLoop::Run() + 29
9 libchromiumcontent.dylib 0x00000001084f3759 base::Thread::ThreadMain() + 217
10 libchromiumcontent.dylib 0x00000001084ecf7b base::PlatformThread::Join(base::PlatformThreadHandle) + 283
11 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
12 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
13 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 10:
0 libsystem_kernel.dylib 0x00007fff996e4216 kevent + 10
1 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
2 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
4 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 11:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 12:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 13:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 14:
0 libsystem_kernel.dylib 0x00007fff996e3132 __psynch_cvwait + 10
1 com.github.AtomFramework 0x0000000107db07d1 uv_cond_wait + 9
2 com.github.AtomFramework 0x0000000107da6a06 worker + 206
3 com.github.AtomFramework 0x0000000107da78a0 uv__thread_start + 25
4 libsystem_pthread.dylib 0x00007fff909702fc _pthread_body + 131
5 libsystem_pthread.dylib 0x00007fff90970279 _pthread_start + 176
6 libsystem_pthread.dylib 0x00007fff9096e4b1 thread_start + 13
Thread 15:
0 libsystem_kernel.dylib 0x00007fff996e3946 __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff9096e4a1 start_wqthread + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x000000000000004b rbx: 0x0000000000000000 rcx: 0x0000000000000000 rdx: 0xfffffffffffffffb
rdi: 0x00007fff5800e0b0 rsi: 0x00007fbe9ac9a938 rbp: 0x00007fff5800e070 rsp: 0x00007fff5800e070
r8: 0x00007fff5800e030 r9: 0x00007fff7dfb5300 r10: 0x00000000000170d8 r11: 0x00000040bd3737b8
r12: 0x00007fff5800e6e8 r13: 0x00007fff7eaef070 r14: 0x00007fff5800e6f8 r15: 0x0000000000080000
rip: 0x000000010847c6b5 rfl: 0x0000000000000246 cr2: 0x000000010847c6b0
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 3
Binary Images:
0x107bef000 - 0x107beffff +com.github.atom.helper (0.144.0 - 0.144.0) <A8A51FE1-F1BE-3CE1-92CC-E85D1817D694> /Applications/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper
0x107bf9000 - 0x107f70fff +com.github.AtomFramework (0) <B09F3577-C18F-37FC-A53B-99B43EBF1691> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Atom Framework
0x1082c0000 - 0x1082dffff +com.github.Squirrel (1.0 - 1) <8A2477CD-7A5C-3305-84F6-8EE9B2EF8478> /Applications/Atom.app/Contents/Frameworks/Squirrel.framework/Versions/A/Squirrel
0x108302000 - 0x108399ff7 +com.github.ReactiveCocoa (1.0 - 1) <054804D9-6597-3679-814F-441C4B01ADED> /Applications/Atom.app/Contents/Frameworks/ReactiveCocoa.framework/Versions/A/ReactiveCocoa
0x108413000 - 0x108430fff +com.github.Mantle (1.0 - 1) <C9D801BD-C96E-3266-9933-65220955C964> /Applications/Atom.app/Contents/Frameworks/Mantle.framework/Versions/A/Mantle
0x108448000 - 0x10beeefb7 +libchromiumcontent.dylib (0) <6B119240-C11D-3907-8152-A756C7E79C87> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Versions/A/Libraries/libchromiumcontent.dylib
0x10ca16000 - 0x10ca4dfff com.apple.audio.midi.CoreMIDI (1.10 - 88) <4DED30CF-CBA6-3223-9D3F-7D4D634656B8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x10ca75000 - 0x10caaaff7 libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
0x111a9e000 - 0x111ca8fef +ffmpegsumo.so (???) <664D031F-7854-302A-BC46-9D5F398D12FB> /Applications/Atom.app/Contents/Frameworks/Atom Framework.framework/Libraries/ffmpegsumo.so
0x11353a000 - 0x11353dfff +pathwatcher.node (???) <AA772458-0AF8-3683-AC80-8210CE3791A1> /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/build/Release/pathwatcher.node
0x1135c7000 - 0x1135c9ff7 +keyboard-layout-observer.node (???) <81A3C7FC-72F8-3DAB-890B-BA9C033B4CCE> /Applications/Atom.app/Contents/Resources/app/node_modules/atom-keymap/node_modules/keyboard-layout/build/Release/keyboard-layout-observer.node
0x1135ce000 - 0x113621ff7 +onig_scanner.node (???) <D1971343-BCC1-3083-8F41-787D4B1F22B9> /Applications/Atom.app/Contents/Resources/app/node_modules/oniguruma/build/Release/onig_scanner.node
0x11478c000 - 0x11482dfff +git.node (???) <31F720E7-631E-3E59-9FC2-035EDA2BC8B8> /Applications/Atom.app/Contents/Resources/app/node_modules/git-utils/build/Release/git.node
0x114879000 - 0x11487afff +runas.node (???) <0265DDA1-229F-3D93-B105-C8DD82F2B679> /Applications/Atom.app/Contents/Resources/app/node_modules/runas/build/Release/runas.node
0x11742b000 - 0x11742dfff +scrollbar-style-observer.node (???) <0CD9C9A7-0F6B-39EB-BEC6-0E48C77DABF0> /Applications/Atom.app/Contents/Resources/app/node_modules/scrollbar-style/build/Release/scrollbar-style-observer.node
0x7fff63f35000 - 0x7fff63f6b837 dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
0x7fff8d767000 - 0x7fff8d87fffb com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff8d880000 - 0x7fff8d88dff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff8d890000 - 0x7fff8d8b6ff7 com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff8d8c6000 - 0x7fff8d8e5fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff8d9dc000 - 0x7fff8d9e0ff7 libGIF.dylib (1231) <B3D2DF96-A67D-31EA-9A1B-E870B54855EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8da4f000 - 0x7fff8da51ff7 com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff8da67000 - 0x7fff8da67fff com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8da68000 - 0x7fff8db4bfff libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
0x7fff8db4c000 - 0x7fff8df23fe7 com.apple.CoreAUC (211.0.0 - 211.0.0) <C0DFCFBA-90E6-38F7-B858-E80A880514E6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8df24000 - 0x7fff8df64ff7 com.apple.CloudDocs (1.0 - 280.1) <21D7E10A-99EF-34BE-82D7-29A6F1761DE5> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff8df65000 - 0x7fff8dfe2fff com.apple.CoreServices.OSServices (640.3 - 640.3) <EF21E94C-1B34-38F2-AD1E-5BF3AC8C8A23> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8dfe3000 - 0x7fff8e000ffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff8e09a000 - 0x7fff8e3b5fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8e3b6000 - 0x7fff8e3b8fff com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8e3b9000 - 0x7fff8e3bbffb libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8e3eb000 - 0x7fff8e3eeff7 com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8e3ef000 - 0x7fff8e71dff7 com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8e71e000 - 0x7fff8e733ff7 com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8e750000 - 0x7fff8e79dff3 com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8e79e000 - 0x7fff8e7c1fff com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff8e826000 - 0x7fff8eaa0fff com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8eaa1000 - 0x7fff8eaa7ff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff8eb51000 - 0x7fff8eb51ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff8ecb1000 - 0x7fff8ecdefff com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff8ed09000 - 0x7fff8ed3bff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8ed92000 - 0x7fff8edacff7 com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8edae000 - 0x7fff8edfdff7 com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8edfe000 - 0x7fff8ee6cffb com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8ee6d000 - 0x7fff8f070ff3 com.apple.CFNetwork (720.0.9 - 720.0.9) <78EE1B88-394F-3BB8-93A6-E068990559EC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8f071000 - 0x7fff8f1a1fff com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8f1c4000 - 0x7fff8f4abffb com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8f4ac000 - 0x7fff8f4aeff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff8f4db000 - 0x7fff8f4ecfff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff8f59d000 - 0x7fff8f5b9fff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff8f5ba000 - 0x7fff8f5bdfff com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8f605000 - 0x7fff8f606fff liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
0x7fff8f607000 - 0x7fff8f6c6fff com.apple.backup.framework (1.6 - 1.6) <373C7CF8-2A85-3B59-BFBC-FFA3FAE2293D> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8f708000 - 0x7fff8f708fff libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff8f709000 - 0x7fff8f752ff3 com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8f75c000 - 0x7fff8f75ffff com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8f856000 - 0x7fff8f881fff com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8f882000 - 0x7fff8f8faff7 com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8f9d6000 - 0x7fff8fafdfff com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff8fafe000 - 0x7fff8fb44ff7 libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
0x7fff9006f000 - 0x7fff90070fff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff90071000 - 0x7fff90071fff com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff9012e000 - 0x7fff9016ffff libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff901be000 - 0x7fff901bfff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff901c0000 - 0x7fff901e0fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff9026a000 - 0x7fff9026ffff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff90270000 - 0x7fff90278ff7 com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff90279000 - 0x7fff9027ffff libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
0x7fff90280000 - 0x7fff90286ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
0x7fff908eb000 - 0x7fff9096cff3 com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff9096d000 - 0x7fff90976fff libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
0x7fff90981000 - 0x7fff90a71fef libJP2.dylib (1231) <FEAF6F38-736E-35A8-A983-F4531C8A821C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff90a72000 - 0x7fff90a73ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff90a74000 - 0x7fff90a74ff7 liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
0x7fff90a84000 - 0x7fff90a8bfff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff90a8c000 - 0x7fff90aebff3 com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff90b00000 - 0x7fff90b02fff com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff90b5e000 - 0x7fff90b8eff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff90b8f000 - 0x7fff90b99ff7 com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff90be0000 - 0x7fff90be5ffb libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
0x7fff90e9b000 - 0x7fff90f07fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff90f08000 - 0x7fff90f22ff3 com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff90fa6000 - 0x7fff910c7fff com.apple.LaunchServices (644.10 - 644.10) <0B1C68BC-0AEB-38E2-ABC8-E92728FEC475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff910f0000 - 0x7fff91236fef libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
0x7fff91237000 - 0x7fff91271ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff91272000 - 0x7fff91288ff7 libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
0x7fff9128c000 - 0x7fff912c4ffb libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
0x7fff912c5000 - 0x7fff912cdffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff912ce000 - 0x7fff912effff com.apple.framework.Apple80211 (10.0 - 1000.57.3) <F64EB1A1-57F3-3ABA-97D0-DB7C926FD07F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff9131b000 - 0x7fff91326ff7 com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff91327000 - 0x7fff91355fff com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff91356000 - 0x7fff91356fff com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff91357000 - 0x7fff913beff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff913d6000 - 0x7fff913f0ff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff913f5000 - 0x7fff91493fff com.apple.Metadata (10.7.0 - 916) <DA8A1D18-19FE-37B3-BE12-85C5B0A00736> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff91494000 - 0x7fff914bcfff libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
0x7fff915fa000 - 0x7fff9168bfff com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff9168c000 - 0x7fff916a7ff7 libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
0x7fff916a8000 - 0x7fff916adff7 libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
0x7fff916bd000 - 0x7fff916e9fff libsandbox.1.dylib (358.1.1) <C0B45487-F3CF-32CA-A875-CDCC48D2EA3E> /usr/lib/libsandbox.1.dylib
0x7fff91f73000 - 0x7fff9245ffff com.apple.MediaToolbox (1.0 - 1562.19) <E9F75769-1173-3EF6-8373-7673FA5B54F3> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff9247a000 - 0x7fff92487fff com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff92488000 - 0x7fff9248cfff libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
0x7fff9248d000 - 0x7fff92495fff libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
0x7fff92496000 - 0x7fff924c1ff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff924c2000 - 0x7fff924cbff3 com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff92f6a000 - 0x7fff92ffefff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff92fff000 - 0x7fff93003fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff93004000 - 0x7fff93011fff com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff93031000 - 0x7fff930b3fff com.apple.PerformanceAnalysis (1.0 - 1) <478055FE-1A94-31C7-A1A2-D67F19CA6A74> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff933bd000 - 0x7fff933d6ff7 com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff933d7000 - 0x7fff936d9fff com.apple.HIToolbox (2.1.1 - 756) <07287312-97EC-3894-96F6-5CB6BA5E0081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff936dc000 - 0x7fff9377bdf7 com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff93780000 - 0x7fff93816ffb com.apple.CoreMedia (1.0 - 1562.19) <A754225C-2ED9-3220-A079-D50E695A1523> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff93817000 - 0x7fff93833ff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
0x7fff93834000 - 0x7fff938d6fff com.apple.Bluetooth (4.3.0 - 4.3.0f10) <70922125-2A01-37AE-9CB8-D8A9578092E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff93928000 - 0x7fff9398fff7 com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff93abf000 - 0x7fff93aeafff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff93b94000 - 0x7fff93b9eff7 com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff93b9f000 - 0x7fff93ba4ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff93ba5000 - 0x7fff93cb4ffb com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff93cb5000 - 0x7fff93cc1ff7 com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff93cc2000 - 0x7fff93e2dff7 com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <E5A68E3A-79E7-36A3-9C6B-E1DF75ADDA95> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff93e2e000 - 0x7fff93e2fff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff93e30000 - 0x7fff941c6fff com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff941c7000 - 0x7fff941c8fff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff94200000 - 0x7fff94204ff7 com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff944b2000 - 0x7fff9472cff3 com.apple.RawCamera.bundle (6.00 - 761) <056E2E1D-6682-354E-9666-7E4935653D47> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff947f1000 - 0x7fff94923ff7 com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff94924000 - 0x7fff9494cffb libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff94959000 - 0x7fff94959fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff94961000 - 0x7fff94970fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff94973000 - 0x7fff949cefef libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff949cf000 - 0x7fff949dafff libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff949db000 - 0x7fff949ebff7 libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
0x7fff94a19000 - 0x7fff94b2bff7 libvDSP.dylib (512) <DD5517F5-F7F7-3AA1-B6FA-CD98DBC3C651> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff94b2c000 - 0x7fff94ba0fff com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff94baa000 - 0x7fff94bb1fff libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff94bb2000 - 0x7fff94bbdff7 com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff94bbe000 - 0x7fff94be2fef libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff94c76000 - 0x7fff94dd4ff3 com.apple.avfoundation (2.0 - 889.10) <3CB185EA-C806-326E-B8DA-FDDCFA123509> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff94dd5000 - 0x7fff94ec9ff7 libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff95538000 - 0x7fff95589ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <CC57353D-8D25-3579-8A66-30A09F7BEED0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff9558a000 - 0x7fff95616fff libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
0x7fff956af000 - 0x7fff956c2ff7 com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff956c3000 - 0x7fff957fdff7 com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff967fe000 - 0x7fff96800ff7 libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
0x7fff96801000 - 0x7fff96803ff7 libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
0x7fff96804000 - 0x7fff9682eff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff96af9000 - 0x7fff96b3fffb libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff96b40000 - 0x7fff96b4bff7 libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
0x7fff96b4c000 - 0x7fff96e7ffff libmecabra.dylib (666) <2CE5540A-D412-3D53-9E11-86C24D61713B> /usr/lib/libmecabra.dylib
0x7fff96e80000 - 0x7fff96e88fff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff96f96000 - 0x7fff97088ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff97089000 - 0x7fff97217fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff972f8000 - 0x7fff972f9fff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff972fa000 - 0x7fff9730bff7 libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
0x7fff97318000 - 0x7fff97319fff libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
0x7fff97434000 - 0x7fff97c6dffb com.apple.CoreGraphics (1.600.0 - 772) <D981E0F3-2FB7-38B7-A9FD-E991ADB06182> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff97c9d000 - 0x7fff97ca4fff com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff97ca5000 - 0x7fff97f0dffb com.apple.security (7.0 - 57031.1.35) <66CFAFF2-980E-3B99-B7E0-7D7751F6283C> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff97f0e000 - 0x7fff9833efff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff98345000 - 0x7fff9835bff7 com.apple.CoreMediaAuthoring (2.2 - 951) <98CB5AB8-6BCA-3C45-98EC-67F39EEE56C5> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff9835c000 - 0x7fff9850cff7 com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff9850d000 - 0x7fff98545fff com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff98546000 - 0x7fff98573fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff98574000 - 0x7fff98585ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff98736000 - 0x7fff9874aff7 com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff9874b000 - 0x7fff98764fff com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff98765000 - 0x7fff98b72ff7 libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff98b73000 - 0x7fff98edefff com.apple.VideoToolbox (1.0 - 1562.19) <28668FCA-D122-30CC-92EE-5224A0767CBC> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff98edf000 - 0x7fff98ee7fff libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
0x7fff98efd000 - 0x7fff98f08fff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
0x7fff98f09000 - 0x7fff98f55fff com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff98f61000 - 0x7fff98f63fff libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
0x7fff98fcf000 - 0x7fff98fd2fff com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff990a9000 - 0x7fff990bbff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff990ff000 - 0x7fff9912fffb com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff99445000 - 0x7fff99475fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff99476000 - 0x7fff9947afff libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff9947b000 - 0x7fff994adfff libTrueTypeScaler.dylib (134) <6AA9A44F-EB8B-3B31-B1A3-915D03EEBA44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff994ae000 - 0x7fff9955dfe7 libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff9955e000 - 0x7fff99576ff7 libexpat.1.dylib (12) <C5FE8836-E277-3162-9D15-6735321CB2C6> /usr/lib/libexpat.1.dylib
0x7fff99577000 - 0x7fff99584ff7 libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
0x7fff99679000 - 0x7fff996ccffb libAVFAudio.dylib (118.3) <371F1478-9AA3-312A-A93A-88E349000279> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff996cd000 - 0x7fff996eafff libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
0x7fff99883000 - 0x7fff998d2ff7 libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
0x7fff998d3000 - 0x7fff998edff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff99a7b000 - 0x7fff99ab6fff com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff99ab7000 - 0x7fff99c9c267 libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
0x7fff99c9d000 - 0x7fff99c9dfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <01E92F9F-EF29-3745-8631-AEA692F7F29C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff99d70000 - 0x7fff9a01aff7 com.apple.GeoServices (1.0 - 982.4.10) <B77D4082-4FBB-3F6E-AB9F-3BBBA34C0DC3> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff9a52f000 - 0x7fff9a59efff com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff9a5d3000 - 0x7fff9a5d7fff libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
0x7fff9a5d8000 - 0x7fff9a5ddff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff9a5de000 - 0x7fff9a667fff com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff9a668000 - 0x7fff9a7acff7 com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff9a7ad000 - 0x7fff9a7affff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff9aa6a000 - 0x7fff9aabefff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff9ab34000 - 0x7fff9ab80ff7 libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
0x7fff9ab81000 - 0x7fff9ab81fff com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff9ab82000 - 0x7fff9abc2ff7 libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff9abc3000 - 0x7fff9abc9fff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff9ae35000 - 0x7fff9ae39fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff9ae3a000 - 0x7fff9ae94ff7 com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff9af27000 - 0x7fff9af27ff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff9af28000 - 0x7fff9b01afff libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
0x7fff9b023000 - 0x7fff9b02bffb com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9b046000 - 0x7fff9b061ff7 com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff9b0c8000 - 0x7fff9b13efe7 libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
0x7fff9b13f000 - 0x7fff9b148fff libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff9b149000 - 0x7fff9b32eff3 libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
0x7fff9b32f000 - 0x7fff9b32ffff com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9b330000 - 0x7fff9b3c5ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff9b3c7000 - 0x7fff9b402fff com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff9b403000 - 0x7fff9b428fff libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff9b429000 - 0x7fff9b47aff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <762E9358-A69A-3D63-8282-3B77FBE0147E> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff9b47b000 - 0x7fff9bfbcfff com.apple.AppKit (6.9 - 1343.14) <7E32F178-C705-3E83-81C5-FB31D5507B3A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff9bfbd000 - 0x7fff9bfd7ff7 libextension.dylib (55) <17514AB2-C503-3D49-A725-EBC1140567A6> /usr/lib/libextension.dylib
0x7fff9bfd8000 - 0x7fff9bfeaff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff9c039000 - 0x7fff9c047ff7 com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff9c0c9000 - 0x7fff9c13dff3 com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff9c13e000 - 0x7fff9c140fff libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff9c141000 - 0x7fff9c143fff libRadiance.dylib (1231) <BDD94A52-DE53-300C-9180-5D434272989F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff9c144000 - 0x7fff9c17dfff com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff9c1e4000 - 0x7fff9c255ff7 com.apple.framework.IOKit (2.0.2 - 1050.1.21) <E4139120-1631-35D0-AA76-B1F4043844BE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff9c256000 - 0x7fff9c258ff7 com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff9c259000 - 0x7fff9c260ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
0x7fff9c261000 - 0x7fff9c289fff libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
0x7fff9cbd0000 - 0x7fff9cbd3ff7 libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
0x7fff9cbd4000 - 0x7fff9cea3ff3 com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff9cea4000 - 0x7fff9cecdffb libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
0x7fff9cece000 - 0x7fff9ced7ff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff9cf69000 - 0x7fff9cf80ff7 libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff9cf99000 - 0x7fff9cfe6ff3 com.apple.CoreMediaIO (601.0 - 4749) <0336FB6D-5A3D-3672-A002-B856BF569CD0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 61
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 64236
thread_create: 1
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=278.0M resident=202.6M(73%) swapped_out_or_unallocated=75.4M(27%)
Writable regions: Total=604.9M written=411.0M(68%) resident=421.6M(70%) swapped_out=13.2M(2%) unallocated=183.3M(30%)
REGION TYPE VIRTUAL
=========== =======
ATS (font support) 32.6M
ATS (font support) (reserved) 8K reserved VM address space (unallocated)
Activity Tracing 2048K
CG shared images 144K
CoreUI image data 28K
Dispatch continuations 16.0M
Kernel Alloc Once 8K
MALLOC 156.5M
MALLOC (admin) 32K
Memory Tag 252 20K
Memory Tag 255 772.0M
STACK GUARD 56.1M
Stack 36.4M
VM_ALLOCATE 73.1M
__DATA 21.5M
__IMAGE 528K
__LINKEDIT 83.1M
__TEXT 194.9M
__UNICODE 544K
mapped file 252.8M
shared memory 4K
=========== =======
TOTAL 1.7G
TOTAL, minus reserved VM space 1.7G
</code></pre></div> | 1 |
<p dir="auto">This results in a brand new init of a React Native project template failing on <code class="notranslate">yarn tsc --noEmit -p .</code> as raised in this issue here: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="876142156" data-permission-text="Title is private" data-url="https://github.com/react-native-community/react-native-template-typescript/issues/203" data-hovercard-type="issue" data-hovercard-url="/react-native-community/react-native-template-typescript/issues/203/hovercard" href="https://github.com/react-native-community/react-native-template-typescript/issues/203">react-native-community/react-native-template-typescript#203</a></p>
<p dir="auto">As of right now, the solution is to patch one of the two type libraries to remove the <code class="notranslate">AbortSignal</code> and <code class="notranslate">AbortController</code> definitions.</p> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/xxxx</code> package and had problems.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond.
<ul dir="auto">
<li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rbuckton/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rbuckton">@rbuckton</a></li>
</ul>
</li>
</ul>
<p dir="auto">It seems that there is some issues with the 0.9.37 core-js package and tsc 2.2.1</p>
<p dir="auto">I get a lot of compiler errors: (just a clipout of them)<br>
node_modules/@angular/core/src/facade/lang.d.ts(12,17): error TS2693: 'Map' only refers to a type, but is being used as a value here.<br>
node_modules/@angular/core/src/facade/lang.d.ts(13,17): error TS2693: 'Set' only refers to a type, but is being used as a value here.<br>
node_modules/@types/core-js/index.d.ts(47,36): error TS2304: Cannot find name 'Iterable'.<br>
node_modules/@types/core-js/index.d.ts(350,48): error TS2304: Cannot find name 'PropertyKey'.<br>
node_modules/@types/core-js/index.d.ts(351,52): error TS2304: Cannot find name 'PropertyKey'.<br>
node_modules/@types/core-js/index.d.ts(352,34): error TS2304: Cannot find name 'PropertyKey'.<br>
node_modules/@types/core-js/index.d.ts(353,34): error TS2304: Cannot find name 'PropertyKey'.<br>
node_modules/@types/core-js/index.d.ts(354,34): error TS2304: Cannot find name 'PropertyKey'.<br>
node_modules/@types/core-js/index.d.ts(355,61): error TS2304: Cannot find name 'PropertyKey'.<br>
.....<br>
node_modules/@types/core-js/index.d.ts(2103,41): error TS2339: Property 'toStringTag' does not exist on type 'SymbolConstructor'.<br>
node_modules/@types/core-js/index.d.ts(2107,41): error TS2339: Property 'unscopables' does not exist on type 'SymbolConstructor'.<br>
node_modules/rxjs/Observable.d.ts(69,60): error TS2693: 'Promise' only refers to a type, but is being used as a value here.<br>
node_modules/rxjs/operator/toPromise.d.ts(3,79): error TS2693: 'Promise' only refers to a type, but is being used as a value here.<br>
typescript\shared\login.component.ts(81,62): error TS2339: Property 'find' does not exist on type 'Unit[]'.<br>
typescript\shared\login.component.ts(81,62): error TS2339: Property 'find' does not exist on type 'Unit[]'.</p>
<p dir="auto">With the 0.9.35 everything works as expected.</p>
<p dir="auto">I am wondering if it is the change in ts.config from es5 to ef2017 that causes this? Can't really see that any of the other changes could have done this?</p> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>v9.0.4</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows 10 (1903), macOS 10.15.5, SparkyLinux 5.11 (Debian Buster)</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>Unknown</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Use either <code class="notranslate">setSize</code> or <code class="notranslate">setBounds</code> to resize a window to the dimensions of the background image (explicit dimensions passed).</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">In Linux, this behavior works as expected. In Windows and macOS, it does not work as expected. When running <code class="notranslate">getBounds</code>, it matches what is set with <code class="notranslate">setBounds</code>, however, the background image (which has identical dimensions) is cut off.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Occurs in my repo <a href="https://github.com/slashinfty/nincid">here</a>. The code is specifically:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const win = require("electron").remote.BrowserWindow.getFocusedWindow();
win.setMinimumSize(skinJson.width, skinJson.height)
win.setBounds({width: skinJson.width, height: skinJson.height})"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">win</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"electron"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">remote</span><span class="pl-kos">.</span><span class="pl-c1">BrowserWindow</span><span class="pl-kos">.</span><span class="pl-en">getFocusedWindow</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">setMinimumSize</span><span class="pl-kos">(</span><span class="pl-s1">skinJson</span><span class="pl-kos">.</span><span class="pl-c1">width</span><span class="pl-kos">,</span> <span class="pl-s1">skinJson</span><span class="pl-kos">.</span><span class="pl-c1">height</span><span class="pl-kos">)</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">setBounds</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">width</span>: <span class="pl-s1">skinJson</span><span class="pl-kos">.</span><span class="pl-c1">width</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-s1">skinJson</span><span class="pl-kos">.</span><span class="pl-c1">height</span><span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">Where <code class="notranslate">skinJson.width</code> and <code class="notranslate">skinJson.height</code> are the dimensions of the background image.</p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a href="https://clips.twitch.tv/ThankfulNastyDonutAMPTropPunch" rel="nofollow">Here is an example</a> of it working correctly in Linux.</p>
<p dir="auto"><a href="https://clips.twitch.tv/ComfortableImportantSwallowOneHand" rel="nofollow">Here is an example</a> of not working correctly in Windows and <a href="https://clips.twitch.tv/VibrantCredulousGooseDoritosChip" rel="nofollow">an example in macOS</a>.</p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">This is closest to <a href="https://github.com/electron/electron/issues/16711" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/16711/hovercard">#16711</a>, but it was closed for being a duplicate of <a href="https://github.com/electron/electron/issues/15560" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/15560/hovercard">#15560</a>, but that's not the case. With regards to the latter, the workaround of <code class="notranslate">setMinimumSize</code> works to resize smaller. However, <code class="notranslate">setSize</code> and <code class="notranslate">setBounds</code> (tested both) work differently in Windows and macOS than it does in Linux. Having <code class="notranslate">resizeable</code> be true or false has no impact on it's functionality (however I ended up setting it to true just to allow users to fit the background image, but that's not a desirable outcome).</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 <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Electron Version</h3>
<p dir="auto">11.x, 12.x, 13.x</p>
<h3 dir="auto">What operating system are you using?</h3>
<p dir="auto">Windows</p>
<h3 dir="auto">Operating System Version</h3>
<p dir="auto">Windows 10 Pro (10.0.19042 Build 19042)</p>
<h3 dir="auto">What arch are you using?</h3>
<p dir="auto">x64</p>
<h3 dir="auto">Last Known Working Electron version</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">This revives <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="174331157" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/7049" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/7049/hovercard" href="https://github.com/electron/electron/issues/7049">#7049</a> for recent versions of electron.</p>
<p dir="auto">When using 32bit electron on 64bit windows, the renderer should not crash.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Loading certain pages will cause the web contents to crash if 32bit electron is installed on a 64bit windows machine. A few examples:</p>
<ul dir="auto">
<li><a href="https://www.similarweb.com/" rel="nofollow">https://www.similarweb.com/</a></li>
<li><a href="https://www.calm.com/" rel="nofollow">https://www.calm.com/</a></li>
</ul>
<h3 dir="auto">Testcase Gist URL</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">Here's a minimally reproducible example which crashes with a stack overflow on 64bit windows:</p>
<p dir="auto"><a href="https://github.com/electron/electron/files/6572362/32bit-electron-demo.zip">32bit-electron-demo.zip</a></p>
<p dir="auto">To run:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm install --arch=ia32 electron
node_modules/.bin/electron main.js"><pre class="notranslate">npm install --arch=ia32 electron
node_modules/.bin/electron main.js</pre></div>
<p dir="auto">It can take up to 20s for the crash to happen.</p> | 0 |
<p dir="auto"><strong>Apache Airflow version</strong>:<br>
1.10.11</p>
<p dir="auto"><strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>):<br>
Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.6", GitCommit:"dff82dc0de47299ab66c83c626e08b245ab19037", GitTreeState:"clean", BuildDate:"2020-07-16T00:04:31Z", GoVersion:"go1.14.4", Compiler:"gc", Platform:"darwin/amd64"}<br>
Server Version: version.Info{Major:"1", Minor:"17", GitVersion:"v1.17.4", GitCommit:"8d8aa39598534325ad77120c120a22b3a990b5ea", GitTreeState:"clean", BuildDate:"2020-03-13T06:39:58Z", GoVersion:"go1.13.8", Compiler:"gc", Platform:"linux/amd64"}</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: Azure Kubernetes Service</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): Debian GNU/Linux 10 (buster)</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux airflow-web-65cb7d9cb8-qzcbv 4.15.0-1089-azure <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="92247084" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/99" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/99/hovercard" href="https://github.com/apache/airflow/pull/99">#99</a>~16.04.1-Ubuntu SMP Fri Jun 5 15:30:32 UTC 2020 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: Helm chart "stable/airflow"</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">After upgrading from 1.10.10 to 1.10.11 (and also with new installs of 1.10.11) there are some permission warnings in the webserver logs:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2020-08-14 22:19:30,022] {manager.py:545} WARNING - Refused to delete permission view, assoc with role exists XComModelView.can_add Admin
[2020-08-14 22:19:30,038] {manager.py:545} WARNING - Refused to delete permission view, assoc with role exists XComModelView.can_edit Admin"><pre class="notranslate"><code class="notranslate">[2020-08-14 22:19:30,022] {manager.py:545} WARNING - Refused to delete permission view, assoc with role exists XComModelView.can_add Admin
[2020-08-14 22:19:30,038] {manager.py:545} WARNING - Refused to delete permission view, assoc with role exists XComModelView.can_edit Admin
</code></pre></div>
<p dir="auto">It seems to be directly related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="649125466" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/9614" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/9614/hovercard" href="https://github.com/apache/airflow/pull/9614">#9614</a> that <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kaxil/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kaxil">@kaxil</a> introduced for 1.10.11 which removes the <code class="notranslate">can_add</code> and <code class="notranslate">can_edit</code> permissions from <code class="notranslate">XComModelView</code>, but Airflow can not delete the permissions from that view because relations to those permissions still exist on the "Admin" and "Op" roles.</p>
<p dir="auto">In more technical terms, the two permissions can't be deleted from <code class="notranslate">ab_permission_view</code> table because each have relations to both the Admin's and Op's role_ids in the <code class="notranslate">ab_permission_view_role</code> table.</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
No warnings with Airflow 1.10.11</p>
<p dir="auto"><strong>How to reproduce it</strong>:</p>
<ol dir="auto">
<li>Install 1.10.11</li>
<li>Either:
<ol dir="auto">
<li>View the logs of the webserver</li>
<li>Run any airflow CLI command, such as <code class="notranslate">airflow list_users</code> and view the outputted log messages</li>
</ol>
</li>
<li>After a few lines of the log you will see the warnings</li>
</ol>
<p dir="auto"><strong>Anything else we need to know</strong>:</p>
<p dir="auto">If those 4 role permissions are removed from the <code class="notranslate">ab_permission_view_role</code> table the warnings should stop. I think a migration needs to be added, or some logic that cleans up these role permissions is failing to do its job.</p> | <h3 dir="auto">Description</h3>
<p dir="auto">I don't believe backfilling (of data) is not well handled in Airflow at the moment.</p>
<p dir="auto">I believe the current backfill CLI command should have a UI component on the webserver - not the least as many deployments of Airflow doesn't expose a CLI interface to the users - only to admins.</p>
<p dir="auto">I would also like it to handle the following cases:</p>
<ol dir="auto">
<li>Backfill a DAG for execution dates where it has already run.</li>
</ol>
<ul dir="auto">
<li>This essentially is the same as clearing all DAG-runs between those dates. The current UI forces me to manually clear the runs, I can toggle "Future" or "Past", but nothing like a "Range Between".</li>
</ul>
<ol start="2" dir="auto">
<li>Backfill a TASK for execution dates where it has already run</li>
</ol>
<ul dir="auto">
<li>This is essentially the same as above, except instead of clearing the whole DAG, it would clear a task, and potentially all downstreams from that task. A common use case here is when a new task is added to an existing DAG and you want to re-trigger it for historical dates. Currently the new task will have no execution, but the DAG it was created into will have successful runs for those dates.</li>
</ul>
<ol start="3" dir="auto">
<li>The above, including execution dates where it has not run</li>
</ol>
<ul dir="auto">
<li>In both the above examples, specifying a start_date before pre-existing DAG runs should insert those DAG runs and execute them. It should also insert any missing dag-runs between the dates where it has already run, in case those have gone missing.</li>
</ul>
<p dir="auto">I'd be happy to provide some of the functionality in a PR, but I am not a skilled frontend developer.</p>
<h3 dir="auto">Use case/motivation</h3>
<p dir="auto">Altering a DAG or task is a common use-case, for instance if an improvement to some business logic has been made - or a bug has been found and fixed. Restoring the status of those produced datasets easily is then important.</p>
<p dir="auto">Here's both the case where you want to re-run DAG executions, and insert new DAG executions for historical dates that may have been cleaned up to save space in the DB.</p>
<h3 dir="auto">Related issues</h3>
<p dir="auto">I am certain this has been raised and discussed in the past. It is the number one feature I miss from working with Luigi - where I could easily re-trigger historical task-runs.</p>
<h3 dir="auto">Are you willing to submit a PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | 0 |
<ol dir="auto">
<li>Go to Settings / Keybindings</li>
<li>Right click any option in the table</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.199.0<br>
<strong>System</strong>: Microsoft Windows 8.1<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Cannot find module './context-menu'<br>
Error: Cannot find module './context-menu'<br>
at Function.Module._resolveFilename (module.js:328:15)<br>
at Function.Module._load (module.js:270:25)<br>
at Module.require (module.js:357:17)<br>
at require (module.js:376:17)<br>
at BrowserWindow. (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\browser\atom-window.js:152:27)<br>
at emitOne (events.js:77:13)<br>
at BrowserWindow.emit (events.js:166:7)<br>
at callFunction (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br>
at emitMany (events.js:108:13)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
"><pre class="notranslate"><code class="notranslate">At C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\X\AppData\Local\atom\app-0.199.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -0:35.2.0 application:add-project-folder (atom-text-editor.editor.is-focused)
-0:25.4.0 settings-view:open (atom-text-editor.editor.is-focused)
2x -0:04.6.0 fuzzy-finder:toggle-buffer-finder (table.native-key-bindings.table.text)"><pre class="notranslate"><code class="notranslate"> -0:35.2.0 application:add-project-folder (atom-text-editor.editor.is-focused)
-0:25.4.0 settings-view:open (atom-text-editor.editor.is-focused)
2x -0:04.6.0 fuzzy-finder:toggle-buffer-finder (table.native-key-bindings.table.text)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"themes": [
"one-dark-ui",
"atom-dark-syntax"
],
"disabledPackages": [
"open-last-project"
]
},
"editor": {
"invisibles": {},
"showIndentGuide": true,
"tabLength": 4,
"fontSize": 15
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"themes"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>one-dark-ui<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>atom-dark-syntax<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"disabledPackages"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>open-last-project<span class="pl-pds">"</span></span>
]
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"invisibles"</span>: {},
<span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"tabLength"</span>: <span class="pl-c1">4</span>,
<span class="pl-ent">"fontSize"</span>: <span class="pl-c1">15</span>
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
highlight-selected, v0.9.3
symbols-tree-view, v0.9.2
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
highlight<span class="pl-k">-</span>selected, v0.<span class="pl-ii">9</span>.<span class="pl-ii">3</span>
symbols<span class="pl-k">-</span>tree<span class="pl-k">-</span>view, v0.<span class="pl-ii">9</span>.<span class="pl-ii">2</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | <p dir="auto">I right-clicked on a folder in the tree view</p>
<p dir="auto"><strong>Atom Version</strong>: 0.194.0<br>
<strong>System</strong>: Windows 7 Entreprise<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Cannot find module './context-menu'<br>
Error: Cannot find module './context-menu'<br>
at Function.Module._resolveFilename (module.js:328:15)<br>
at Function.Module._load (module.js:270:25)<br>
at Module.require (module.js:357:17)<br>
at require (module.js:376:17)<br>
at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br>
at emitOne (events.js:77:13)<br>
at BrowserWindow.emit (events.js:166:7)<br>
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br>
at emitMany (events.js:108:13)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
"><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"ignoredNames": [
"node_modules"
],
"themes": [
"atom-dark-ui",
"seti-syntax"
],
"disabledPackages": [
"Tern"
],
"projectHome": "Y:\\app-tfoumax"
},
"editor": {
"invisibles": {},
"softWrap": true,
"showIndentGuide": true
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"ignoredNames"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"themes"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"disabledPackages"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span>
],
<span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"invisibles"</span>: {},
<span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>,
<span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
autocomplete-plus, v2.12.0
autocomplete-snippets, v1.2.0
javascript-snippets, v1.0.0
jshint, v1.3.5
language-ejs, v0.1.0
linter, v0.12.1
pretty-json, v0.3.3
save-session, v0.14.0
Search, v0.4.0
seti-syntax, v0.4.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span>
autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span>
javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span>
jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span>
language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span>
pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span>
save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span>
Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | 1 |
<p dir="auto">After upgrading to vue 1.0.11 I am still experiencing the same class attribute merging problems as in previous versions.</p>
<p dir="auto">This is a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="119706579" data-permission-text="Title is private" data-url="https://github.com/vuejs/vue/issues/1946" data-hovercard-type="issue" data-hovercard-url="/vuejs/vue/issues/1946/hovercard" href="https://github.com/vuejs/vue/issues/1946">#1946</a>.</p> | <h3 dir="auto">What problem does this feature solve?</h3>
<p dir="auto">See <a href="https://babeljs.io/docs/en/babel-plugin-transform-react-jsx" rel="nofollow">https://babeljs.io/docs/en/babel-plugin-transform-react-jsx</a> for more details.</p>
<p dir="auto">We can have a better JSX experience.</p>
<p dir="auto">Even we can process all the directives/ref/slot features with vue/jsx functions.</p>
<p dir="auto">Transform original <code class="notranslate">jsx(...)</code> input to <code class="notranslate">vue.h(...)</code></p>
<h3 dir="auto">What does the proposed API look like?</h3>
<p dir="auto">In:</p>
<div class="highlight highlight-source-tsx notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/** @jsxImportSource vue */
const profile = (
<div>
<img src="avatar.png" class="profile" />
<h3>{[user.firstName, user.lastName].join(" ")}</h3>
</div>
)"><pre class="notranslate"><span class="pl-c">/** <span class="pl-k">@jsxImportSource</span> vue */</span>
<span class="pl-k">const</span> <span class="pl-s1">profile</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">div</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">img</span> <span class="pl-c1">src</span><span class="pl-c1">=</span><span class="pl-s">"avatar.png"</span> <span class="pl-c1">class</span><span class="pl-c1">=</span><span class="pl-s">"profile"</span> <span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">h3</span><span class="pl-c1">></span><span class="pl-kos">{</span><span class="pl-kos">[</span><span class="pl-s1">user</span><span class="pl-kos">.</span><span class="pl-c1">firstName</span><span class="pl-kos">,</span> <span class="pl-s1">user</span><span class="pl-kos">.</span><span class="pl-c1">lastName</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s">" "</span><span class="pl-kos">)</span><span class="pl-kos">}</span><span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">h3</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></pre></div>
<p dir="auto">Out:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { jsx as _jsx } from "vue/jsx-runtime";
import { jsxs as _jsxs } from "vue/jsx-runtime";
const profile = _jsxs("div", {
children: [
_jsx("img", {
src: "avatar.png",
class: "profile",
}),
_jsx("h3", {
children: [user.firstName, user.lastName].join(" "),
}),
],
});"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">jsx</span> <span class="pl-k">as</span> <span class="pl-s1">_jsx</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"vue/jsx-runtime"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">jsxs</span> <span class="pl-k">as</span> <span class="pl-s1">_jsxs</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"vue/jsx-runtime"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">profile</span> <span class="pl-c1">=</span> <span class="pl-en">_jsxs</span><span class="pl-kos">(</span><span class="pl-s">"div"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">children</span>: <span class="pl-kos">[</span>
<span class="pl-en">_jsx</span><span class="pl-kos">(</span><span class="pl-s">"img"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">src</span>: <span class="pl-s">"avatar.png"</span><span class="pl-kos">,</span>
<span class="pl-c1">class</span>: <span class="pl-s">"profile"</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-en">_jsx</span><span class="pl-kos">(</span><span class="pl-s">"h3"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">children</span>: <span class="pl-kos">[</span><span class="pl-s1">user</span><span class="pl-kos">.</span><span class="pl-c1">firstName</span><span class="pl-kos">,</span> <span class="pl-s1">user</span><span class="pl-kos">.</span><span class="pl-c1">lastName</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s">" "</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">When I debug the app using vscode, the app is trying to launch but it fails so I should run it manually by clicking on launcher icon in my mobile.<br>
The app is just the hello world app of flutter.</p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +70 ms] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git rev-parse --abbrev-ref --symbolic @{u}
[ +83 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git rev-parse --abbrev-ref HEAD
[ +30 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ +1 ms] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git ls-remote --get-url origin
[ +29 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git log -n 1 --pretty=format:%H
[ +34 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 44b7e7d3f42f050a79712daab253af06e9daf530
[ ] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git log -n 1 --pretty=format:%ar
[ +29 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 4 weeks ago
[ +1 ms] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git describe --match v*.*.* --first-parent --long --tags
[ +34 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.3.2-0-g44b7e7d3f
[ +749 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb devices -l
[ +45 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb devices -l
[ +5 ms] List of devices attached
LC57JY640346 device product:a31mg_dug_htc_europe model:HTC_Desire_620G_dual_sim device:htc_a31mg_dug transport_id:2
[ +317 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell getprop
[ +137 ms] ro.hardware = mt6592
[ ] ro.build.characteristics = default
[ +939 ms] Launching lib/main.dart on HTC Desire 620G dual sim in debug mode...
[ +8 ms] Initializing gradle...
[ ] Using gradle from c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat.
[+1505 ms] c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat -v
[+1569 ms]
------------------------------------------------------------
Gradle 4.1
------------------------------------------------------------
Build time: 2017-08-07 14:38:48 UTC
Revision: 941559e020f6c357ebb08d5c67acdb858a3defc2
Groovy: 2.4.11
Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b02)
OS: Windows 10 10.0 amd64
[ +4 ms] Resolving dependencies...
[ ] [android\] c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat app:properties
[+5330 ms] :app:properties
------------------------------------------------------------
Project :app
------------------------------------------------------------
allprojects: [project ':app']
android: com.android.build.gradle.AppExtension_Decorated@2422796c
androidDependencies: task ':app:androidDependencies'
ant: org.gradle.api.internal.project.DefaultAntBuilder@1e30a288
antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@399c7b99
archivesBaseName: app
artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@52706ebd
asDynamicObject: DynamicObject for project ':app'
assemble: task ':app:assemble'
assembleAndroidTest: task ':app:assembleAndroidTest'
assembleDebug: task ':app:assembleDebug'
assembleDebugAndroidTest: task ':app:assembleDebugAndroidTest'
assembleDebugUnitTest: task ':app:assembleDebugUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@65ae8486
buildDependents: task ':app:buildDependents'
buildDir: C:\Users\MM\Desktop\first_flutter_app\build\app
buildFile: C:\Users\MM\Desktop\first_flutter_app\android\app\build.gradle
buildNeeded: task ':app:buildNeeded'
buildOutputs: BaseVariantOutput container
buildScriptSource: org.gradle.groovy.scripts.UriScriptSource@7e915e59
buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@240bb2a1 bundleAppClassesDebug: task ':app:bundleAppClassesDebug'
bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest'
bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest'
bundleAppClassesProfile: task ':app:bundleAppClassesProfile'
bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest'
bundleAppClassesRelease: task ':app:bundleAppClassesRelease'
bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest'
check: task ':app:check'
checkDebugManifest: task ':app:checkDebugManifest'
checkProfileManifest: task ':app:checkProfileManifest'
checkReleaseManifest: task ':app:checkReleaseManifest'
childProjects: {}
class: class org.gradle.api.internal.project.DefaultProject_Decorated
classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@755f351b
cleanBuildCache: task ':app:cleanBuildCache'
compileDebugAidl: task ':app:compileDebugAidl'
compileDebugAndroidTestAidl: task ':app:compileDebugAndroidTestAidl'
compileDebugAndroidTestJavaWithJavac: task ':app:compileDebugAndroidTestJavaWithJavac'
compileDebugAndroidTestNdk: task ':app:compileDebugAndroidTestNdk'
compileDebugAndroidTestRenderscript: task ':app:compileDebugAndroidTestRenderscript'
compileDebugAndroidTestShaders: task ':app:compileDebugAndroidTestShaders'
compileDebugAndroidTestSources: task ':app:compileDebugAndroidTestSources'
compileDebugJavaWithJavac: task ':app:compileDebugJavaWithJavac'
compileDebugNdk: task ':app:compileDebugNdk'
compileDebugRenderscript: task ':app:compileDebugRenderscript'
compileDebugShaders: task ':app:compileDebugShaders'
compileDebugSources: task ':app:compileDebugSources'
compileDebugUnitTestJavaWithJavac: task ':app:compileDebugUnitTestJavaWithJavac'
compileDebugUnitTestSources: task ':app:compileDebugUnitTestSources'
compileLint: task ':app:compileLint'
compileProfileAidl: task ':app:compileProfileAidl'
compileProfileJavaWithJavac: task ':app:compileProfileJavaWithJavac'
compileProfileNdk: task ':app:compileProfileNdk'
compileProfileRenderscript: task ':app:compileProfileRenderscript'
compileProfileShaders: task ':app:compileProfileShaders'
compileProfileSources: task ':app:compileProfileSources'
compileProfileUnitTestJavaWithJavac: task ':app:compileProfileUnitTestJavaWithJavac'
compileProfileUnitTestSources: task ':app:compileProfileUnitTestSources'
compileReleaseAidl: task ':app:compileReleaseAidl'
compileReleaseJavaWithJavac: task ':app:compileReleaseJavaWithJavac'
compileReleaseNdk: task ':app:compileReleaseNdk'
compileReleaseRenderscript: task ':app:compileReleaseRenderscript'
compileReleaseShaders: task ':app:compileReleaseShaders'
compileReleaseSources: task ':app:compileReleaseSources'
compileReleaseUnitTestJavaWithJavac: task ':app:compileReleaseUnitTestJavaWithJavac'
compileReleaseUnitTestSources: task ':app:compileReleaseUnitTestSources'
components: SoftwareComponentInternal set
configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@64440582
configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@1053ecc5
configurations: configuration container
connectedAndroidTest: task ':app:connectedAndroidTest'
connectedCheck: task ':app:connectedCheck'
connectedDebugAndroidTest: task ':app:connectedDebugAndroidTest'
consumeConfigAttr: task ':app:consumeConfigAttr'
convention: org.gradle.api.internal.plugins.DefaultConvention@69b4dad4
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests'
createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests'
defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@65cfdd14
defaultTasks: []
deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@2163ac3a
dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@2e594917
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\distributions
distsDirName: distributions
docsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\docs
docsDirName: docs
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@61744472
extensions: org.gradle.api.internal.plugins.DefaultConvention@69b4dad4
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations: org.gradle.api.internal.file.DefaultFileOperations@7a480235
fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@46f6633a
flutter: FlutterExtension_Decorated@22838b02
flutterBuildDebug: task ':app:flutterBuildDebug'
flutterBuildProfile: task ':app:flutterBuildProfile'
flutterBuildRelease: task ':app:flutterBuildRelease'
flutterBuildX86Jar: task ':app:flutterBuildX86Jar'
generateDebugAndroidTestAssets: task ':app:generateDebugAndroidTestAssets'
generateDebugAndroidTestBuildConfig: task ':app:generateDebugAndroidTestBuildConfig'
generateDebugAndroidTestResValues: task ':app:generateDebugAndroidTestResValues'
generateDebugAndroidTestResources: task ':app:generateDebugAndroidTestResources'
generateDebugAndroidTestSources: task ':app:generateDebugAndroidTestSources'
generateDebugAssets: task ':app:generateDebugAssets'
generateDebugBuildConfig: task ':app:generateDebugBuildConfig'
generateDebugResValues: task ':app:generateDebugResValues'
generateDebugResources: task ':app:generateDebugResources'
generateDebugSources: task ':app:generateDebugSources'
generateProfileAssets: task ':app:generateProfileAssets'
generateProfileBuildConfig: task ':app:generateProfileBuildConfig'
generateProfileResValues: task ':app:generateProfileResValues'
generateProfileResources: task ':app:generateProfileResources'
generateProfileSources: task ':app:generateProfileSources'
generateReleaseAssets: task ':app:generateReleaseAssets'
generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig'
generateReleaseResValues: task ':app:generateReleaseResValues'
generateReleaseResources: task ':app:generateReleaseResources'
generateReleaseSources: task ':app:generateReleaseSources'
gradle: build 'android'
group: android
identityPath: :app
inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@61970cf4
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest'
layout: org.gradle.api.internal.file.DefaultProjectLayout@5b74f359
libsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@6639bae5
logging: org.gradle.internal.logging.services.DefaultLoggingManager@2e6eb4be
mergeDebugAndroidTestAssets: task ':app:mergeDebugAndroidTestAssets'
mergeDebugAndroidTestJniLibFolders: task ':app:mergeDebugAndroidTestJniLibFolders'
mergeDebugAndroidTestResources: task ':app:mergeDebugAndroidTestResources'
mergeDebugAndroidTestShaders: task ':app:mergeDebugAndroidTestShaders'
mergeDebugAssets: task ':app:mergeDebugAssets'
mergeDebugJniLibFolders: task ':app:mergeDebugJniLibFolders'
mergeDebugResources: task ':app:mergeDebugResources'
mergeDebugShaders: task ':app:mergeDebugShaders'
mergeProfileAssets: task ':app:mergeProfileAssets'
mergeProfileJniLibFolders: task ':app:mergeProfileJniLibFolders'
mergeProfileResources: task ':app:mergeProfileResources'
mergeProfileShaders: task ':app:mergeProfileShaders'
mergeReleaseAssets: task ':app:mergeReleaseAssets'
mergeReleaseJniLibFolders: task ':app:mergeReleaseJniLibFolders'
mergeReleaseResources: task ':app:mergeReleaseResources'
mergeReleaseShaders: task ':app:mergeReleaseShaders'
mockableAndroidJar: task ':app:mockableAndroidJar'
modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@108bf1ea
modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@4dea09f3
module: org.gradle.api.internal.artifacts.ProjectBackedModule@280c8609
name: app
normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@49a2afa3
objects: org.gradle.api.internal.model.DefaultObjectFactory@2adc06d2
org.gradle.jvmargs: -Xmx1536M
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageProfile: task ':app:packageProfile'
packageRelease: task ':app:packageRelease'
parent: root project 'android'
parentIdentifier: root project 'android'
path: :app
platformAttrExtractor: task ':app:platformAttrExtractor'
pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@353063f5
plugins: [org.gradle.api.plugins.HelpTasksPlugin@4b6902cb, com.android.build.gradle.api.AndroidBasePlugin@eeb58aa, org.gradle.language.base.plugins.LifecycleBasePlugin@1bbc0eb, org.gradle.api.plugins.BasePlugin@434c73a2, org.gradle.api.plugins.ReportingBasePlugin@7cd9777f, org.gradle.platform.base.plugins.ComponentBasePlugin@6bf69f3c, org.gradle.language.base.plugins.LanguageBasePlugin@5c237fb2, org.gradle.platform.base.plugins.BinaryBasePlugin@d78a0c5, org.gradle.api.plugins.JavaBasePlugin@bf11978, com.android.build.gradle.internal.coverage.JacocoPlugin@ef89e96, com.android.build.gradle.AppPlugin@2dd3edc0, FlutterPlugin@47dda64e]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preProfileBuild: task ':app:preProfileBuild'
preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild'
preReleaseBuild: task ':app:preReleaseBuild'
preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild'
prepareLintJar: task ':app:prepareLintJar'
processDebugAndroidTestJavaRes: task ':app:processDebugAndroidTestJavaRes'
processDebugAndroidTestManifest: task ':app:processDebugAndroidTestManifest'
processDebugAndroidTestResources: task ':app:processDebugAndroidTestResources'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task ':app:processDebugUnitTestJavaRes'
processOperations: org.gradle.api.internal.file.DefaultFileOperations@7a480235
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task ':app:processProfileUnitTestJavaRes'
processReleaseJavaRes: task ':app:processReleaseJavaRes'
processReleaseManifest: task ':app:processReleaseManifest'
processReleaseResources: task ':app:processReleaseResources'
processReleaseUnitTestJavaRes: task ':app:processReleaseUnitTestJavaRes'
project: project ':app'
projectConfigurator: org.gradle.api.internal.project.BuildOperationCrossProjectConfigurator@6ea0faa9
projectDir: C:\Users\MM\Desktop\first_flutter_app\android\app
projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@21eb4236
projectPath: :app
projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@7de83e1f
properties: {...}
providers: org.gradle.api.internal.provider.DefaultProviderFactory@4c91674b
reporting: org.gradle.api.reporting.ReportingExtension_Decorated@4bf1d59c
reportsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resources: org.gradle.api.internal.resources.DefaultResourceHandler@226d1bf9
rootDir: C:\Users\MM\Desktop\first_flutter_app\android
rootProject: root project 'android'
scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@596c0770
scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@6548d284
serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@20d0b684
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskDebugAndroidTest: task ':app:splitsDiscoveryTaskDebugAndroidTest'
splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease'
standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@2e6eb4be
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir: C:\Users\MM\Desktop\first_flutter_app\build\app\reports\tests
testReportDirName: tests
testResultsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile'
transformClassesWithPreDexForRelease: task ':app:transformClassesWithPreDexForRelease'
transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'
transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile'
transformDexWithDexForRelease: task ':app:transformDexWithDexForRelease'
transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest'
transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease'
transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForProfile: task ':app:transformResourcesWithMergeJavaResForProfile'
transformResourcesWithMergeJavaResForProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForProfileUnitTest'
transformResourcesWithMergeJavaResForRelease: task ':app:transformResourcesWithMergeJavaResForRelease'
transformResourcesWithMergeJavaResForReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForReleaseUnitTest'
uninstallAll: task ':app:uninstallAll'
uninstallDebug: task ':app:uninstallDebug'
uninstallDebugAndroidTest: task ':app:uninstallDebugAndroidTest'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeProfileApplicationId: task ':app:writeProfileApplicationId'
writeReleaseApplicationId: task ':app:writeReleaseApplicationId'
BUILD SUCCESSFUL in 4s
1 actionable task: 1 executed
[ +24 ms] C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +125 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +1 ms] package: name='com.example.firstflutterapp' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
application-label:'first_flutter_app'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='first_flutter_app' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='com.example.firstflutterapp.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--'
densities: '160' '240' '320' '480' '640'
native-code: 'armeabi-v7a' 'x86' 'x86_64'
[ +9 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 logcat -v time -t 1
[ +112 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 logcat -v time -t 1
[ +1 ms] --------- beginning of /dev/log/system
--------- beginning of /dev/log/main
05-20 01:38:37.624 W/ADB_SERVICES(14002): adb: unable to open /proc/14002/oom_adj
[ +4 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 logcat -v time
[ +851 ms] DependencyChecker: nothing is modified after 2018-05-20 01:33:58.000.
[ +18 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb version
[ +55 ms] Android Debug Bridge version 1.0.39
Version 0.0.1-4500957
Installed as C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb.EXE
[ +4 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb start-server
[ +58 ms] Building APK
[ +9 ms] Running 'gradlew assembleDebug'...
[ +5 ms] [android\] c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat -Ptarget=c:\Users\MM\Desktop\first_flutter_app\lib/main.dart -Ppreview-dart-2=true -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+23101 ms] :app:preBuild UP-TO-DATE
[ +7 ms] :app:preDebugBuild UP-TO-DATE
[ +13 ms] :app:compileDebugAidl UP-TO-DATE
[ +2 ms] :app:compileDebugRenderscript UP-TO-DATE
[ +6 ms] :app:flutterBuildX86Jar UP-TO-DATE
[ +9 ms] :app:checkDebugManifest UP-TO-DATE
[ +4 ms] :app:generateDebugBuildConfig UP-TO-DATE
[ +1 ms] :app:prepareLintJar UP-TO-DATE
[ +63 ms] :app:cleanMergeDebugAssets
[ +180 ms] :app:flutterBuildDebug UP-TO-DATE
[ +12 ms] :app:mergeDebugShaders UP-TO-DATE
[ ] :app:compileDebugShaders UP-TO-DATE
[ ] :app:generateDebugAssets UP-TO-DATE
[ +28 ms] :app:mergeDebugAssets
[+2440 ms] :app:copyFlutterAssetsDebug
[ +33 ms] :app:generateDebugResValues UP-TO-DATE
[ +3 ms] :app:generateDebugResources UP-TO-DATE
[ +28 ms] :app:mergeDebugResources UP-TO-DATE
[ ] :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] :app:processDebugManifest UP-TO-DATE
[ ] :app:splitsDiscoveryTaskDebug UP-TO-DATE
[ ] :app:processDebugResources UP-TO-DATE
[ ] :app:generateDebugSources UP-TO-DATE
[ +54 ms] :app:javaPreCompileDebug UP-TO-DATE
[ +20 ms] :app:compileDebugJavaWithJavac UP-TO-DATE
[ +8 ms] :app:compileDebugNdk NO-SOURCE
[ ] :app:compileDebugSources UP-TO-DATE
[ +1 ms] :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[ +8 ms] :app:transformDexArchiveWithExternalLibsDexMergerForDebug UP-TO-DATE
[ +9 ms] :app:transformDexArchiveWithDexMergerForDebug UP-TO-DATE
[ +13 ms] :app:mergeDebugJniLibFolders UP-TO-DATE
[ +10 ms] :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ ] :app:processDebugJavaRes NO-SOURCE
[ +8 ms] :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ +1 ms] :app:validateSigningDebug
[ +17 ms] :app:packageDebug UP-TO-DATE
[ +1 ms] :app:assembleDebug UP-TO-DATE
[ ] BUILD SUCCESSFUL in 24s
[ ] 29 actionable tasks: 4 executed, 25 up-to-date
[ +648 ms] calculateSha: C:\Users\MM\Desktop\first_flutter_app\build\app\outputs\apk/app.apk
[+1525 ms] Built build\app\outputs\apk\debug\app-debug.apk (30.4MB).
[ +2 ms] C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +66 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ ] package: name='com.example.firstflutterapp' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
application-label:'first_flutter_app'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='first_flutter_app' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='com.example.firstflutterapp.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--'
densities: '160' '240' '320' '480' '640'
native-code: 'armeabi-v7a' 'x86' 'x86_64'
[ ] Stopping app 'app.apk' on HTC Desire 620G dual sim.
[ ] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell am force-stop com.example.firstflutterapp
[+1311 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell pm list packages com.example.firstflutterapp
[ +835 ms] package:com.example.firstflutterapp
[ +4 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell cat /data/local/tmp/sky.com.example.firstflutterapp.sha1
[ +37 ms] 7bd3ec29885cfaa329e0aa20cb72059692e38ea1
[ +1 ms] Latest build already installed.
[ ] HTC Desire 620G dual sim startApp
[ +2 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true com.example.firstflutterapp/com.example.firstflutterapp.MainActivity
[ +752 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.firstflutterapp/.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[+1279 ms] E/DartVM (14116): ../../third_party/dart/runtime/vm/object.cc: 21914: error: Fatal error in Array::New: invalid len 803234264
[ +1 ms] E/DartVM (14116):
[ ] E/DartVM (14116): Dumping native stack trace for thread 3732
[ ] E/DartVM (14116): [0x611d22c1] Unknown symbol
[ ] E/DartVM (14116): [0x611d22c1] Unknown symbol
[ ] E/DartVM (14116): -- End of DumpStackTrace
[+11443 ms] E/DartVM (14186): 'dart:typed_data/runtime/libtyped_data_patch.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
[ +2 ms] E/DartVM (14186): ../../third_party/dart/runtime/vm/compiler/intrinsifier.cc: 120: error: Intrinsifier failed to find method [] in class _Uint8List
[ ] E/DartVM (14186):
[ ] E/DartVM (14186): Dumping native stack trace for thread 3778
[ ] E/DartVM (14186): [0x611d12c1] Unknown symbol
[ ] E/DartVM (14186): [0x611d12c1] Unknown symbol
[ ] E/DartVM (14186): -- End of DumpStackTrace
[ ] E/DartVM (14186): ../../third_party/dart/runtime/vm/object.cc: 5329: error: Fatal error
in TypeArguments::New: invalid len 588070928
[ ] E/DartVM (14186):
[ ] E/DartVM (14186): Aborting re-entrant request for stack trace.
"><pre class="notranslate"><code class="notranslate">[ +70 ms] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git rev-parse --abbrev-ref --symbolic @{u}
[ +83 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git rev-parse --abbrev-ref HEAD
[ +30 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ +1 ms] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git ls-remote --get-url origin
[ +29 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git log -n 1 --pretty=format:%H
[ +34 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 44b7e7d3f42f050a79712daab253af06e9daf530
[ ] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git log -n 1 --pretty=format:%ar
[ +29 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 4 weeks ago
[ +1 ms] [D:\Benchmark Creative Labs\Flutter\source\flutter\] git describe --match v*.*.* --first-parent --long --tags
[ +34 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.3.2-0-g44b7e7d3f
[ +749 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb devices -l
[ +45 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb devices -l
[ +5 ms] List of devices attached
LC57JY640346 device product:a31mg_dug_htc_europe model:HTC_Desire_620G_dual_sim device:htc_a31mg_dug transport_id:2
[ +317 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell getprop
[ +137 ms] ro.hardware = mt6592
[ ] ro.build.characteristics = default
[ +939 ms] Launching lib/main.dart on HTC Desire 620G dual sim in debug mode...
[ +8 ms] Initializing gradle...
[ ] Using gradle from c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat.
[+1505 ms] c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat -v
[+1569 ms]
------------------------------------------------------------
Gradle 4.1
------------------------------------------------------------
Build time: 2017-08-07 14:38:48 UTC
Revision: 941559e020f6c357ebb08d5c67acdb858a3defc2
Groovy: 2.4.11
Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015
JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b02)
OS: Windows 10 10.0 amd64
[ +4 ms] Resolving dependencies...
[ ] [android\] c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat app:properties
[+5330 ms] :app:properties
------------------------------------------------------------
Project :app
------------------------------------------------------------
allprojects: [project ':app']
android: com.android.build.gradle.AppExtension_Decorated@2422796c
androidDependencies: task ':app:androidDependencies'
ant: org.gradle.api.internal.project.DefaultAntBuilder@1e30a288
antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@399c7b99
archivesBaseName: app
artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@52706ebd
asDynamicObject: DynamicObject for project ':app'
assemble: task ':app:assemble'
assembleAndroidTest: task ':app:assembleAndroidTest'
assembleDebug: task ':app:assembleDebug'
assembleDebugAndroidTest: task ':app:assembleDebugAndroidTest'
assembleDebugUnitTest: task ':app:assembleDebugUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@65ae8486
buildDependents: task ':app:buildDependents'
buildDir: C:\Users\MM\Desktop\first_flutter_app\build\app
buildFile: C:\Users\MM\Desktop\first_flutter_app\android\app\build.gradle
buildNeeded: task ':app:buildNeeded'
buildOutputs: BaseVariantOutput container
buildScriptSource: org.gradle.groovy.scripts.UriScriptSource@7e915e59
buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@240bb2a1 bundleAppClassesDebug: task ':app:bundleAppClassesDebug'
bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest'
bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest'
bundleAppClassesProfile: task ':app:bundleAppClassesProfile'
bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest'
bundleAppClassesRelease: task ':app:bundleAppClassesRelease'
bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest'
check: task ':app:check'
checkDebugManifest: task ':app:checkDebugManifest'
checkProfileManifest: task ':app:checkProfileManifest'
checkReleaseManifest: task ':app:checkReleaseManifest'
childProjects: {}
class: class org.gradle.api.internal.project.DefaultProject_Decorated
classLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@755f351b
cleanBuildCache: task ':app:cleanBuildCache'
compileDebugAidl: task ':app:compileDebugAidl'
compileDebugAndroidTestAidl: task ':app:compileDebugAndroidTestAidl'
compileDebugAndroidTestJavaWithJavac: task ':app:compileDebugAndroidTestJavaWithJavac'
compileDebugAndroidTestNdk: task ':app:compileDebugAndroidTestNdk'
compileDebugAndroidTestRenderscript: task ':app:compileDebugAndroidTestRenderscript'
compileDebugAndroidTestShaders: task ':app:compileDebugAndroidTestShaders'
compileDebugAndroidTestSources: task ':app:compileDebugAndroidTestSources'
compileDebugJavaWithJavac: task ':app:compileDebugJavaWithJavac'
compileDebugNdk: task ':app:compileDebugNdk'
compileDebugRenderscript: task ':app:compileDebugRenderscript'
compileDebugShaders: task ':app:compileDebugShaders'
compileDebugSources: task ':app:compileDebugSources'
compileDebugUnitTestJavaWithJavac: task ':app:compileDebugUnitTestJavaWithJavac'
compileDebugUnitTestSources: task ':app:compileDebugUnitTestSources'
compileLint: task ':app:compileLint'
compileProfileAidl: task ':app:compileProfileAidl'
compileProfileJavaWithJavac: task ':app:compileProfileJavaWithJavac'
compileProfileNdk: task ':app:compileProfileNdk'
compileProfileRenderscript: task ':app:compileProfileRenderscript'
compileProfileShaders: task ':app:compileProfileShaders'
compileProfileSources: task ':app:compileProfileSources'
compileProfileUnitTestJavaWithJavac: task ':app:compileProfileUnitTestJavaWithJavac'
compileProfileUnitTestSources: task ':app:compileProfileUnitTestSources'
compileReleaseAidl: task ':app:compileReleaseAidl'
compileReleaseJavaWithJavac: task ':app:compileReleaseJavaWithJavac'
compileReleaseNdk: task ':app:compileReleaseNdk'
compileReleaseRenderscript: task ':app:compileReleaseRenderscript'
compileReleaseShaders: task ':app:compileReleaseShaders'
compileReleaseSources: task ':app:compileReleaseSources'
compileReleaseUnitTestJavaWithJavac: task ':app:compileReleaseUnitTestJavaWithJavac'
compileReleaseUnitTestSources: task ':app:compileReleaseUnitTestSources'
components: SoftwareComponentInternal set
configurationActions: org.gradle.configuration.project.DefaultProjectConfigurationActionContainer@64440582
configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@1053ecc5
configurations: configuration container
connectedAndroidTest: task ':app:connectedAndroidTest'
connectedCheck: task ':app:connectedCheck'
connectedDebugAndroidTest: task ':app:connectedDebugAndroidTest'
consumeConfigAttr: task ':app:consumeConfigAttr'
convention: org.gradle.api.internal.plugins.DefaultConvention@69b4dad4
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests'
createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests'
defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@65cfdd14
defaultTasks: []
deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@2163ac3a
dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@2e594917
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\distributions
distsDirName: distributions
docsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\docs
docsDirName: docs
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@61744472
extensions: org.gradle.api.internal.plugins.DefaultConvention@69b4dad4
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations: org.gradle.api.internal.file.DefaultFileOperations@7a480235
fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@46f6633a
flutter: FlutterExtension_Decorated@22838b02
flutterBuildDebug: task ':app:flutterBuildDebug'
flutterBuildProfile: task ':app:flutterBuildProfile'
flutterBuildRelease: task ':app:flutterBuildRelease'
flutterBuildX86Jar: task ':app:flutterBuildX86Jar'
generateDebugAndroidTestAssets: task ':app:generateDebugAndroidTestAssets'
generateDebugAndroidTestBuildConfig: task ':app:generateDebugAndroidTestBuildConfig'
generateDebugAndroidTestResValues: task ':app:generateDebugAndroidTestResValues'
generateDebugAndroidTestResources: task ':app:generateDebugAndroidTestResources'
generateDebugAndroidTestSources: task ':app:generateDebugAndroidTestSources'
generateDebugAssets: task ':app:generateDebugAssets'
generateDebugBuildConfig: task ':app:generateDebugBuildConfig'
generateDebugResValues: task ':app:generateDebugResValues'
generateDebugResources: task ':app:generateDebugResources'
generateDebugSources: task ':app:generateDebugSources'
generateProfileAssets: task ':app:generateProfileAssets'
generateProfileBuildConfig: task ':app:generateProfileBuildConfig'
generateProfileResValues: task ':app:generateProfileResValues'
generateProfileResources: task ':app:generateProfileResources'
generateProfileSources: task ':app:generateProfileSources'
generateReleaseAssets: task ':app:generateReleaseAssets'
generateReleaseBuildConfig: task ':app:generateReleaseBuildConfig'
generateReleaseResValues: task ':app:generateReleaseResValues'
generateReleaseResources: task ':app:generateReleaseResources'
generateReleaseSources: task ':app:generateReleaseSources'
gradle: build 'android'
group: android
identityPath: :app
inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@61970cf4
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest'
layout: org.gradle.api.internal.file.DefaultProjectLayout@5b74f359
libsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@6639bae5
logging: org.gradle.internal.logging.services.DefaultLoggingManager@2e6eb4be
mergeDebugAndroidTestAssets: task ':app:mergeDebugAndroidTestAssets'
mergeDebugAndroidTestJniLibFolders: task ':app:mergeDebugAndroidTestJniLibFolders'
mergeDebugAndroidTestResources: task ':app:mergeDebugAndroidTestResources'
mergeDebugAndroidTestShaders: task ':app:mergeDebugAndroidTestShaders'
mergeDebugAssets: task ':app:mergeDebugAssets'
mergeDebugJniLibFolders: task ':app:mergeDebugJniLibFolders'
mergeDebugResources: task ':app:mergeDebugResources'
mergeDebugShaders: task ':app:mergeDebugShaders'
mergeProfileAssets: task ':app:mergeProfileAssets'
mergeProfileJniLibFolders: task ':app:mergeProfileJniLibFolders'
mergeProfileResources: task ':app:mergeProfileResources'
mergeProfileShaders: task ':app:mergeProfileShaders'
mergeReleaseAssets: task ':app:mergeReleaseAssets'
mergeReleaseJniLibFolders: task ':app:mergeReleaseJniLibFolders'
mergeReleaseResources: task ':app:mergeReleaseResources'
mergeReleaseShaders: task ':app:mergeReleaseShaders'
mockableAndroidJar: task ':app:mockableAndroidJar'
modelRegistry: org.gradle.model.internal.registry.DefaultModelRegistry@108bf1ea
modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@4dea09f3
module: org.gradle.api.internal.artifacts.ProjectBackedModule@280c8609
name: app
normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@49a2afa3
objects: org.gradle.api.internal.model.DefaultObjectFactory@2adc06d2
org.gradle.jvmargs: -Xmx1536M
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageProfile: task ':app:packageProfile'
packageRelease: task ':app:packageRelease'
parent: root project 'android'
parentIdentifier: root project 'android'
path: :app
platformAttrExtractor: task ':app:platformAttrExtractor'
pluginManager: org.gradle.api.internal.plugins.DefaultPluginManager_Decorated@353063f5
plugins: [org.gradle.api.plugins.HelpTasksPlugin@4b6902cb, com.android.build.gradle.api.AndroidBasePlugin@eeb58aa, org.gradle.language.base.plugins.LifecycleBasePlugin@1bbc0eb, org.gradle.api.plugins.BasePlugin@434c73a2, org.gradle.api.plugins.ReportingBasePlugin@7cd9777f, org.gradle.platform.base.plugins.ComponentBasePlugin@6bf69f3c, org.gradle.language.base.plugins.LanguageBasePlugin@5c237fb2, org.gradle.platform.base.plugins.BinaryBasePlugin@d78a0c5, org.gradle.api.plugins.JavaBasePlugin@bf11978, com.android.build.gradle.internal.coverage.JacocoPlugin@ef89e96, com.android.build.gradle.AppPlugin@2dd3edc0, FlutterPlugin@47dda64e]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preProfileBuild: task ':app:preProfileBuild'
preProfileUnitTestBuild: task ':app:preProfileUnitTestBuild'
preReleaseBuild: task ':app:preReleaseBuild'
preReleaseUnitTestBuild: task ':app:preReleaseUnitTestBuild'
prepareLintJar: task ':app:prepareLintJar'
processDebugAndroidTestJavaRes: task ':app:processDebugAndroidTestJavaRes'
processDebugAndroidTestManifest: task ':app:processDebugAndroidTestManifest'
processDebugAndroidTestResources: task ':app:processDebugAndroidTestResources'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task ':app:processDebugUnitTestJavaRes'
processOperations: org.gradle.api.internal.file.DefaultFileOperations@7a480235
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task ':app:processProfileUnitTestJavaRes'
processReleaseJavaRes: task ':app:processReleaseJavaRes'
processReleaseManifest: task ':app:processReleaseManifest'
processReleaseResources: task ':app:processReleaseResources'
processReleaseUnitTestJavaRes: task ':app:processReleaseUnitTestJavaRes'
project: project ':app'
projectConfigurator: org.gradle.api.internal.project.BuildOperationCrossProjectConfigurator@6ea0faa9
projectDir: C:\Users\MM\Desktop\first_flutter_app\android\app
projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@21eb4236
projectPath: :app
projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@7de83e1f
properties: {...}
providers: org.gradle.api.internal.provider.DefaultProviderFactory@4c91674b
reporting: org.gradle.api.reporting.ReportingExtension_Decorated@4bf1d59c
reportsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resources: org.gradle.api.internal.resources.DefaultResourceHandler@226d1bf9
rootDir: C:\Users\MM\Desktop\first_flutter_app\android
rootProject: root project 'android'
scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@596c0770
scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@6548d284
serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@20d0b684
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskDebugAndroidTest: task ':app:splitsDiscoveryTaskDebugAndroidTest'
splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease'
standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@2e6eb4be
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir: C:\Users\MM\Desktop\first_flutter_app\build\app\reports\tests
testReportDirName: tests
testResultsDir: C:\Users\MM\Desktop\first_flutter_app\build\app\test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile'
transformClassesWithPreDexForRelease: task ':app:transformClassesWithPreDexForRelease'
transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'
transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile'
transformDexWithDexForRelease: task ':app:transformDexWithDexForRelease'
transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest'
transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease'
transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForProfile: task ':app:transformResourcesWithMergeJavaResForProfile'
transformResourcesWithMergeJavaResForProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForProfileUnitTest'
transformResourcesWithMergeJavaResForRelease: task ':app:transformResourcesWithMergeJavaResForRelease'
transformResourcesWithMergeJavaResForReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForReleaseUnitTest'
uninstallAll: task ':app:uninstallAll'
uninstallDebug: task ':app:uninstallDebug'
uninstallDebugAndroidTest: task ':app:uninstallDebugAndroidTest'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeProfileApplicationId: task ':app:writeProfileApplicationId'
writeReleaseApplicationId: task ':app:writeReleaseApplicationId'
BUILD SUCCESSFUL in 4s
1 actionable task: 1 executed
[ +24 ms] C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +125 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +1 ms] package: name='com.example.firstflutterapp' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
application-label:'first_flutter_app'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='first_flutter_app' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='com.example.firstflutterapp.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--'
densities: '160' '240' '320' '480' '640'
native-code: 'armeabi-v7a' 'x86' 'x86_64'
[ +9 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 logcat -v time -t 1
[ +112 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 logcat -v time -t 1
[ +1 ms] --------- beginning of /dev/log/system
--------- beginning of /dev/log/main
05-20 01:38:37.624 W/ADB_SERVICES(14002): adb: unable to open /proc/14002/oom_adj
[ +4 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 logcat -v time
[ +851 ms] DependencyChecker: nothing is modified after 2018-05-20 01:33:58.000.
[ +18 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb version
[ +55 ms] Android Debug Bridge version 1.0.39
Version 0.0.1-4500957
Installed as C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb.EXE
[ +4 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb start-server
[ +58 ms] Building APK
[ +9 ms] Running 'gradlew assembleDebug'...
[ +5 ms] [android\] c:\Users\MM\Desktop\first_flutter_app\android\gradlew.bat -Ptarget=c:\Users\MM\Desktop\first_flutter_app\lib/main.dart -Ppreview-dart-2=true -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+23101 ms] :app:preBuild UP-TO-DATE
[ +7 ms] :app:preDebugBuild UP-TO-DATE
[ +13 ms] :app:compileDebugAidl UP-TO-DATE
[ +2 ms] :app:compileDebugRenderscript UP-TO-DATE
[ +6 ms] :app:flutterBuildX86Jar UP-TO-DATE
[ +9 ms] :app:checkDebugManifest UP-TO-DATE
[ +4 ms] :app:generateDebugBuildConfig UP-TO-DATE
[ +1 ms] :app:prepareLintJar UP-TO-DATE
[ +63 ms] :app:cleanMergeDebugAssets
[ +180 ms] :app:flutterBuildDebug UP-TO-DATE
[ +12 ms] :app:mergeDebugShaders UP-TO-DATE
[ ] :app:compileDebugShaders UP-TO-DATE
[ ] :app:generateDebugAssets UP-TO-DATE
[ +28 ms] :app:mergeDebugAssets
[+2440 ms] :app:copyFlutterAssetsDebug
[ +33 ms] :app:generateDebugResValues UP-TO-DATE
[ +3 ms] :app:generateDebugResources UP-TO-DATE
[ +28 ms] :app:mergeDebugResources UP-TO-DATE
[ ] :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] :app:processDebugManifest UP-TO-DATE
[ ] :app:splitsDiscoveryTaskDebug UP-TO-DATE
[ ] :app:processDebugResources UP-TO-DATE
[ ] :app:generateDebugSources UP-TO-DATE
[ +54 ms] :app:javaPreCompileDebug UP-TO-DATE
[ +20 ms] :app:compileDebugJavaWithJavac UP-TO-DATE
[ +8 ms] :app:compileDebugNdk NO-SOURCE
[ ] :app:compileDebugSources UP-TO-DATE
[ +1 ms] :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[ +8 ms] :app:transformDexArchiveWithExternalLibsDexMergerForDebug UP-TO-DATE
[ +9 ms] :app:transformDexArchiveWithDexMergerForDebug UP-TO-DATE
[ +13 ms] :app:mergeDebugJniLibFolders UP-TO-DATE
[ +10 ms] :app:transformNativeLibsWithMergeJniLibsForDebug UP-TO-DATE
[ ] :app:processDebugJavaRes NO-SOURCE
[ +8 ms] :app:transformResourcesWithMergeJavaResForDebug UP-TO-DATE
[ +1 ms] :app:validateSigningDebug
[ +17 ms] :app:packageDebug UP-TO-DATE
[ +1 ms] :app:assembleDebug UP-TO-DATE
[ ] BUILD SUCCESSFUL in 24s
[ ] 29 actionable tasks: 4 executed, 25 up-to-date
[ +648 ms] calculateSha: C:\Users\MM\Desktop\first_flutter_app\build\app\outputs\apk/app.apk
[+1525 ms] Built build\app\outputs\apk\debug\app-debug.apk (30.4MB).
[ +2 ms] C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ +66 ms] Exit code 0 from: C:\Users\MM\AppData\Local\Android\sdk\build-tools\27.0.3\aapt dump badging build\app\outputs\apk\app.apk
[ ] package: name='com.example.firstflutterapp' versionCode='1' versionName='1.0' platformBuildVersionName=''
sdkVersion:'16'
targetSdkVersion:'27'
uses-permission: name='android.permission.INTERNET'
application-label:'first_flutter_app'
application-icon-160:'res/mipmap-mdpi-v4/ic_launcher.png'
application-icon-240:'res/mipmap-hdpi-v4/ic_launcher.png'
application-icon-320:'res/mipmap-xhdpi-v4/ic_launcher.png'
application-icon-480:'res/mipmap-xxhdpi-v4/ic_launcher.png'
application-icon-640:'res/mipmap-xxxhdpi-v4/ic_launcher.png'
application: label='first_flutter_app' icon='res/mipmap-mdpi-v4/ic_launcher.png'
application-debuggable
launchable-activity: name='com.example.firstflutterapp.MainActivity' label='' icon=''
feature-group: label=''
uses-feature: name='android.hardware.faketouch'
uses-implied-feature: name='android.hardware.faketouch' reason='default feature for all apps'
main
supports-screens: 'small' 'normal' 'large' 'xlarge'
supports-any-density: 'true'
locales: '--_--'
densities: '160' '240' '320' '480' '640'
native-code: 'armeabi-v7a' 'x86' 'x86_64'
[ ] Stopping app 'app.apk' on HTC Desire 620G dual sim.
[ ] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell am force-stop com.example.firstflutterapp
[+1311 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell pm list packages com.example.firstflutterapp
[ +835 ms] package:com.example.firstflutterapp
[ +4 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell cat /data/local/tmp/sky.com.example.firstflutterapp.sha1
[ +37 ms] 7bd3ec29885cfaa329e0aa20cb72059692e38ea1
[ +1 ms] Latest build already installed.
[ ] HTC Desire 620G dual sim startApp
[ +2 ms] C:\Users\MM\AppData\Local\Android\sdk\platform-tools\adb -s LC57JY640346 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true com.example.firstflutterapp/com.example.firstflutterapp.MainActivity
[ +752 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.firstflutterapp/.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[+1279 ms] E/DartVM (14116): ../../third_party/dart/runtime/vm/object.cc: 21914: error: Fatal error in Array::New: invalid len 803234264
[ +1 ms] E/DartVM (14116):
[ ] E/DartVM (14116): Dumping native stack trace for thread 3732
[ ] E/DartVM (14116): [0x611d22c1] Unknown symbol
[ ] E/DartVM (14116): [0x611d22c1] Unknown symbol
[ ] E/DartVM (14116): -- End of DumpStackTrace
[+11443 ms] E/DartVM (14186): 'dart:typed_data/runtime/libtyped_data_patch.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
[ +2 ms] E/DartVM (14186): ../../third_party/dart/runtime/vm/compiler/intrinsifier.cc: 120: error: Intrinsifier failed to find method [] in class _Uint8List
[ ] E/DartVM (14186):
[ ] E/DartVM (14186): Dumping native stack trace for thread 3778
[ ] E/DartVM (14186): [0x611d12c1] Unknown symbol
[ ] E/DartVM (14186): [0x611d12c1] Unknown symbol
[ ] E/DartVM (14186): -- End of DumpStackTrace
[ ] E/DartVM (14186): ../../third_party/dart/runtime/vm/object.cc: 5329: error: Fatal error
in TypeArguments::New: invalid len 588070928
[ ] E/DartVM (14186):
[ ] E/DartVM (14186): Aborting re-entrant request for stack trace.
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[โ] Flutter (Channel beta, v0.3.2, on Microsoft Windows [Version 10.0.16299.431], locale en-US)
โข Flutter version 0.3.2 at D:\Benchmark Creative Labs\Flutter\source\flutter
โข Framework revision 44b7e7d3f4 (4 weeks ago), 2018-04-20 01:02:44 -0700
โข Engine revision 09d05a3891
โข Dart version 2.0.0-dev.48.0.flutter-fe606f890b
[!] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข Android SDK at C:\Users\MM\AppData\Local\Android\sdk
โข Android NDK location not configured (optional; useful for native profiling support)
โข Platform android-27, build-tools 27.0.3
โข Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
X Android license status unknown.
[โ] Android Studio (version 2.2)
โข Android Studio at C:\Program Files\Android\Android Studio1
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
โข Java version OpenJDK Runtime Environment (build 1.8.0_76-release-b03)
[โ] Android Studio (version 3.1)
โข Android Studio at C:\Program Files\Android\Android Studio
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
[โ] VS Code, 64-bit edition (version 1.23.1)
โข VS Code at C:\Program Files\Microsoft VS Code
โข Dart Code extension version 2.12.1
[โ] Connected devices (1 available)
โข HTC Desire 620G dual sim โข LC57JY640346 โข android-arm โข Android 4.4.2 (API 19)
! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[โ] Flutter (Channel beta, v0.3.2, on Microsoft Windows [Version 10.0.16299.431], locale en-US)
โข Flutter version 0.3.2 at D:\Benchmark Creative Labs\Flutter\source\flutter
โข Framework revision 44b7e7d3f4 (4 weeks ago), 2018-04-20 01:02:44 -0700
โข Engine revision 09d05a3891
โข Dart version 2.0.0-dev.48.0.flutter-fe606f890b
[!] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข Android SDK at C:\Users\MM\AppData\Local\Android\sdk
โข Android NDK location not configured (optional; useful for native profiling support)
โข Platform android-27, build-tools 27.0.3
โข Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
X Android license status unknown.
[โ] Android Studio (version 2.2)
โข Android Studio at C:\Program Files\Android\Android Studio1
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
โข Java version OpenJDK Runtime Environment (build 1.8.0_76-release-b03)
[โ] Android Studio (version 3.1)
โข Android Studio at C:\Program Files\Android\Android Studio
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
[โ] VS Code, 64-bit edition (version 1.23.1)
โข VS Code at C:\Program Files\Microsoft VS Code
โข Dart Code extension version 2.12.1
[โ] Connected devices (1 available)
โข HTC Desire 620G dual sim โข LC57JY640346 โข android-arm โข Android 4.4.2 (API 19)
! Doctor found issues in 1 category.
</code></pre></div> | <p dir="auto">Today I updated Flutter after 28 days. And then I got below error, not only for one project but app is working(flutter run using cmd). Only on pysical device.</p>
<p dir="auto">What is the meaning? and do I need to worry about this?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="flutter run
Launching lib/main.dart on E2115 in debug mode...
Initializing gradle... 13.2s
Resolving dependencies... 8.4s
Running 'gradlew assembleDebug'... 10.0s
Built build\app\outputs\apk\debug\app-debug.apk (32.7MB).
Installing build\app\outputs\apk\app.apk... 19.8s
E/DartVM (25910): 'dart:core/string.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
E/DartVM (25910): ../../third_party/dart/runtime/vm/compiler/intrinsifier.cc: 106: error: Intrinsifier failed to find method get:hashCode in class _StringBase
E/DartVM (25910):
E/DartVM (25910): Dumping native stack trace for thread 6573
E/DartVM (25910): [0x60f742c1] Unknown symbol
E/DartVM (25910): [0x60f742c1] Unknown symbol
E/DartVM (25910): -- End of DumpStackTrace
I/FlutterActivityDelegate(26086): onResume setting current activity to this
E/DartVM (26086): vm-service: Error: Unhandled exception:
E/DartVM (26086): 'dart:core/uri.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
E/DartVM (26086): #0 new Future.microtask.<anonymous closure> (dart:async/future.dart:202:37)
E/DartVM (26086): #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
E/DartVM (26086): #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
E/DartVM (26086): #3 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:391:30)
E/DartVM (26086): #4 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
E/DartVM (26086): #5 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
E/DartVM (26086):
E/flutter (26086): [ERROR:flutter/runtime/dart_isolate.cc(713)] Isolate (907501011) 'vm-service' exited with an error
E/flutter (26086): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter (26086): 'dart:core/uri.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
E/flutter (26086): #0 new Future.microtask.<anonymous closure> (dart:async/future.dart:202:37)
E/flutter (26086): #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
E/flutter (26086): #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
E/flutter (26086): #3 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:391:30)
E/flutter (26086): #4 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
E/flutter (26086): #5 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)"><pre class="notranslate"><code class="notranslate">flutter run
Launching lib/main.dart on E2115 in debug mode...
Initializing gradle... 13.2s
Resolving dependencies... 8.4s
Running 'gradlew assembleDebug'... 10.0s
Built build\app\outputs\apk\debug\app-debug.apk (32.7MB).
Installing build\app\outputs\apk\app.apk... 19.8s
E/DartVM (25910): 'dart:core/string.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
E/DartVM (25910): ../../third_party/dart/runtime/vm/compiler/intrinsifier.cc: 106: error: Intrinsifier failed to find method get:hashCode in class _StringBase
E/DartVM (25910):
E/DartVM (25910): Dumping native stack trace for thread 6573
E/DartVM (25910): [0x60f742c1] Unknown symbol
E/DartVM (25910): [0x60f742c1] Unknown symbol
E/DartVM (25910): -- End of DumpStackTrace
I/FlutterActivityDelegate(26086): onResume setting current activity to this
E/DartVM (26086): vm-service: Error: Unhandled exception:
E/DartVM (26086): 'dart:core/uri.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
E/DartVM (26086): #0 new Future.microtask.<anonymous closure> (dart:async/future.dart:202:37)
E/DartVM (26086): #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
E/DartVM (26086): #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
E/DartVM (26086): #3 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:391:30)
E/DartVM (26086): #4 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
E/DartVM (26086): #5 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
E/DartVM (26086):
E/flutter (26086): [ERROR:flutter/runtime/dart_isolate.cc(713)] Isolate (907501011) 'vm-service' exited with an error
E/flutter (26086): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
E/flutter (26086): 'dart:core/uri.dart': error: Unexpected tag 0 (Nothing) in ?, expected expression
E/flutter (26086): #0 new Future.microtask.<anonymous closure> (dart:async/future.dart:202:37)
E/flutter (26086): #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
E/flutter (26086): #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
E/flutter (26086): #3 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:391:30)
E/flutter (26086): #4 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
E/flutter (26086): #5 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
</code></pre></div>
<p dir="auto">Regards!</p> | 1 |
<p dir="auto">Error:Module 'com.github.bumptech.glide:glide:4.4.0' depends on one or more Android Libraries but is a jar</p> | <p dir="auto">A problem occurred evaluating project ':glide'.</p>
<blockquote>
<p dir="auto">Could not get unknown property 'sourceSets' for project ':third_party:disklrucache' of type org.gradle.api.Project.</p>
</blockquote> | 0 |
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type Boots = 'boots';
let lala = {
nowBoots(saying: Boots): void; // works
nowCats(saying: 'cats'): void; // doesn't works
}"><pre class="notranslate"><span class="pl-k">type</span> <span class="pl-smi">Boots</span> <span class="pl-c1">=</span> <span class="pl-s">'boots'</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">lala</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">nowBoots</span><span class="pl-kos">(</span><span class="pl-s1">saying</span>: <span class="pl-smi">Boots</span><span class="pl-kos">)</span>: <span class="pl-smi"><span class="pl-k">void</span></span><span class="pl-kos">;</span> <span class="pl-c">// works</span>
<span class="pl-en">nowCats</span><span class="pl-kos">(</span><span class="pl-s1">saying</span>: <span class="pl-s">'cats'</span><span class="pl-kos">)</span>: <span class="pl-k">void</span><span class="pl-kos">;</span> <span class="pl-c">// doesn't works</span>
<span class="pl-kos">}</span></pre></div> | <p dir="auto">Specialized signatures needing to be compatible with an overload was an artificial requirement due to issues in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="46547257" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/943" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/943/hovercard" href="https://github.com/microsoft/TypeScript/issues/943">#943</a>. Now that we've fixed that, we should consider what we're going to do with this rule.</p>
<p dir="auto">Could we remove it wholesale? That would potentially be a breaking change, but it seems like good one. Basically, the situations you'd run into this would be where you have something like the following...</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function doThing(x: "dog"): Dog;
function doThing(x: "cat"): Cat;
function doThing(x: string): Animal;
function doThing(x: string, y?: string): Moose {
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-s1">doThing</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-s">"dog"</span><span class="pl-kos">)</span>: <span class="pl-smi">Dog</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-s1">doThing</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-s">"cat"</span><span class="pl-kos">)</span>: <span class="pl-smi">Cat</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-s1">doThing</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">Animal</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">doThing</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-smi">string</span><span class="pl-kos">,</span> <span class="pl-s1">y</span>?: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">Moose</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Where now we'd check if the implementation was assignable to the specialized signatures and give an error. That seems like a good change.</p> | 1 |
<p dir="auto">PowerToys 0.20.0 crashed right after connecting Surface Book 2 15" to dock with external monitors.</p>
<p dir="auto">Just after connecting the SB2 to external dock, I tried to move a window to another monitor holding Shift to snap using FancyZones.<br>
I believe Windows was still resizing some shell UI elements, and PowerToys just crashed.<br>
After restarting it, it showed a "PT Run got an error" dialog.</p>
<p dir="auto">Attached are crash log and error message contents.</p>
<p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5015177/2020-08-03.txt">2020-08-03.txt</a></p>
<p dir="auto">Version: 1.0.0<br>
OS Version: Microsoft Windows NT 10.0.19041.0<br>
IntPtr Length: 8<br>
x64: True<br>
Date: 08/03/2020 11:46:06<br>
Exception:<br>
System.ObjectDisposedException: Cannot access a disposed object.<br>
Object name: 'Timer'.<br>
at System.Timers.Timer.set_Enabled(Boolean value)<br>
at System.Timers.Timer.Start()<br>
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.UpdateIsVisibleCache()<br>
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br>
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br>
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br>
at System.Windows.Window.SetRootVisual()<br>
at System.Windows.Window.SetRootVisualAndUpdateSTC()<br>
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br>
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br>
at System.Windows.Window.CreateSourceWindowDuringShow()<br>
at System.Windows.Window.SafeCreateWindowDuringShow()<br>
at System.Windows.Window.ShowHelper(Object booleanBox)<br>
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br>
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)</p> | <p dir="auto">Popup tells me to give y'all this.</p>
<p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5009460/2020-07-31.txt">2020-07-31.txt</a></p>
<p dir="auto">Version: 1.0.0<br>
OS Version: Microsoft Windows NT 10.0.19041.0<br>
IntPtr Length: 8<br>
x64: True<br>
Date: 07/31/2020 17:29:59<br>
Exception:<br>
System.ObjectDisposedException: Cannot access a disposed object.<br>
Object name: 'Timer'.<br>
at System.Timers.Timer.set_Enabled(Boolean value)<br>
at System.Timers.Timer.Start()<br>
at PowerLauncher.MainWindow.OnVisibilityChanged(Object sender, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.UIElement.RaiseDependencyPropertyChanged(EventPrivateKey key, DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.OnIsVisibleChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)<br>
at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)<br>
at System.Windows.UIElement.UpdateIsVisibleCache()<br>
at System.Windows.PresentationSource.RootChanged(Visual oldRoot, Visual newRoot)<br>
at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual value)<br>
at System.Windows.Interop.HwndSource.set_RootVisual(Visual value)<br>
at System.Windows.Window.SetRootVisual()<br>
at System.Windows.Window.SetRootVisualAndUpdateSTC()<br>
at System.Windows.Window.SetupInitialState(Double requestedTop, Double requestedLeft, Double requestedWidth, Double requestedHeight)<br>
at System.Windows.Window.CreateSourceWindow(Boolean duringShow)<br>
at System.Windows.Window.CreateSourceWindowDuringShow()<br>
at System.Windows.Window.SafeCreateWindowDuringShow()<br>
at System.Windows.Window.ShowHelper(Object booleanBox)<br>
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)<br>
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)</p> | 1 |
<p dir="auto">Hello, I want to work on a python implementation od clusterdv as described in <a href="https://academic.oup.com/bioinformatics/article/35/12/2125/5165379" rel="nofollow">this paper</a> but with some modifications on, for instance, the way it is structures and the path valley calculation method. I wanted to open this issue to keep track of the progress and to not have duplicated work.</p> | <p dir="auto">There seems to be a randomly duplicated alpha from time to time:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="======================================================================
FAIL: sklearn.linear_model.tests.test_least_angle.test_lasso_lars_path_length
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python34\lib\site-packages\nose\case.py", line 198, in runTest
self.test(*self.arg)
File "C:\Python34\lib\site-packages\sklearn\linear_model\tests\test_least_angle.py", line 298, in test_lasso_lars_path_length
assert_array_almost_equal(lasso.alphas_[:3], lasso2.alphas_)
File "C:\Python34\lib\site-packages\numpy\testing\utils.py", line 811, in assert_array_almost_equal
header=('Arrays are not almost equal to %d decimals' % decimal))
File "C:\Python34\lib\site-packages\numpy\testing\utils.py", line 599, in assert_array_compare
raise AssertionError(msg)
AssertionError:
Arrays are not almost equal to 6 decimals
(shapes (3,), (4,) mismatch)
x: array([ 2.14804358, 2.01202713, 1.02466283])
y: array([ 2.14804358, 2.01202713, 1.02466283, 1.02466283])"><pre class="notranslate"><code class="notranslate">======================================================================
FAIL: sklearn.linear_model.tests.test_least_angle.test_lasso_lars_path_length
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python34\lib\site-packages\nose\case.py", line 198, in runTest
self.test(*self.arg)
File "C:\Python34\lib\site-packages\sklearn\linear_model\tests\test_least_angle.py", line 298, in test_lasso_lars_path_length
assert_array_almost_equal(lasso.alphas_[:3], lasso2.alphas_)
File "C:\Python34\lib\site-packages\numpy\testing\utils.py", line 811, in assert_array_almost_equal
header=('Arrays are not almost equal to %d decimals' % decimal))
File "C:\Python34\lib\site-packages\numpy\testing\utils.py", line 599, in assert_array_compare
raise AssertionError(msg)
AssertionError:
Arrays are not almost equal to 6 decimals
(shapes (3,), (4,) mismatch)
x: array([ 2.14804358, 2.01202713, 1.02466283])
y: array([ 2.14804358, 2.01202713, 1.02466283, 1.02466283])
</code></pre></div> | 0 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">Bug</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">Webpack 4.5 cannot be configured to create JavaScript files that both: a) bundle shared modules and b) runs them.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto">The following markup shows the use case of a large app that has pages that assumes a babel-polyfilled environment and may depend on either React or jQuery or both. A page often has a corresponding Webpack entry that shouldn't redundantly bundle babel-polyfill, React, jQuery, or the Webpack runtime.</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<html>
<body>
<!-- Download and run babel-polyfill, fetch polyfill modules, and webpack runtime. -->
<script src="environment.js"></script>
<!-- An ES6 environment should polyfilled -->
<script>console.assert('Map exists.', typeof Map === 'function');</script>
<script>console.assert('Set exists.', typeof Set === 'function');</script>
<!-- Download react, react-dom -->
<script src="vendor-react.js"></script>
<!-- Download and run jquery, and a module that sets it on window -->
<script src="vendor-jquery.js"></script>
<script>console.assert('jQuery exists.', typeof jQuery === 'function');</script>
<!-- Download and run page-specific code that may import react or jquery
without bundling react or jquery in page-a.js -->
<script src="page-a.js"></script>
</body>
</html>
"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">html</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">body</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Download and run babel-polyfill, fetch polyfill modules, and webpack runtime. --></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span> <span class="pl-c1">src</span>="<span class="pl-s">environment.js</span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- An ES6 environment should polyfilled --></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span><span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">assert</span><span class="pl-kos">(</span><span class="pl-s">'Map exists.'</span><span class="pl-kos">,</span> <span class="pl-k">typeof</span> <span class="pl-v">Map</span> <span class="pl-c1">===</span> <span class="pl-s">'function'</span><span class="pl-kos">)</span><span class="pl-kos">;</span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span><span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">assert</span><span class="pl-kos">(</span><span class="pl-s">'Set exists.'</span><span class="pl-kos">,</span> <span class="pl-k">typeof</span> <span class="pl-v">Set</span> <span class="pl-c1">===</span> <span class="pl-s">'function'</span><span class="pl-kos">)</span><span class="pl-kos">;</span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Download react, react-dom --></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span> <span class="pl-c1">src</span>="<span class="pl-s">vendor-react.js</span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Download and run jquery, and a module that sets it on window --></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span> <span class="pl-c1">src</span>="<span class="pl-s">vendor-jquery.js</span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span><span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">assert</span><span class="pl-kos">(</span><span class="pl-s">'jQuery exists.'</span><span class="pl-kos">,</span> <span class="pl-k">typeof</span> <span class="pl-s1">jQuery</span> <span class="pl-c1">===</span> <span class="pl-s">'function'</span><span class="pl-kos">)</span><span class="pl-kos">;</span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Download and run page-specific code that may import react or jquery</span>
<span class="pl-c"> without bundling react or jquery in page-a.js --></span>
<span class="pl-kos"><</span><span class="pl-ent">script</span> <span class="pl-c1">src</span>="<span class="pl-s">page-a.js</span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">body</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">html</span><span class="pl-kos">></span></pre></div>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">Webpack 3 and it's CommonsChunkPlugin supported this feature.</p>
<p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version, and Operating System.</strong></p>
<p dir="auto">Webpack 4.5, Node 8.2, OS X 10.12.6.</p> | <p dir="auto"><em>updated with the latest versions (29.06.2017)</em><br>
Webpack - 3.0.0<br>
Babel-preset-env - 1.5.2<br>
Node - 8.1.2<br>
OS X - 10.12.5</p>
<p dir="auto"><strong>Current</strong></p>
<p dir="auto">Tree shaking is not removing imports, not used in the app.</p>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">Tree shaking, removing not used imports.</p>
<hr>
<p dir="auto">The test case is a simple app with React & React Router v4. <code class="notranslate">Link</code> component is not used, but the whole router package is bundled.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React from 'react'
import ReactDOM from 'react-dom'
import { Link } from 'react-router-dom'
ReactDOM.render(
<p>Hey</p>,
document.getElementById('app')
)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span>
<span class="pl-k">import</span> <span class="pl-v">ReactDOM</span> <span class="pl-k">from</span> <span class="pl-s">'react-dom'</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-v">Link</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'react-router-dom'</span>
<span class="pl-v">ReactDOM</span><span class="pl-kos">.</span><span class="pl-en">render</span><span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">p</span><span class="pl-c1">></span>Hey<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">p</span><span class="pl-c1">></span><span class="pl-kos">,</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">getElementById</span><span class="pl-kos">(</span><span class="pl-s">'app'</span><span class="pl-kos">)</span>
<span class="pl-kos">)</span></pre></div>
<p dir="auto"><a href="https://github.com/VladShcherbin/react-rollup-webpack-test">Webpack & Rollup test repo</a></p> | 0 |
<h4 dir="auto">well, my function's input is ndarray-like and it's output is a scaler. The question is I have no method to apply this function on rolling object.</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from sklearn.decomposition import PCA
df = pd.DataFrame({"A": [1, 2, 3, 4, 5, 6, 7, 8], "B": [2, 3, 4, 5, 6, 7, 8, 9]})
def first_variance(X):
pca = PCA(n_components=1)
pca.fit(X)
return pca.explained_variance_
df.rolling(4).apply(first_variance)
"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">decomposition</span> <span class="pl-k">import</span> <span class="pl-v">PCA</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-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-c1">5</span>, <span class="pl-c1">6</span>, <span class="pl-c1">7</span>, <span class="pl-c1">8</span>], <span class="pl-s">"B"</span>: [<span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-c1">5</span>, <span class="pl-c1">6</span>, <span class="pl-c1">7</span>, <span class="pl-c1">8</span>, <span class="pl-c1">9</span>]})
<span class="pl-k">def</span> <span class="pl-en">first_variance</span>(<span class="pl-v">X</span>):
<span class="pl-s1">pca</span> <span class="pl-c1">=</span> <span class="pl-v">PCA</span>(<span class="pl-s1">n_components</span><span class="pl-c1">=</span><span class="pl-c1">1</span>)
<span class="pl-s1">pca</span>.<span class="pl-en">fit</span>(<span class="pl-v">X</span>)
<span class="pl-k">return</span> <span class="pl-s1">pca</span>.<span class="pl-s1">explained_variance_</span>
<span class="pl-s1">df</span>.<span class="pl-en">rolling</span>(<span class="pl-c1">4</span>).<span class="pl-en">apply</span>(<span class="pl-s1">first_variance</span>)</pre></div>
<h4 dir="auto">The domo is incorrect because the "apply" method only can apply by index or column.</h4> | <p dir="auto">In <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="116942772" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/11603" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/11603/hovercard?comment_id=162113949&comment_type=issue_comment" href="https://github.com/pandas-dev/pandas/pull/11603#issuecomment-162113949">#11603 (comment)</a> (the main PR implementing the deferred API for rolling / expanding / ewm), we discussed how to specify table-wise <code class="notranslate">apply</code>s. <code class="notranslate">Groupby.apply(f)</code> feeds the entire group (all columns) to <code class="notranslate">f</code>. For backwards-compatibility, <code class="notranslate">.rolling(n).apply(f)</code> needed to be column-wise.</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="116942772" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/11603" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/11603/hovercard?comment_id=162116556&comment_type=issue_comment" href="https://github.com/pandas-dev/pandas/pull/11603#issuecomment-162116556">#11603 (comment)</a> mentions a possible API like what I added for <code class="notranslate">.style</code></p>
<ul dir="auto">
<li><code class="notranslate">axis=0</code>: apply to each column independently</li>
<li><code class="notranslate">axis=1</code>: apply to each row independently</li>
<li><code class="notranslate">axis=None</code>: apply the supplied function to the entire table</li>
</ul>
<p dir="auto">So it'd be <code class="notranslate">df.rolling(n).apply(f, axis=None)</code>.<br>
Do people like the axis=0 / 1 / None idiom? Is it obvious enough?</p>
<p dir="auto">This is prompted by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/josef-pkt/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/josef-pkt">@josef-pkt</a>'s <a href="https://groups.google.com/forum/#!topic/pydata/FcAT8LBPmlg" rel="nofollow">post on the mailinglist</a>. Needing a rolling OLS.</p>
<p dir="auto">An example:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [2]: import numpy as np
...: import pandas as pd
...:
...: np.random.seed(0)
...: df = pd.DataFrame(np.random.randint(0, 10, size=(10, 2)), columns=["A", "B"])
...: df
...:
Out[2]:
A B
0 5 0
1 3 3
2 7 9
3 3 5
4 2 4
5 7 6
6 8 8
7 1 6
8 7 7
9 8 1"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
...: <span class="pl-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">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">seed</span>(<span class="pl-c1">0</span>)
...: <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-c1">0</span>, <span class="pl-c1">10</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">10</span>, <span class="pl-c1">2</span>)), <span class="pl-s1">columns</span><span class="pl-c1">=</span>[<span class="pl-s">"A"</span>, <span class="pl-s">"B"</span>])
...: <span class="pl-s1">df</span>
...:
<span class="pl-v">Out</span>[<span class="pl-c1">2</span>]:
<span class="pl-v">A</span> <span class="pl-v">B</span>
<span class="pl-c1">0</span> <span class="pl-c1">5</span> <span class="pl-c1">0</span>
<span class="pl-c1">1</span> <span class="pl-c1">3</span> <span class="pl-c1">3</span>
<span class="pl-c1">2</span> <span class="pl-c1">7</span> <span class="pl-c1">9</span>
<span class="pl-c1">3</span> <span class="pl-c1">3</span> <span class="pl-c1">5</span>
<span class="pl-c1">4</span> <span class="pl-c1">2</span> <span class="pl-c1">4</span>
<span class="pl-c1">5</span> <span class="pl-c1">7</span> <span class="pl-c1">6</span>
<span class="pl-c1">6</span> <span class="pl-c1">8</span> <span class="pl-c1">8</span>
<span class="pl-c1">7</span> <span class="pl-c1">1</span> <span class="pl-c1">6</span>
<span class="pl-c1">8</span> <span class="pl-c1">7</span> <span class="pl-c1">7</span>
<span class="pl-c1">9</span> <span class="pl-c1">8</span> <span class="pl-c1">1</span></pre></div>
<p dir="auto">For a concrete example, get the table-wise max (this is equivalent to <code class="notranslate">df.rolling(4).max().max(1)</code>)</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [10]: df.rolling(4).apply(np.max, axis=None)
Out[10]:
0 NaN
1 NaN
2 NaN
3 9.0
4 9.0
5 9.0
6 8.0
7 8.0
8 8.0
9 8.0
dtype: float64"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">10</span>]: <span class="pl-s1">df</span>.<span class="pl-en">rolling</span>(<span class="pl-c1">4</span>).<span class="pl-en">apply</span>(<span class="pl-s1">np</span>.<span class="pl-s1">max</span>, <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">None</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">10</span>]:
<span class="pl-c1">0</span> <span class="pl-v">NaN</span>
<span class="pl-c1">1</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2</span> <span class="pl-v">NaN</span>
<span class="pl-c1">3</span> <span class="pl-c1">9.0</span>
<span class="pl-c1">4</span> <span class="pl-c1">9.0</span>
<span class="pl-c1">5</span> <span class="pl-c1">9.0</span>
<span class="pl-c1">6</span> <span class="pl-c1">8.0</span>
<span class="pl-c1">7</span> <span class="pl-c1">8.0</span>
<span class="pl-c1">8</span> <span class="pl-c1">8.0</span>
<span class="pl-c1">9</span> <span class="pl-c1">8.0</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">float64</span></pre></div>
<p dir="auto">A real example is something like a rolling OLS:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import statsmodels.api as sm
f = lambda x: sm.OLS.from_formula('A ~ B', data=x).fit() # wrong, but w/e
df.rolling(5).apply(f, axis=None)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">statsmodels</span>.<span class="pl-s1">api</span> <span class="pl-k">as</span> <span class="pl-s1">sm</span>
<span class="pl-s1">f</span> <span class="pl-c1">=</span> <span class="pl-k">lambda</span> <span class="pl-s1">x</span>: <span class="pl-s1">sm</span>.<span class="pl-v">OLS</span>.<span class="pl-en">from_formula</span>(<span class="pl-s">'A ~ B'</span>, <span class="pl-s1">data</span><span class="pl-c1">=</span><span class="pl-s1">x</span>).<span class="pl-en">fit</span>() <span class="pl-c"># wrong, but w/e</span>
<span class="pl-s1">df</span>.<span class="pl-en">rolling</span>(<span class="pl-c1">5</span>).<span class="pl-en">apply</span>(<span class="pl-s1">f</span>, <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">None</span>)</pre></div> | 1 |
<p dir="auto">Like we have in the default calculator app, an option to keep the calculator window always on top.</p>
<p dir="auto">Similarly for the other apps by adding an extra button on the left of the window minimize button or somewhere in the title bar.</p>
<p dir="auto">Or by simply giving a custom shortcut key for that.</p>
<p dir="auto">** Also, it will be better if the window of that specific app snaps directly into a particular area, just like the calculator app does.</p> | <p dir="auto">crutkas: Should look at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="442184549" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/49" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/49/hovercard" href="https://github.com/microsoft/PowerToys/issues/49">#49</a> also for additional feature implementation idea</p>
<p dir="auto">And <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="516026833" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/641" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/641/hovercard" href="https://github.com/microsoft/PowerToys/issues/641">#641</a> for transparency</p> | 1 |
<p dir="auto">The weekly build with nightly wheels from numpy and pandas<br>
has failed. Check the logs for any updates that need to be<br>
made in matplotlib.<br>
<a href="https://github.com/matplotlib/matplotlib/actions/runs/4900029117">https://github.com/matplotlib/matplotlib/actions/runs/4900029117</a></p> | <h3 dir="auto">Bug summary</h3>
<p dir="auto">When specifying hatches for <code class="notranslate">contourf,</code> the colorbar is drawn correctly for vertical colorbars but not for horizontal ones. The Hatches and colorfill only fill the lower diagonal of the colorbar boxes.</p>
<h3 dir="auto">Code for reproduction</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
import numpy as np
import matplotlib.pyplot as plt
import numpy as np
# invent some numbers, turning the x and y arrays into simple
# 2d arrays, which make combining them together easier.
x = np.linspace(-3, 5, 150).reshape(1, -1)
y = np.linspace(-3, 5, 120).reshape(-1, 1)
z = np.cos(x) + np.sin(y)
# we no longer need x and y to be 2 dimensional, so flatten them.
x, y = x.flatten(), y.flatten()
fig1, ax1 = plt.subplots()
cs = ax1.contourf(x, y, z, hatches=['-', '/', '\\', '//'],
cmap='gray', extend='both', alpha=0.5)
fig1.colorbar(cs, orientation='horizontal')
plt.show()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-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-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-c"># invent some numbers, turning the x and y arrays into simple</span>
<span class="pl-c"># 2d arrays, which make combining them together easier.</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-c1">-</span><span class="pl-c1">3</span>, <span class="pl-c1">5</span>, <span class="pl-c1">150</span>).<span class="pl-en">reshape</span>(<span class="pl-c1">1</span>, <span class="pl-c1">-</span><span class="pl-c1">1</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-c1">-</span><span class="pl-c1">3</span>, <span class="pl-c1">5</span>, <span class="pl-c1">120</span>).<span class="pl-en">reshape</span>(<span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-c1">1</span>)
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">cos</span>(<span class="pl-s1">x</span>) <span class="pl-c1">+</span> <span class="pl-s1">np</span>.<span class="pl-en">sin</span>(<span class="pl-s1">y</span>)
<span class="pl-c"># we no longer need x and y to be 2 dimensional, so flatten them.</span>
<span class="pl-s1">x</span>, <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span>.<span class="pl-en">flatten</span>(), <span class="pl-s1">y</span>.<span class="pl-en">flatten</span>()
<span class="pl-s1">fig1</span>, <span class="pl-s1">ax1</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>()
<span class="pl-s1">cs</span> <span class="pl-c1">=</span> <span class="pl-s1">ax1</span>.<span class="pl-en">contourf</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>, <span class="pl-s1">z</span>, <span class="pl-s1">hatches</span><span class="pl-c1">=</span>[<span class="pl-s">'-'</span>, <span class="pl-s">'/'</span>, <span class="pl-s">'<span class="pl-cce">\\</span>'</span>, <span class="pl-s">'//'</span>],
<span class="pl-s1">cmap</span><span class="pl-c1">=</span><span class="pl-s">'gray'</span>, <span class="pl-s1">extend</span><span class="pl-c1">=</span><span class="pl-s">'both'</span>, <span class="pl-s1">alpha</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>)
<span class="pl-s1">fig1</span>.<span class="pl-en">colorbar</span>(<span class="pl-s1">cs</span>, <span class="pl-s1">orientation</span><span class="pl-c1">=</span><span class="pl-s">'horizontal'</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<h3 dir="auto">Actual outcome</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/42781301/180038311-1100fca9-bbaa-4baa-93fb-97ccc56d8260.png"><img src="https://user-images.githubusercontent.com/42781301/180038311-1100fca9-bbaa-4baa-93fb-97ccc56d8260.png" alt="actual_colobar" style="max-width: 100%;"></a></p>
<h3 dir="auto">Expected outcome</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/42781301/180038758-eb0177ff-52c8-49cf-9fd4-d927fc4170b6.png"><img src="https://user-images.githubusercontent.com/42781301/180038758-eb0177ff-52c8-49cf-9fd4-d927fc4170b6.png" alt="expected_colorbar" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional information</h3>
<p dir="auto">The bug occurs when the colorbar is horizontal and the <code class="notranslate">contourf</code> call uses hatches. Changing the kwargs <code class="notranslate">extend</code>, <code class="notranslate">cmap</code>, <code class="notranslate">colors</code>, <code class="notranslate">alpha</code>, etc when calling <code class="notranslate">contourf</code> does <em>not</em> resolve the bug.</p>
<p dir="auto">The bug does <em>not</em> occur when the colorbar is vertical with hatches nor when the colorbar is horizontal and no hatches are used.</p>
<p dir="auto"><em>Potential Solution</em>:<br>
In colorbar.py, change line 637 to the following:<br>
<code class="notranslate">xy = np.array([[X[i, 0], Y[i, 1]],</code></p>
<p dir="auto">This doesn't cause issues when hatches are not used. It also doesn't cause problems with vertical colorbars.</p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">macOS Big Sur Version 11.3.1 with Intel Silicon</p>
<h3 dir="auto">Matplotlib Version</h3>
<p dir="auto">3.5.2</p>
<h3 dir="auto">Matplotlib Backend</h3>
<p dir="auto">module://backend_interagg</p>
<h3 dir="auto">Python version</h3>
<p dir="auto">3.10.5</p>
<h3 dir="auto">Jupyter version</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Installation</h3>
<p dir="auto">conda</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cameronbraid" rel="nofollow">Cameron Braid</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1741?redirect=false" rel="nofollow">SPR-1741</a></strong> and commented</p>
<p dir="auto">${..} property placeholder is now broken in 2-m2, was working on 2-m1</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 M2</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398063614" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/6415" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/6415/hovercard" href="https://github.com/spring-projects/spring-framework/issues/6415">#6415</a> External properties setting fail with abstract beans (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8108?redirect=false" rel="nofollow">SPR-8108</a></strong> and commented</p>
<p dir="auto">cbeams@anakata:~/Work/spring-framework/spring-framework#12721>$ git grep -A5 "<pre>"</p>
<p dir="auto">replace as appropriate with <pre class="code"> to support proper formatting JavaDoc.</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="398156109" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/14788" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/14788/hovercard" href="https://github.com/spring-projects/spring-framework/issues/14788">#14788</a> Improve presentation of code blocks in Javadoc (<em><strong>"depends on"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398112839" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13072" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13072/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13072">#13072</a> Add syntax highlighting to Javadoc where necessary (<em><strong>"is duplicated by"</strong></em>)</li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/2a44228b987f0e8b1ffd3e293d45ba084bfe4790/hovercard" href="https://github.com/spring-projects/spring-framework/commit/2a44228b987f0e8b1ffd3e293d45ba084bfe4790"><tt>2a44228</tt></a></p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">I customized the navigation bar variables @ <a href="http://twitter.github.com/bootstrap/customize.html">http://twitter.github.com/bootstrap/customize.html</a> on the website but these colours were not picked up.</p>
<p dir="auto">I have spotted that this could possibly be with some variables not present on the page overriding the current variables on the page.</p>
<p dir="auto">For example, the colour set for the variable @navbarLinkColor gets overriden by the colour set by the variable @navbarInverseLinkColor.</p>
<p dir="auto">I am reporting this because the variable @navbarInverseLinkColor cannot be set during the customization stage so when a user tries to use the inverted navigation bar, their customization gets overwritten.</p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/efe591cff9b9c847331facced969dbfc5f236e183c3d1ce0b24d6c6bf9676ad1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343233303734392f3939343032342f61323239333964612d303961352d313165332d386131632d3666346438626163383266652e6a7067"><img src="https://camo.githubusercontent.com/efe591cff9b9c847331facced969dbfc5f236e183c3d1ce0b24d6c6bf9676ad1/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343233303734392f3939343032342f61323239333964612d303961352d313165332d386131632d3666346438626163383266652e6a7067" alt="qq20130820205109" data-canonical-src="https://f.cloud.github.com/assets/4230749/994024/a22939da-09a5-11e3-8a1c-6f4d8bac82fe.jpg" style="max-width: 100%;"></a></p>
<p dir="auto">I minilized example of Carousel. It has mistake there like the picture.</p> | 0 |
<h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">With Next.js 9.0.7, after production build and deployment of directories and files below listed, the application is unable to start because of the following error : <code class="notranslate">Couldn't find a </code>pages<code class="notranslate"> directory. Please create one under the project root</code>. It works well again after rolling back to Next.js 9.0.6.</p>
<p dir="auto">Deployed files and folders:</p>
<ul dir="auto">
<li><code class="notranslate">.next</code></li>
<li><code class="notranslate">data</code></li>
<li><code class="notranslate">node_modules</code></li>
<li><code class="notranslate">static</code></li>
<li><code class="notranslate">next.config.js</code></li>
<li><code class="notranslate">package.json</code></li>
<li><code class="notranslate">pm2.config.js</code></li>
</ul>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Build a minimal application with Next.js 9.0.7 and deploy it without /pages source folder.</p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Built application should run without source files.</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: Debian 8.5</li>
<li>Version of Node.js: 10.16.3</li>
<li>Version of Next.js: 9.0.6/9.0.7</li>
</ul> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Running <code class="notranslate">next build</code> should build my project.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Build step fails, produces following STDOUT:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ next build
The module 'react' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install --save react'
The module 'react-dom' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install --save react-dom'
> Using external babel configuration
> location: "/Users/adam/workbench/adamkirkwood.com/portfolio/.babelrc"
> Using "webpack" config function defined in next.config.js.
> Failed to build on /var/folders/qz/xwrqt0bx4l10hj6gmvdd301w0000gn/T/1bb2c2b9-2037-464d-9e8e-189777ce93b5
{ Error: /usr/local/lib/node_modules/next/dist/client/index.js
Module not found: Error: Can't resolve 'react' in '/usr/local/lib/node_modules/next/dist/client'
resolve 'react' in '/usr/local/lib/node_modules/next/dist/client'
Parsed request is a module
using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)
Field 'browser' doesn't contain a valid alias configuration
after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)
resolve as module
/usr/local/lib/node_modules/next/dist/client/node_modules doesn't exist or is not a directory
/usr/local/lib/node_modules/next/dist/node_modules doesn't exist or is not a directory
/usr/local/lib/node_modules/node_modules doesn't exist or is not a directory
/usr/local/node_modules doesn't exist or is not a directory
/usr/node_modules doesn't exist or is not a directory
/node_modules doesn't exist or is not a directory
looking for modules in /usr/local/lib/node_modules/next/node_modules
using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)
Field 'browser' doesn't contain a valid alias configuration
after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)
using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)
no extension
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react doesn't exist
.js
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react.js doesn't exist
.scss
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react.scss doesn't exist
.json
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react.json doesn't exist
as directory
/usr/local/lib/node_modules/next/node_modules/react doesn't exist
looking for modules in /usr/local/lib/node_modules
No description file found
Field 'browser' doesn't contain a valid alias configuration
No description file found
no extension
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react doesn't exist
.js
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react.js doesn't exist
.scss
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react.scss doesn't exist
.json
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react.json doesn't exist
as directory
/usr/local/lib/node_modules/react doesn't exist
[/usr/local/lib/node_modules/next/dist/client/node_modules]
[/usr/local/lib/node_modules/next/dist/node_modules]
[/usr/local/lib/node_modules/node_modules]
[/usr/local/node_modules]
[/usr/node_modules]
[/node_modules]
[/usr/local/lib/node_modules/package.json]
[/usr/local/lib/node_modules/next/node_modules/react]
[/usr/local/lib/node_modules/next/node_modules/react.js]
[/usr/local/lib/node_modules/next/node_modules/react.scss]
[/usr/local/lib/node_modules/next/node_modules/react.json]
[/usr/local/lib/node_modules/next/node_modules/react]
[/usr/local/lib/node_modules/react/package.json]
[/usr/local/lib/node_modules/react]
[/usr/local/lib/node_modules/react.js]
[/usr/local/lib/node_modules/react.scss]
[/usr/local/lib/node_modules/react.json]
[/usr/local/lib/node_modules/react]
@ /usr/local/lib/node_modules/next/dist/client/index.js 197:13-29
@ /usr/local/lib/node_modules/next/dist/client/next.js
@ multi /usr/local/lib/node_modules/next/dist/client/next.js
at /usr/local/lib/node_modules/next/dist/server/build/index.js:182:21
at emitRecords.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:269:13)
at Compiler.emitRecords (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:375:38)
at emitAssets.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:262:10)
at applyPluginsAsyncSeries1.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:368:12)
at next (/usr/local/lib/node_modules/next/node_modules/tapable/lib/Tapable.js:200:11)
at Compiler.compiler.plugin (/usr/local/lib/node_modules/next/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:99:4)
at Compiler.applyPluginsAsyncSeries1 (/usr/local/lib/node_modules/next/node_modules/tapable/lib/Tapable.js:204:13)
at Compiler.afterEmit (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:365:9)
at require.forEach.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:360:15)
errors:
[ '/usr/local/lib/node_modules/next/dist/client/index.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/client\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/client\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n resolve as module\n /usr/local/lib/node_modules/next/dist/client/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/client/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/client/index.js 197:13-29\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/client/index.js\nModule not found: Error: Can\'t resolve \'react-dom\' in \'/usr/local/lib/node_modules/next/dist/client\'\nresolve \'react-dom\' in \'/usr/local/lib/node_modules/next/dist/client\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n resolve as module\n /usr/local/lib/node_modules/next/dist/client/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react-dom)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react-dom doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react-dom doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/client/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react-dom]\n[/usr/local/lib/node_modules/next/node_modules/react-dom.js]\n[/usr/local/lib/node_modules/next/node_modules/react-dom.scss]\n[/usr/local/lib/node_modules/next/node_modules/react-dom.json]\n[/usr/local/lib/node_modules/next/node_modules/react-dom]\n[/usr/local/lib/node_modules/react-dom/package.json]\n[/usr/local/lib/node_modules/react-dom]\n[/usr/local/lib/node_modules/react-dom.js]\n[/usr/local/lib/node_modules/react-dom.scss]\n[/usr/local/lib/node_modules/react-dom.json]\n[/usr/local/lib/node_modules/react-dom]\n @ /usr/local/lib/node_modules/next/dist/client/index.js 199:16-36\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/lib/app.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/app.js 31:13-29\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/lib/error-debug.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/error-debug.js 7:13-29\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/regenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n @ ./pages/frontpage.js?entry 7:19-73\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/regenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n @ ./pages/work/tango_out?entry 7:19-73\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/regenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n @ ./pages/work/sketchpacks?entry 7:19-73\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/asyncToGenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n @ ./pages/frontpage.js?entry 11:25-92\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/asyncToGenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n @ ./pages/work/tango_out?entry 11:25-92\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/asyncToGenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n @ ./pages/work/sketchpacks?entry 11:25-92\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/classCallCheck)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n @ ./pages/frontpage.js?entry 19:23-88\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/classCallCheck)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n @ ./pages/work/tango_out?entry 19:23-88\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/classCallCheck)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n @ ./pages/work/sketchpacks?entry 19:23-88\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/createClass)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n @ ./pages/frontpage.js?entry 23:20-82\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/createClass)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n @ ./pages/work/tango_out?entry 23:20-82\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/createClass)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n @ ./pages/work/sketchpacks?entry 23:20-82\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/possibleConstructorReturn)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n @ ./pages/frontpage.js?entry 27:34-110\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/possibleConstructorReturn)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n @ ./pages/work/tango_out?entry 27:34-110\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/possibleConstructorReturn)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n @ ./pages/work/sketchpacks?entry 27:34-110\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/inherits)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n @ ./pages/frontpage.js?entry 31:17-76\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/inherits)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n @ ./pages/work/tango_out?entry 31:17-76\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/inherits)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n @ ./pages/work/sketchpacks?entry 31:17-76\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/core-js/object/get-prototype-of)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n @ ./pages/frontpage.js?entry 15:22-96\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/core-js/object/get-prototype-of)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n @ ./pages/work/tango_out?entry 15:22-96\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/core-js/object/get-prototype-of)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n @ ./pages/work/sketchpacks?entry 15:22-96\n @ multi ./pages/work/sketchpacks?entry',
'/usr/local/lib/node_modules/next/dist/lib/error.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/error.js 27:13-29\n @ /usr/local/lib/node_modules/next/dist/pages/_error.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_error.js?entry',
'/usr/local/lib/node_modules/next/dist/server/document.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/server\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/server\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/server)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/server)\n resolve as module\n /usr/local/lib/node_modules/next/dist/server/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/server/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/server/document.js 32:13-29\n @ /usr/local/lib/node_modules/next/dist/pages/_document.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_document.js?entry',
'/usr/local/lib/node_modules/next/dist/lib/head.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/head.js 37:13-29\n @ /usr/local/lib/node_modules/next/dist/lib/error-debug.js\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/lib/side-effect.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/side-effect.js 37:13-29\n @ /usr/local/lib/node_modules/next/dist/lib/head.js\n @ /usr/local/lib/node_modules/next/dist/lib/error-debug.js\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/server.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n resolve as module\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules]\n[/usr/local/lib/node_modules/next/node_modules/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/server.js 18:13-29\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/server.js\n @ /usr/local/lib/node_modules/next/dist/server/document.js\n @ /usr/local/lib/node_modules/next/dist/pages/_document.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_document.js?entry',
'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/style.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n resolve as module\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules]\n[/usr/local/lib/node_modules/next/node_modules/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/style.js 37:13-29\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/server.js\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/server.js\n @ /usr/local/lib/node_modules/next/dist/server/document.js\n @ /usr/local/lib/node_modules/next/dist/pages/_document.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_document.js?entry' ],
warnings: [] }"><pre class="notranslate"><code class="notranslate">$ next build
The module 'react' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install --save react'
The module 'react-dom' was not found. Next.js requires that you include it in 'dependencies' of your 'package.json'. To add it, run 'npm install --save react-dom'
> Using external babel configuration
> location: "/Users/adam/workbench/adamkirkwood.com/portfolio/.babelrc"
> Using "webpack" config function defined in next.config.js.
> Failed to build on /var/folders/qz/xwrqt0bx4l10hj6gmvdd301w0000gn/T/1bb2c2b9-2037-464d-9e8e-189777ce93b5
{ Error: /usr/local/lib/node_modules/next/dist/client/index.js
Module not found: Error: Can't resolve 'react' in '/usr/local/lib/node_modules/next/dist/client'
resolve 'react' in '/usr/local/lib/node_modules/next/dist/client'
Parsed request is a module
using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)
Field 'browser' doesn't contain a valid alias configuration
after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)
resolve as module
/usr/local/lib/node_modules/next/dist/client/node_modules doesn't exist or is not a directory
/usr/local/lib/node_modules/next/dist/node_modules doesn't exist or is not a directory
/usr/local/lib/node_modules/node_modules doesn't exist or is not a directory
/usr/local/node_modules doesn't exist or is not a directory
/usr/node_modules doesn't exist or is not a directory
/node_modules doesn't exist or is not a directory
looking for modules in /usr/local/lib/node_modules/next/node_modules
using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)
Field 'browser' doesn't contain a valid alias configuration
after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)
using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)
no extension
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react doesn't exist
.js
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react.js doesn't exist
.scss
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react.scss doesn't exist
.json
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/next/node_modules/react.json doesn't exist
as directory
/usr/local/lib/node_modules/next/node_modules/react doesn't exist
looking for modules in /usr/local/lib/node_modules
No description file found
Field 'browser' doesn't contain a valid alias configuration
No description file found
no extension
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react doesn't exist
.js
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react.js doesn't exist
.scss
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react.scss doesn't exist
.json
Field 'browser' doesn't contain a valid alias configuration
/usr/local/lib/node_modules/react.json doesn't exist
as directory
/usr/local/lib/node_modules/react doesn't exist
[/usr/local/lib/node_modules/next/dist/client/node_modules]
[/usr/local/lib/node_modules/next/dist/node_modules]
[/usr/local/lib/node_modules/node_modules]
[/usr/local/node_modules]
[/usr/node_modules]
[/node_modules]
[/usr/local/lib/node_modules/package.json]
[/usr/local/lib/node_modules/next/node_modules/react]
[/usr/local/lib/node_modules/next/node_modules/react.js]
[/usr/local/lib/node_modules/next/node_modules/react.scss]
[/usr/local/lib/node_modules/next/node_modules/react.json]
[/usr/local/lib/node_modules/next/node_modules/react]
[/usr/local/lib/node_modules/react/package.json]
[/usr/local/lib/node_modules/react]
[/usr/local/lib/node_modules/react.js]
[/usr/local/lib/node_modules/react.scss]
[/usr/local/lib/node_modules/react.json]
[/usr/local/lib/node_modules/react]
@ /usr/local/lib/node_modules/next/dist/client/index.js 197:13-29
@ /usr/local/lib/node_modules/next/dist/client/next.js
@ multi /usr/local/lib/node_modules/next/dist/client/next.js
at /usr/local/lib/node_modules/next/dist/server/build/index.js:182:21
at emitRecords.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:269:13)
at Compiler.emitRecords (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:375:38)
at emitAssets.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:262:10)
at applyPluginsAsyncSeries1.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:368:12)
at next (/usr/local/lib/node_modules/next/node_modules/tapable/lib/Tapable.js:200:11)
at Compiler.compiler.plugin (/usr/local/lib/node_modules/next/node_modules/webpack/lib/performance/SizeLimitsPlugin.js:99:4)
at Compiler.applyPluginsAsyncSeries1 (/usr/local/lib/node_modules/next/node_modules/tapable/lib/Tapable.js:204:13)
at Compiler.afterEmit (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:365:9)
at require.forEach.err (/usr/local/lib/node_modules/next/node_modules/webpack/lib/Compiler.js:360:15)
errors:
[ '/usr/local/lib/node_modules/next/dist/client/index.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/client\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/client\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n resolve as module\n /usr/local/lib/node_modules/next/dist/client/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/client/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/client/index.js 197:13-29\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/client/index.js\nModule not found: Error: Can\'t resolve \'react-dom\' in \'/usr/local/lib/node_modules/next/dist/client\'\nresolve \'react-dom\' in \'/usr/local/lib/node_modules/next/dist/client\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/client)\n resolve as module\n /usr/local/lib/node_modules/next/dist/client/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react-dom)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react-dom.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react-dom doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react-dom.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react-dom doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/client/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react-dom]\n[/usr/local/lib/node_modules/next/node_modules/react-dom.js]\n[/usr/local/lib/node_modules/next/node_modules/react-dom.scss]\n[/usr/local/lib/node_modules/next/node_modules/react-dom.json]\n[/usr/local/lib/node_modules/next/node_modules/react-dom]\n[/usr/local/lib/node_modules/react-dom/package.json]\n[/usr/local/lib/node_modules/react-dom]\n[/usr/local/lib/node_modules/react-dom.js]\n[/usr/local/lib/node_modules/react-dom.scss]\n[/usr/local/lib/node_modules/react-dom.json]\n[/usr/local/lib/node_modules/react-dom]\n @ /usr/local/lib/node_modules/next/dist/client/index.js 199:16-36\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/lib/app.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/app.js 31:13-29\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/lib/error-debug.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/error-debug.js 7:13-29\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/regenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n @ ./pages/frontpage.js?entry 7:19-73\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/regenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n @ ./pages/work/tango_out?entry 7:19-73\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/regenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/regenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/regenerator]\n @ ./pages/work/sketchpacks?entry 7:19-73\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/asyncToGenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n @ ./pages/frontpage.js?entry 11:25-92\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/asyncToGenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n @ ./pages/work/tango_out?entry 11:25-92\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/asyncToGenerator\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/asyncToGenerator)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/asyncToGenerator]\n @ ./pages/work/sketchpacks?entry 11:25-92\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/classCallCheck)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n @ ./pages/frontpage.js?entry 19:23-88\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/classCallCheck)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n @ ./pages/work/tango_out?entry 19:23-88\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/classCallCheck\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/classCallCheck)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/classCallCheck]\n @ ./pages/work/sketchpacks?entry 19:23-88\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/createClass)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n @ ./pages/frontpage.js?entry 23:20-82\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/createClass)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n @ ./pages/work/tango_out?entry 23:20-82\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/createClass\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/createClass)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/createClass]\n @ ./pages/work/sketchpacks?entry 23:20-82\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/possibleConstructorReturn)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n @ ./pages/frontpage.js?entry 27:34-110\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/possibleConstructorReturn)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n @ ./pages/work/tango_out?entry 27:34-110\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/possibleConstructorReturn\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/possibleConstructorReturn)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/possibleConstructorReturn]\n @ ./pages/work/sketchpacks?entry 27:34-110\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/inherits)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n @ ./pages/frontpage.js?entry 31:17-76\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/inherits)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n @ ./pages/work/tango_out?entry 31:17-76\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/helpers/inherits\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/helpers/inherits)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/helpers/inherits]\n @ ./pages/work/sketchpacks?entry 31:17-76\n @ multi ./pages/work/sketchpacks?entry',
'./pages/frontpage.js?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\nresolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/core-js/object/get-prototype-of)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n @ ./pages/frontpage.js?entry 15:22-96\n @ multi ./pages/frontpage.js?entry',
'./pages/work/tango_out?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\nresolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/tango_out)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/core-js/object/get-prototype-of)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/tango_out/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n @ ./pages/work/tango_out?entry 15:22-96\n @ multi ./pages/work/tango_out?entry',
'./pages/work/sketchpacks?entry\nModule not found: Error: Can\'t resolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\nresolve \'next/node_modules/babel-runtime/core-js/object/get-prototype-of\' in \'/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks\'\n Parsed request is a module\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./pages/work/sketchpacks)\n resolve as module\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/adamkirkwood.com/node_modules doesn\'t exist or is not a directory\n /Users/adam/workbench/node_modules doesn\'t exist or is not a directory\n /Users/adam/node_modules doesn\'t exist or is not a directory\n /Users/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/package.json (relative path: ./node_modules)\n using description file: /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/package.json (relative path: ./node_modules/babel-runtime/core-js/object/get-prototype-of)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json doesn\'t exist\n as directory\n /Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of doesn\'t exist\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/sketchpacks/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/work/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/pages/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/node_modules]\n[/Users/adam/workbench/node_modules]\n[/Users/adam/node_modules]\n[/Users/node_modules]\n[/node_modules]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.js]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.scss]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of.json]\n[/Users/adam/workbench/adamkirkwood.com/portfolio/node_modules/next/node_modules/babel-runtime/core-js/object/get-prototype-of]\n @ ./pages/work/sketchpacks?entry 15:22-96\n @ multi ./pages/work/sketchpacks?entry',
'/usr/local/lib/node_modules/next/dist/lib/error.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/error.js 27:13-29\n @ /usr/local/lib/node_modules/next/dist/pages/_error.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_error.js?entry',
'/usr/local/lib/node_modules/next/dist/server/document.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/server\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/server\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/server)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/server)\n resolve as module\n /usr/local/lib/node_modules/next/dist/server/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/server/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/server/document.js 32:13-29\n @ /usr/local/lib/node_modules/next/dist/pages/_document.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_document.js?entry',
'/usr/local/lib/node_modules/next/dist/lib/head.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/head.js 37:13-29\n @ /usr/local/lib/node_modules/next/dist/lib/error-debug.js\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/dist/lib/side-effect.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/dist/lib\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./dist/lib)\n resolve as module\n /usr/local/lib/node_modules/next/dist/lib/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/dist/lib/node_modules]\n[/usr/local/lib/node_modules/next/dist/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/dist/lib/side-effect.js 37:13-29\n @ /usr/local/lib/node_modules/next/dist/lib/head.js\n @ /usr/local/lib/node_modules/next/dist/lib/error-debug.js\n @ /usr/local/lib/node_modules/next/dist/client/index.js\n @ /usr/local/lib/node_modules/next/dist/client/next.js\n @ multi /usr/local/lib/node_modules/next/dist/client/next.js',
'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/server.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n resolve as module\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules]\n[/usr/local/lib/node_modules/next/node_modules/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/server.js 18:13-29\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/server.js\n @ /usr/local/lib/node_modules/next/dist/server/document.js\n @ /usr/local/lib/node_modules/next/dist/pages/_document.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_document.js?entry',
'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/style.js\nModule not found: Error: Can\'t resolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\nresolve \'react\' in \'/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist\'\n Parsed request is a module\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./dist)\n resolve as module\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/next/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/lib/node_modules/node_modules doesn\'t exist or is not a directory\n /usr/local/node_modules doesn\'t exist or is not a directory\n /usr/node_modules doesn\'t exist or is not a directory\n /node_modules doesn\'t exist or is not a directory\n looking for modules in /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/node_modules/styled-jsx/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules/next/node_modules\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n Field \'browser\' doesn\'t contain a valid alias configuration\n after using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules)\n using description file: /usr/local/lib/node_modules/next/package.json (relative path: ./node_modules/react)\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/next/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/next/node_modules/react doesn\'t exist\n looking for modules in /usr/local/lib/node_modules\n No description file found\n Field \'browser\' doesn\'t contain a valid alias configuration\n No description file found\n no extension\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react doesn\'t exist\n .js\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.js doesn\'t exist\n .scss\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.scss doesn\'t exist\n .json\n Field \'browser\' doesn\'t contain a valid alias configuration\n /usr/local/lib/node_modules/react.json doesn\'t exist\n as directory\n /usr/local/lib/node_modules/react doesn\'t exist\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/node_modules]\n[/usr/local/lib/node_modules/next/node_modules/node_modules]\n[/usr/local/lib/node_modules/node_modules]\n[/usr/local/node_modules]\n[/usr/node_modules]\n[/node_modules]\n[/usr/local/lib/node_modules/package.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/styled-jsx/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/next/node_modules/react.js]\n[/usr/local/lib/node_modules/next/node_modules/react.scss]\n[/usr/local/lib/node_modules/next/node_modules/react.json]\n[/usr/local/lib/node_modules/next/node_modules/react]\n[/usr/local/lib/node_modules/react/package.json]\n[/usr/local/lib/node_modules/react]\n[/usr/local/lib/node_modules/react.js]\n[/usr/local/lib/node_modules/react.scss]\n[/usr/local/lib/node_modules/react.json]\n[/usr/local/lib/node_modules/react]\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/style.js 37:13-29\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/dist/server.js\n @ /usr/local/lib/node_modules/next/node_modules/styled-jsx/server.js\n @ /usr/local/lib/node_modules/next/dist/server/document.js\n @ /usr/local/lib/node_modules/next/dist/pages/_document.js?entry\n @ multi /usr/local/lib/node_modules/next/dist/pages/_document.js?entry' ],
warnings: [] }
</code></pre></div>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li><code class="notranslate">next build</code></li>
<li>Build step fails</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">I'm trying to work on my new portfolio at <a href="https://github.com/adamkirkwood/portfolio">adamkirkwood/portfolio</a>, however the build step is keeping me from pushing changes for review.</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>v3.0.1-beta.17</td>
</tr>
<tr>
<td>node</td>
<td>v8.2.0</td>
</tr>
<tr>
<td>OS</td>
<td>macOS Sierra 10.12.5</td>
</tr>
<tr>
<td>browser</td>
<td></td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.6.7</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://codesandbox.io/s/v8n1p04v85" rel="nofollow">https://codesandbox.io/s/v8n1p04v85</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">click the checkbox, the <code class="notranslate">checked</code> data changed, while the checked of the checkbox didn't, thus the UI is different from the data.</p>
<p dir="auto">This didn't occurred below vue2.6.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">the checkbox update wrongly</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">the checkbox update correctlly</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.6.6</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/s4ub8dnc/3/" rel="nofollow">https://jsfiddle.net/s4ub8dnc/3/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">I have a checkbox which needs to get it's checked state from a VueX store, but I also need to be able to determine whether or not shift was being held when the checkbox was clicked. To do this I'm using <code class="notranslate">@click.prevent</code> on the checkbox (so that I have the event being passed to the method) and then using <code class="notranslate">v-model</code> to determine the checked state.</p>
<p dir="auto">However, regardless of whether or not the <code class="notranslate">v-model</code> value is true or false, the checkbox never gains the checked state if the click is prevented. It seems that there is still a reliance on the click event in order to set the state.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">I would expect the checkbox to be checked if the <code class="notranslate">v-model</code> value is set to <code class="notranslate">true</code>, regardless of how the checkbox arrived at that state - by something else setting it to true, or by the click handler setting it.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">The click binding having <code class="notranslate">.prevent</code> on it stops the checkbox from receiving it's checked state, even when the <code class="notranslate">v-model</code> value is true</p>
<hr>
<p dir="auto">The reason why I haven't just used a setter in the computed is because the setter doesn't get given the click event, so I can determine whether or not shift was being held at the point of clicking the checkbox.</p> | 1 |
<p dir="auto">...Which works allright, except when you put them on elements which you want to be display:block-inline.</p>
<p dir="auto">This technique destroys this option, forcing you to use floats or positions instead for layout.</p>
<p dir="auto">Why not just rely on set display:none !important when the element needs to be hidden?</p> | <p dir="auto">related to issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="16856611" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/8500" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/8500/hovercard" href="https://github.com/twbs/bootstrap/pull/8500">#8500</a> , <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="14075731" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/7808" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/7808/hovercard" href="https://github.com/twbs/bootstrap/issues/7808">#7808</a> , <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="6609454" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/4929" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/4929/hovercard" href="https://github.com/twbs/bootstrap/issues/4929">#4929</a> ; using <code class="notranslate">.hidden-sm</code> to hide span within <code class="notranslate">.nav > li > a</code> . Because class is <code class="notranslate">display: block</code> above -sm then text wraps to new line. Would you consider <code class="notranslate">.hidden-*</code> classes to be <code class="notranslate">display: inline-block</code> instead ?</p>
<p dir="auto">Here's a jsfiddle of the two cases - but the repercussions could be greater outside of this situation so probably needs more consideration... <a href="http://jsfiddle.net/jholl/P86yf/" rel="nofollow">http://jsfiddle.net/jholl/P86yf/</a></p> | 1 |
<h2 dir="auto">Bug Report</h2>
<p dir="auto"><strong>Current Behavior</strong><br>
A clear and concise description of the behavior.</p>
<p dir="auto"><strong>Input Code</strong><br>
<a href="https://babeljs.io/en/repl#?babili=false&browsers=last%202%20Chrome%20versions%2C%0Alast%202%20Firefox%20versions%2C%0Alast%202%20Edge%20versions%2C%0Alast%202%20Safari%20versions&build=&builtIns=false&spec=false&loose=false&code_lz=PTAEBcAsEsGdQOYFNz3AJwIYDtYAdoAbJAE1D3QHs8l1CBPAKGnCQFtYA6NzPACj4BvAEaZ0AGlCdp6JLHABfAJSgAvAD5Q2AK6FCSgNyNi4UCLGTpnWfIVrQADyOMQEGPBKU52AOThmrBzcvAIA2gBmlJSS5hJSMnKKALoqGlq6-kYmoBFRAEwxougF8daJeQpJ9k6MQA&debug=false&forceAllTransforms=false&shippedProposals=false&circleciRepo=&evaluate=false&fileSize=false&timeTravel=false&sourceType=module&lineWrap=false&presets=env&prettier=false&targets=&version=7.5.5&externalPlugins=" rel="nofollow">REPL</a></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// this gets transpiled properly
items.map(({bar, ...rest}) => null);
let {bar, ...rest} = x;
// this doesn't
items.map(([foo, {bar, ...rest}]) => null);
let [foo2, {bar2, ...rest2}] = x;"><pre class="notranslate"><span class="pl-c">// this gets transpiled properly</span>
<span class="pl-s1">items</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">{</span>bar<span class="pl-kos">,</span> ...<span class="pl-s1">rest</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-kos">{</span>bar<span class="pl-kos">,</span> ...<span class="pl-s1">rest</span><span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-kos">;</span>
<span class="pl-c">// this doesn't</span>
<span class="pl-s1">items</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s1">foo</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>bar<span class="pl-kos">,</span> ...<span class="pl-s1">rest</span><span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-kos">[</span><span class="pl-s1">foo2</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>bar2<span class="pl-kos">,</span> ...<span class="pl-s1">rest2</span><span class="pl-kos">}</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Expected behavior/code</strong><br>
<code class="notranslate">[foo, {bar, ...rest}]</code> being transpiled since Edge doesn't support it.</p> | <p dir="auto">This looks superficially similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="284314511" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/7099" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/7099/hovercard" href="https://github.com/babel/babel/issues/7099">#7099</a> but that one is supposedly <a href="https://github.com/babel/babel/issues/7099#issuecomment-357065187" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/7099/hovercard">resolved in Babel 7</a> but my bug isnโt. Therefore Iโm filing a new one.</p>
<p dir="auto">Here is a complete repro:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm i --save @babel/[email protected] @babel/[email protected]"><pre class="notranslate">npm i --save @babel/[email protected] @babel/[email protected]</pre></div>
<p dir="auto">Then run in Node shell:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="console.log(
require('@babel/core').transform(
`
const { ...rest1 } = {};
const [{ ...rest2 }] = [{}];
`,
{
plugins: ['@babel/plugin-proposal-object-rest-spread']
}
).code
)"><pre class="notranslate"><span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span>
<span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'@babel/core'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">transform</span><span class="pl-kos">(</span>
<span class="pl-s">`</span>
<span class="pl-s">const { ...rest1 } = {};</span>
<span class="pl-s">const [{ ...rest2 }] = [{}];</span>
<span class="pl-s">`</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span><span class="pl-s">'@babel/plugin-proposal-object-rest-spread'</span><span class="pl-kos">]</span>
<span class="pl-kos">}</span>
<span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">code</span>
<span class="pl-kos">)</span></pre></div>
<p dir="auto">Notice how I have two different rest destructurings, but the second one is <em>also</em> inside an array destructuring.</p>
<p dir="auto">Output:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
const rest1 = _objectWithoutProperties({}, []);
const [{ ...rest2
}] = [{}];"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">_objectWithoutProperties</span><span class="pl-kos">(</span><span class="pl-s1">source</span><span class="pl-kos">,</span> <span class="pl-s1">excluded</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">source</span> <span class="pl-c1">==</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-k">return</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">target</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">sourceKeys</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">keys</span><span class="pl-kos">(</span><span class="pl-s1">source</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">key</span><span class="pl-kos">,</span> <span class="pl-s1">i</span><span class="pl-kos">;</span> <span class="pl-k">for</span> <span class="pl-kos">(</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">sourceKeys</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-s1">key</span> <span class="pl-c1">=</span> <span class="pl-s1">sourceKeys</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-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">excluded</span><span class="pl-kos">.</span><span class="pl-en">indexOf</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-c1">0</span><span class="pl-kos">)</span> <span class="pl-k">continue</span><span class="pl-kos">;</span> <span class="pl-s1">target</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">source</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">getOwnPropertySymbols</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">var</span> <span class="pl-s1">sourceSymbolKeys</span> <span class="pl-c1">=</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">getOwnPropertySymbols</span><span class="pl-kos">(</span><span class="pl-s1">source</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-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">sourceSymbolKeys</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-s1">key</span> <span class="pl-c1">=</span> <span class="pl-s1">sourceSymbolKeys</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-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">excluded</span><span class="pl-kos">.</span><span class="pl-en">indexOf</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-c1">0</span><span class="pl-kos">)</span> <span class="pl-k">continue</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-v">Object</span><span class="pl-kos">.</span><span class="pl-c1">prototype</span><span class="pl-kos">.</span><span class="pl-c1">propertyIsEnumerable</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">source</span><span class="pl-kos">,</span> <span class="pl-s1">key</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-k">continue</span><span class="pl-kos">;</span> <span class="pl-s1">target</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">source</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-k">return</span> <span class="pl-s1">target</span><span class="pl-kos">;</span> <span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">rest1</span> <span class="pl-c1">=</span> <span class="pl-en">_objectWithoutProperties</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">const</span> <span class="pl-kos">[</span><span class="pl-kos">{</span> ...<span class="pl-s1">rest2</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Notice how <code class="notranslate">...rest1</code> got transformed but <code class="notranslate">...rest2</code> is left intact.</p>
<p dir="auto">I expect that <code class="notranslate">...rest2</code> is also transformed.</p>
<hr>
<p dir="auto">Original issue where this got reported: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="286180365" data-permission-text="Title is private" data-url="https://github.com/facebook/create-react-app/issues/3694" data-hovercard-type="issue" data-hovercard-url="/facebook/create-react-app/issues/3694/hovercard" href="https://github.com/facebook/create-react-app/issues/3694">facebook/create-react-app#3694</a></p> | 1 |
<p dir="auto">Hello!<br>
When I execute the line in python <code class="notranslate">import numpy</code> the following error occurs:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/numpy/core/__init__.py", line 40, in <module>
from . import multiarray
File "/usr/local/lib/python3.5/dist-packages/numpy/core/multiarray.py", line 12, in <module>
from . import overrides
File "/usr/local/lib/python3.5/dist-packages/numpy/core/overrides.py", line 6, in <module>
from numpy.core._multiarray_umath import (
ImportError: /usr/local/lib/python3.5/dist-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
import numpy
File "/usr/local/lib/python3.5/dist-packages/numpy/__init__.py", line 142, in <module>
from . import core
File "/usr/local/lib/python3.5/dist-packages/numpy/core/__init__.py", line 71, in <module>
raise ImportError(msg)
ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
Here is how to proceed:
- If you're working with a numpy git repository, try `git clean -xdf`
(removes all files not under version control) and rebuild numpy.
- If you are simply trying to use the numpy version that you have installed:
your installation is broken - please reinstall numpy.
- If you have already reinstalled and that did not fix the problem, then:
1. Check that you are using the Python you expect (you're using /usr/bin/python3),
and that you have no directories in your PATH or PYTHONPATH that can
interfere with the Python and numpy versions 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
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: /usr/local/lib/python3.5/dist-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/numpy/core/__init__.py", line 40, in <module>
from . import multiarray
File "/usr/local/lib/python3.5/dist-packages/numpy/core/multiarray.py", line 12, in <module>
from . import overrides
File "/usr/local/lib/python3.5/dist-packages/numpy/core/overrides.py", line 6, in <module>
from numpy.core._multiarray_umath import (
ImportError: /usr/local/lib/python3.5/dist-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
import numpy
File "/usr/local/lib/python3.5/dist-packages/numpy/__init__.py", line 142, in <module>
from . import core
File "/usr/local/lib/python3.5/dist-packages/numpy/core/__init__.py", line 71, in <module>
raise ImportError(msg)
ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the multiarray numpy extension module failed. Most
likely you are trying to import a failed build of numpy.
Here is how to proceed:
- If you're working with a numpy git repository, try `git clean -xdf`
(removes all files not under version control) and rebuild numpy.
- If you are simply trying to use the numpy version that you have installed:
your installation is broken - please reinstall numpy.
- If you have already reinstalled and that did not fix the problem, then:
1. Check that you are using the Python you expect (you're using /usr/bin/python3),
and that you have no directories in your PATH or PYTHONPATH that can
interfere with the Python and numpy versions 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
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: /usr/local/lib/python3.5/dist-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm
</code></pre></div>
<p dir="auto">I use Python 3.5 wich works on my Raspbian.<br>
I reinstalled numpy and it still does not work. I also tried to install different versions of numpy and to install it according to this <a href="https://stackoverflow.com/questions/11443302/compiling-numpy-with-openblas-integration/14391693#14391693" rel="nofollow">guide</a> and had no success.</p> | <p dir="auto">This is on installing numpy on raspberry pi 3. I used the Noobs latest version and so using Raspbian stretch. Python was already installed, and I think numpy was already included. At the time, I think that import numpy was working well.<br>
I installed openCV and it didn't work for a while as I had not put some necessary modules, but finally got it to work. So far so good.<br>
Later I was trying to install matplotlib, and this didn't go very smoothly. I made a number of attempts where the message in the title was already flagged. I finally manage to get the import matplotlib to work, but then numpy stopped importing. Now I cannot import either matplotlib or numpy, despite having uninstalled numpy (pip3 uninstall numpy) and reinstalled:</p>
<p dir="auto">/home/pi/.local/lib/python3.5/site-packages/numpy/tests/test_warnings.py<br>
/home/pi/.local/lib/python3.5/site-packages/numpy/version.py<br>
Proceed (y/n)? y<br>
Successfully uninstalled numpy-1.16.1<br>
pi@raspberrypi:~ $ pip3 install numpy<br>
Collecting numpy<br>
Using cached <a href="https://www.piwheels.org/simple/numpy/numpy-1.16.1-cp35-cp35m-linux_armv7l.whl" rel="nofollow">https://www.piwheels.org/simple/numpy/numpy-1.16.1-cp35-cp35m-linux_armv7l.whl</a><br>
Installing collected packages: numpy<br>
Successfully installed numpy-1.16.1<br>
pi@raspberrypi:~ $</p>
<p dir="auto">Prior to uninstalling numpy, I did try to install without uninstalling, and downloaded the cached file mentioned.</p>
<p dir="auto">Now, I cannot import numpy or matplotlib and for both get a similar error and the message telling me to raise this new issue which I am doing now.</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">import numpy<br>
Traceback (most recent call last):<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/<strong>init</strong>.py", line 16, in <br>
from . import multiarray<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/multiarray.py", line 12, in <br>
from . import overrides<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/overrides.py", line 6, in <br>
from numpy.core._multiarray_umath import (<br>
ImportError: /home/pi/.local/lib/python3.5/site-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm</p>
</blockquote>
</blockquote>
</blockquote>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "<pyshell#0>", line 1, in <br>
import numpy<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/<strong>init</strong>.py", line 142, in <br>
from . import core<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/<strong>init</strong>.py", line 47, in <br>
raise ImportError(msg)<br>
ImportError:</p>
<p dir="auto">IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!</p>
<p dir="auto">Importing the multiarray numpy extension module failed. Most<br>
likely you are trying to import a failed build of numpy.<br>
Here is how to proceed:</p>
<ul dir="auto">
<li>If you're working with a numpy git repository, try <code class="notranslate">git clean -xdf</code><br>
(removes all files not under version control) and rebuild numpy.</li>
<li>If you are simply trying to use the numpy version that you have installed:<br>
your installation is broken - please reinstall numpy.</li>
<li>If you have already reinstalled and that did not fix the problem, then:
<ol dir="auto">
<li>
<p dir="auto">Check that you are using the Python you expect (you're using /usr/bin/python3),<br>
and that you have no directories in your PATH or PYTHONPATH that can<br>
interfere with the Python and numpy versions you're trying to use.</p>
</li>
<li>
<p dir="auto">If (1) looks fine, you can open a new issue at<br>
<a href="https://github.com/numpy/numpy/issues">https://github.com/numpy/numpy/issues</a>. Please include details on:</p>
<ul dir="auto">
<li>how you installed Python</li>
<li>how you installed numpy</li>
<li>your operating system</li>
<li>whether or not you have multiple versions of Python installed</li>
<li>if you built from source, your compiler versions and ideally a build log</li>
</ul>
<p dir="auto">Note: this error has many possible causes, so please don't comment on<br>
an existing issue about this - open a new one instead.</p>
</li>
</ol>
</li>
</ul>
<p dir="auto">Original error was: /home/pi/.local/lib/python3.5/site-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">import matplotlib<br>
Traceback (most recent call last):<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/<strong>init</strong>.py", line 16, in <br>
from . import multiarray<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/multiarray.py", line 12, in <br>
from . import overrides<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/overrides.py", line 6, in <br>
from numpy.core._multiarray_umath import (<br>
ImportError: /home/pi/.local/lib/python3.5/site-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm</p>
</blockquote>
</blockquote>
</blockquote>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "<pyshell#1>", line 1, in <br>
import matplotlib<br>
File "/home/pi/.local/lib/python3.5/site-packages/matplotlib/<strong>init</strong>.py", line 141, in <br>
from . import cbook, rcsetup<br>
File "/home/pi/.local/lib/python3.5/site-packages/matplotlib/cbook/<strong>init</strong>.py", line 33, in <br>
import numpy as np<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/<strong>init</strong>.py", line 142, in <br>
from . import core<br>
File "/home/pi/.local/lib/python3.5/site-packages/numpy/core/<strong>init</strong>.py", line 47, in <br>
raise ImportError(msg)<br>
ImportError:</p>
<p dir="auto">IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!</p>
<p dir="auto">Importing the multiarray numpy extension module failed. Most<br>
likely you are trying to import a failed build of numpy.<br>
Here is how to proceed:</p>
<ul dir="auto">
<li>If you're working with a numpy git repository, try <code class="notranslate">git clean -xdf</code><br>
(removes all files not under version control) and rebuild numpy.</li>
<li>If you are simply trying to use the numpy version that you have installed:<br>
your installation is broken - please reinstall numpy.</li>
<li>If you have already reinstalled and that did not fix the problem, then:
<ol dir="auto">
<li>
<p dir="auto">Check that you are using the Python you expect (you're using /usr/bin/python3),<br>
and that you have no directories in your PATH or PYTHONPATH that can<br>
interfere with the Python and numpy versions you're trying to use.</p>
</li>
<li>
<p dir="auto">If (1) looks fine, you can open a new issue at<br>
<a href="https://github.com/numpy/numpy/issues">https://github.com/numpy/numpy/issues</a>. Please include details on:</p>
<ul dir="auto">
<li>how you installed Python</li>
<li>how you installed numpy</li>
<li>your operating system</li>
<li>whether or not you have multiple versions of Python installed</li>
<li>if you built from source, your compiler versions and ideally a build log</li>
</ul>
<p dir="auto">Note: this error has many possible causes, so please don't comment on<br>
an existing issue about this - open a new one instead.</p>
</li>
</ol>
</li>
</ul>
<p dir="auto">Original error was: /home/pi/.local/lib/python3.5/site-packages/numpy/core/_multiarray_umath.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: cblas_sgemm</p>
<p dir="auto">I hope this helps and that it will eventually contribute to making the installation of these two packages easier in the future.</p>
<p dir="auto">Thanks,</p>
<p dir="auto">Thomas</p> | 1 |
<p dir="auto">by <strong>michael.jones</strong>:</p>
<pre class="notranslate">Developer noted presence of JSON marshalling/unmarshalling support in Int but not in Rat.</pre> | <p dir="auto">I would like to propose the addition of a set of functions and supporting data types to support getting / setting terminal window size across platforms.</p>
<p dir="auto">This would also likely require the addition of something like this to x/sys:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="func GetWindowSize(fd int) (winsize *Winsize, err error) {}
func SetWindowSize(fd int, ws *Winsize) (err error) {}
type Winsize struct {
Row uint16
Col uint16
Xpixel uint16
Ypixel uint16
}"><pre class="notranslate"><code class="notranslate">func GetWindowSize(fd int) (winsize *Winsize, err error) {}
func SetWindowSize(fd int, ws *Winsize) (err error) {}
type Winsize struct {
Row uint16
Col uint16
Xpixel uint16
Ypixel uint16
}
</code></pre></div>
<p dir="auto">On Linux, OS X, etc. this is done via syscalls using ioctl(), etc. On Windows, this is done possibly via GetConsoleScreenBufferInfo and SetConsoleWindowInfo. On Solaris, this is done via libc.ioctl().</p>
<p dir="auto">Docker (pkg/term/*) and other Go-based projects like to retrieve or set this information, it would be helpful if this was abstracted away for various projects as can be seen in a simple github search of Go source files:</p>
<p dir="auto"><a href="https://github.com/search?utf8=%E2%9C%93&q=%22TIOCGWINSZ%22+extension%3Ago&type=Code&ref=advsearch&l=">https://github.com/search?utf8=%E2%9C%93&q=%22TIOCGWINSZ%22+extension%3Ago&type=Code&ref=advsearch&l=</a></p>
<p dir="auto">I am willing to provide the implementation and tests for Solaris, and Linux, and I can attempt one for Windows.</p>
<p dir="auto">I have not proposed an addition before to any of the Go packages or tools, so please forgive me if I have not adhered to the correct process ( I'm attempting to follow <a href="https://github.com/golang/proposal#readme">https://github.com/golang/proposal#readme</a> ).</p>
<p dir="auto">I don't know if the sys package is the most appropriate place for this or not; I'm just trying to figure out how to avoid the current situation of duplicating terminal information code across various Go projects in the community leading to them not working as expected or being unsupported on some platforms.</p> | 0 |
<p dir="auto">in the 0.18.9 version, the Powertoys ran smoothly. but in the update of 0.19.1, it started not to open. even though I have enabled the Run as Administrator. Most loved feature of the Powertoys is the Powertoys run. Hope yo fix it soon</p> | <p dir="auto">I think most likely this is a duplicate</p> | 0 |
<p dir="auto"><a href="https://github.com/lightningtgc/material-refresh">https://github.com/lightningtgc/material-refresh</a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5656924/23193629/ec2ef45c-f8e4-11e6-9214-6e692dec3340.gif"><img src="https://cloud.githubusercontent.com/assets/5656924/23193629/ec2ef45c-f8e4-11e6-9214-6e692dec3340.gif" alt="below" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">It looks pretty nice, but it's not a react component</p> | <p dir="auto">I want to implement a ListView with Pull to Refresh control like Android.</p>
<p dir="auto">But I feel confused about how to trigger the event and how to notify the "ListView" to update. I'm not using Flux. Just react. Is there any "ListView with Pull to Refresh" demo? What is the best for controlling the data and event flow if not using any Flux.</p>
<p dir="auto">It's very urgent, if there is no available code, you can tell me a idea or solution to it?</p>
<p dir="auto">Thx.</p> | 1 |
<p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</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>
failed to fit in any node Insufficient CPU<br>
scheduler and other</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br>
BUG</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.7", GitCommit:"a2cba278cba1f6881bb0a7704d9cac6fca6ed435", GitTreeState:"clean", BuildDate:"2016-09-12T23:15:30Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.7", GitCommit:"a2cba278cba1f6881bb0a7704d9cac6fca6ed435", GitTreeState:"clean", BuildDate:"2016-09-12T23:08:43Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.7", GitCommit:"a2cba278cba1f6881bb0a7704d9cac6fca6ed435", GitTreeState:"clean", BuildDate:"2016-09-12T23:15:30Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"3", GitVersion:"v1.3.7", GitCommit:"a2cba278cba1f6881bb0a7704d9cac6fca6ed435", GitTreeState:"clean", BuildDate:"2016-09-12T23:08:43Z", GoVersion:"go1.6.2", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release):</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="NAME="Ubuntu"
VERSION="14.04.1 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.1 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/""><pre class="notranslate"><code class="notranslate">NAME="Ubuntu"
VERSION="14.04.1 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.1 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
</code></pre></div>
<ul dir="auto">
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Linux prod-kube-master-01 3.13.0-36-generic #63-Ubuntu SMP Wed Sep 3 21:30:07 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux"><pre class="notranslate"><code class="notranslate">Linux prod-kube-master-01 3.13.0-36-generic #63-Ubuntu SMP Wed Sep 3 21:30:07 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
</code></pre></div>
<ul dir="auto">
<li><strong>Install tools</strong>:<br>
only kubernetes componenet and docker<br>
kubectl, kuberentesa-apiserver ,kubelet ,kube-scheduler</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
rolling-update is not working. after checking kubectl events find out it is giving below error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="9m 1d 107 xxxx-916abedbd8771c69102548f7167bf9b7-4snr0 Pod Warning FailedScheduling {default-scheduler } pod (xxx-916abedbd8771c69102548f7167bf9b7-4snr0) failed to fit in any node
fit failure on node (prod-kube-minion-02): Insufficient CPU
fit failure on node (prod-kube-minion-04): Insufficient CPU
fit failure on node (prod-kube-minion-03): Insufficient CPU
fit failure on node (prod-kube-minion-01): Insufficient CPU"><pre class="notranslate"><code class="notranslate">9m 1d 107 xxxx-916abedbd8771c69102548f7167bf9b7-4snr0 Pod Warning FailedScheduling {default-scheduler } pod (xxx-916abedbd8771c69102548f7167bf9b7-4snr0) failed to fit in any node
fit failure on node (prod-kube-minion-02): Insufficient CPU
fit failure on node (prod-kube-minion-04): Insufficient CPU
fit failure on node (prod-kube-minion-03): Insufficient CPU
fit failure on node (prod-kube-minion-01): Insufficient CPU
</code></pre></div>
<p dir="auto">it is not giving any information about usage in the above message (available and requested cpu)<br>
i have checked other things like memory and hard-disk anf there is no issue with them more then 80% of mem and cpu are free</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Name: prod-kube-minion-04
Labels: beta.kubernetes.io/arch=amd64
beta.kubernetes.io/os=linux
kubernetes.io/hostname=prod-kube-minion-04
Taints: <none>
CreationTimestamp: Tue, 04 Oct 2016 13:17:48 +0530
Phase:
Conditions:
Type Status LastHeartbeatTime LastTransitionTime Reason Message
---- ------ ----------------- ------------------ ------ -------
OutOfDisk False Mon, 17 Oct 2016 10:59:22 +0530 Tue, 04 Oct 2016 13:42:52 +0530 KubeletHasSufficientDisk kubelet has sufficient disk space available
MemoryPressure False Mon, 17 Oct 2016 10:59:22 +0530 Tue, 04 Oct 2016 13:17:48 +0530 KubeletHasSufficientMemory kubelet has sufficient memory available
Ready True Mon, 17 Oct 2016 10:59:22 +0530 Tue, 04 Oct 2016 13:42:52 +0530 KubeletReady kubelet is posting ready status
Addresses: 10.70.43.72,10.70.43.72
Capacity:
alpha.kubernetes.io/nvidia-gpu: 0
cpu: 8
memory: 32948064Ki
pods: 110
Allocatable:
alpha.kubernetes.io/nvidia-gpu: 0
cpu: 8
memory: 32948064Ki
pods: 110
System Info:
Machine ID: 1567d6e82a6770a1b07ff67b5426933c
System UUID: EC20081E-60CF-FC0D-A3FC-52D37B90A9ED
Boot ID: 61d04907-77b7-4106-b32e-dbad8ae48879
Kernel Version: 3.13.0-36-generic
OS Image: Ubuntu 14.04.1 LTS
Operating System: linux
Architecture: amd64
Container Runtime Version: docker://1.11.0
Kubelet Version: v1.3.7
Kube-Proxy Version: v1.3.7
ExternalID: prod-kube-minion-04
Non-terminated Pods: (11 in total)
Namespace Name CPU Requests CPU Limits Memory Requests Memory Limits
--------- ---- ------------ ---------- --------------- -------------
xxx
xxx
xxx
Allocated resources:
(Total limits may be over 100 percent, i.e., overcommitted. More info: http://releases.k8s.io/HEAD/docs/user-guide/compute-resources.md)
CPU Requests CPU Limits Memory Requests Memory Limits
------------ ---------- --------------- -------------
4260m (53%) 0 (0%) 15840Mi (49%) 15840Mi (49%)"><pre class="notranslate"><code class="notranslate">Name: prod-kube-minion-04
Labels: beta.kubernetes.io/arch=amd64
beta.kubernetes.io/os=linux
kubernetes.io/hostname=prod-kube-minion-04
Taints: <none>
CreationTimestamp: Tue, 04 Oct 2016 13:17:48 +0530
Phase:
Conditions:
Type Status LastHeartbeatTime LastTransitionTime Reason Message
---- ------ ----------------- ------------------ ------ -------
OutOfDisk False Mon, 17 Oct 2016 10:59:22 +0530 Tue, 04 Oct 2016 13:42:52 +0530 KubeletHasSufficientDisk kubelet has sufficient disk space available
MemoryPressure False Mon, 17 Oct 2016 10:59:22 +0530 Tue, 04 Oct 2016 13:17:48 +0530 KubeletHasSufficientMemory kubelet has sufficient memory available
Ready True Mon, 17 Oct 2016 10:59:22 +0530 Tue, 04 Oct 2016 13:42:52 +0530 KubeletReady kubelet is posting ready status
Addresses: 10.70.43.72,10.70.43.72
Capacity:
alpha.kubernetes.io/nvidia-gpu: 0
cpu: 8
memory: 32948064Ki
pods: 110
Allocatable:
alpha.kubernetes.io/nvidia-gpu: 0
cpu: 8
memory: 32948064Ki
pods: 110
System Info:
Machine ID: 1567d6e82a6770a1b07ff67b5426933c
System UUID: EC20081E-60CF-FC0D-A3FC-52D37B90A9ED
Boot ID: 61d04907-77b7-4106-b32e-dbad8ae48879
Kernel Version: 3.13.0-36-generic
OS Image: Ubuntu 14.04.1 LTS
Operating System: linux
Architecture: amd64
Container Runtime Version: docker://1.11.0
Kubelet Version: v1.3.7
Kube-Proxy Version: v1.3.7
ExternalID: prod-kube-minion-04
Non-terminated Pods: (11 in total)
Namespace Name CPU Requests CPU Limits Memory Requests Memory Limits
--------- ---- ------------ ---------- --------------- -------------
xxx
xxx
xxx
Allocated resources:
(Total limits may be over 100 percent, i.e., overcommitted. More info: http://releases.k8s.io/HEAD/docs/user-guide/compute-resources.md)
CPU Requests CPU Limits Memory Requests Memory Limits
------------ ---------- --------------- -------------
4260m (53%) 0 (0%) 15840Mi (49%) 15840Mi (49%)
</code></pre></div>
<p dir="auto">every other node have free resource according to kubectl describe node<br>
and i am facing this issue with every other app as well<br>
i have brought a new node and rolling-update works fine so its not pod which is requesting more cpu then node have</p>
<p dir="auto">this is the resource limit i have given to every app</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" resources:
limits:
memory: 1500Mi
requests:
cpu: 420m"><pre class="notranslate"><code class="notranslate"> resources:
limits:
memory: 1500Mi
requests:
cpu: 420m
</code></pre></div>
<p dir="auto">and i think it should give usage in error msg as well.</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
i have expected it to deploy successfully as every node have sufficient cpu,disk and memory</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:<br>
i have upgraded my kuberentes 2 weeks back to 1.3.7 so it may be problem in this version</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>.): 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.): fialed</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.0", GitCommit:"a16c0a7f71a6f93c7e0f222d961f4675cd97a46b", GitTreeState:"clean", BuildDate:"2016-09-26T18:16:57Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: local VirtualBox machines managed with Vagrant</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): Ubuntu 16.04 (both host and VMs)</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux kubenode01 4.4.0-38-generic <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35453339" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/57" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/57/hovercard" href="https://github.com/kubernetes/kubernetes/pull/57">#57</a>-Ubuntu SMP Tue Sep 6 15:42:33 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: kubeadm</li>
<li><strong>Others</strong>: Vagrant</li>
</ul>
<p dir="auto"><strong>What happened</strong>: I'm testing a Kubernetes cluster with VirtualBox and Vagrant. Every VM has an NATed interface (eth0) and a Host-Only interface (eth1). I wanted to make the first node try to join the master using the Host-Only IP address because Kubernetes is listening on all interfaces by default.</p>
<p dir="auto"><strong>What you expected to happen</strong>: Since the master is listening to all interfaces available, I was expecting it to just work.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible): Setup two VMs, with one NATed interface, and one Host-Only interface. Follow steps from <a href="http://kubernetes.io/docs/getting-started-guides/kubeadm/" rel="nofollow">http://kubernetes.io/docs/getting-started-guides/kubeadm/</a> but instead of using exactly the <code class="notranslate">kubeadm join ...</code> command-line returned by the master, change the IP address to the one of the Host-Only interface.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>: You can use this to reproduce the issue: <a href="https://github.com/hgfischer/Kubernetes14">https://github.com/hgfischer/Kubernetes14</a></p> | 0 |
<p dir="auto">The google custom search on <a href="http://kubernetes.io/v1.1/" rel="nofollow">http://kubernetes.io/v1.1/</a> gives results for both v1.0 and v1.1, and the 1.0 results are often ranked higher than the 1.1 results. We should either update the custom search config to only crawl the latest version of the docs, or create multiple custom searches so searching from the 1.0 docs will give 1.0 results.</p> | <p dir="auto">After changing kubemar-scale to run 2000-node kubemarks (with protobufs), it is failing with errors like these:</p>
<p dir="auto">14:38:23 [Feature:Performance] should be able to handle 30 pods per node [It]<br>
14:38:23 /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/load.go:174<br>
14:38:23<br>
14:38:23 scaling rc load-small-rc-3813 for the first time<br>
14:38:23 Expected error:<br>
14:38:23 <*errors.errorString | 0xc8216acd70>: {<br>
14:38:23 s: "error while scaling RC load-small-rc-3813 to 2 replicas: timed out waiting for the condition",<br>
14:38:23 }<br>
14:38:23 error while scaling RC load-small-rc-3813 to 2 replicas: timed out waiting for the condition<br>
14:38:23 not to have occurred</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/davidopp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/davidopp">@davidopp</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gmarek/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gmarek">@gmarek</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/fgrzadkowski/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/fgrzadkowski">@fgrzadkowski</a> <a class="team-mention js-team-mention notranslate" data-error-text="Failed to load team members" data-id="3959732" data-permission-text="Team members are private" data-url="/orgs/kubernetes/teams/sig-scalability/members" data-hovercard-type="team" data-hovercard-url="/orgs/kubernetes/teams/sig-scalability/hovercard" href="https://github.com/orgs/kubernetes/teams/sig-scalability">@kubernetes/sig-scalability</a></p> | 0 |
<p dir="auto">The formatting on a .html file is not working if there is for example a <code class="notranslate"><template></code> tag in it:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<template>
<require from="valueConverters"></require>
<div class="artistView" if.bind="!loading">
<div class="row">
<div class="col-xs-12">
<h3>${artist.name}</h3>
</div>
</div>
</div>
</template>"><pre class="notranslate"><code class="notranslate"><template>
<require from="valueConverters"></require>
<div class="artistView" if.bind="!loading">
<div class="row">
<div class="col-xs-12">
<h3>${artist.name}</h3>
</div>
</div>
</div>
</template>
</code></pre></div>
<p dir="auto">Without the tag, the formatting is working. Please support any tags here. Thanks.
</p><ul dir="auto">
<li>VSCode Version: 1.1.0</li>
<li>OS Version: Win10</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Copy my code</li>
<li>paste it in VSCode</li>
<li>press shift + alt + f</li>
<li>code will not be formatted < --- wrong, should be formatted</li>
<li>remove the tags
</li><li>press shift + alt + f</li>
<li>code will be formatted</li>
</ol><p></p> | <ul dir="auto">
<li>VSCode Version: 1.0.0</li>
<li>OS Version: OSX 10.11.4</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Try to auto format the following HTML<br>
<code class="notranslate"><template><div>Hello</div><div>World</div></template></code></li>
</ol>
<p dir="auto">I expect to get something like this</p>
<p dir="auto"><code class="notranslate"><template></code><br>
<code class="notranslate">____<div>Hello</div></code><br>
<code class="notranslate">____<div>World</div></code><br>
<code class="notranslate"></template></code></p>
<p dir="auto">But it does not work. If I replace the <code class="notranslate"><template></code> tag with <code class="notranslate"><div></code> then the auto format works correctly. This issue was not present in the previous version.</p>
<p dir="auto">Thanks,</p> | 1 |
<p dir="auto">When searching in a directory (via right-clicking on the folder in the left-hand pane), for the string "verify", the message shows "69 results found in 13 files for verify". However, only four files are listed, with the rest of the results not shown. I'm inclined to believe that the text is correct, rather than the results shown, as I know of additional files that contain the string "verify" in that subdirectory that are not displayed.</p>
<p dir="auto">The folder I'm attempting to search in is greyed out (I'm searching a subdirectory of the "vendor" directory, in a Symfony 2 PHP project), but I have the "Exclude VCS Ignored Paths" option unchecked in my settings. The problem also occurs when atom is run with the <code class="notranslate">--safe</code> switch and occurs whether or not the regex option is used.</p>
<p dir="auto">I'm doing this in Window 8.1 with Atom 0.153.0 installed via Chocolatey.</p>
<p dir="auto">Please see the screenshot below (some directory names have been redacted).</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/783292/5341724/2774a3de-7ef0-11e4-865b-cca439a1da65.png"><img src="https://cloud.githubusercontent.com/assets/783292/5341724/2774a3de-7ef0-11e4-865b-cca439a1da65.png" alt="atom" style="max-width: 100%;"></a></p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/64050/3927598/37fd1176-23fd-11e4-99e2-d9a69afc72fd.gif"><img src="https://cloud.githubusercontent.com/assets/64050/3927598/37fd1176-23fd-11e4-99e2-d9a69afc72fd.gif" alt="find" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">I'm looking for a word in a project. I know the first result doesn't have what I want. I hide the first result, but there are no more results. I need to scroll to trigger the rest of the results to be fetched, and then I can hide the first listing.</p>
<p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/benogle/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/benogle">@benogle</a></p> | 1 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Electron Version</h3>
<p dir="auto">11.3.0</p>
<h3 dir="auto">What operating system are you using?</h3>
<p dir="auto">macOS</p>
<h3 dir="auto">Operating System Version</h3>
<p dir="auto">macOS Big Sur 11.5.1</p>
<h3 dir="auto">What arch are you using?</h3>
<p dir="auto">arm64 (including Apple Silicon)</p>
<h3 dir="auto">Last Known Working Electron version</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">When the <code class="notranslate">frame: false</code> option is passed to the <code class="notranslate">new BrowserWindow()</code> options, all of the window is a canvas for HTML that is clickable.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The top ~20 pixels of the frameless window is not clickable, and doesn't have events. It's as if the title bar was there, but invisible. This is the code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const { app, BrowserWindow } = require("electron");
app.on("ready", () => {
const child = new BrowserWindow({ frame: false });
child.loadURL("https://github.com");
child.once("ready-to-show", () => {
child.show();
});
});"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span> app<span class="pl-kos">,</span> BrowserWindow <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">"electron"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"ready"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">child</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">BrowserWindow</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">frame</span>: <span class="pl-c1">false</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-en">loadURL</span><span class="pl-kos">(</span><span class="pl-s">"https://github.com"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-en">once</span><span class="pl-kos">(</span><span class="pl-s">"ready-to-show"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-en">show</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">See a recording of the bug in action, expected the whole icon/button to be hoverable+clickable but seems like something is "covering" them:</p>
<details open="" class="details-reset border rounded-2">
<summary class="px-3 py-2">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video">
<path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path>
</svg>
<span aria-label="Video description electron-bug.mp4" class="m-1">electron-bug.mp4</span>
<span class="dropdown-caret"></span>
</summary>
<video src="https://user-images.githubusercontent.com/2801252/130335574-d3c9b9a4-e949-4af2-8150-6bde52196cf2.mp4" data-canonical-src="https://user-images.githubusercontent.com/2801252/130335574-d3c9b9a4-e949-4af2-8150-6bde52196cf2.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" style="max-height:640px; min-height: 200px">
</video>
</details>
<h3 dir="auto">Testcase Gist URL</h3>
<p dir="auto"><a href="https://gist.github.com/franciscop/20a6fbd380ad10678e512f14c76be125">https://gist.github.com/franciscop/20a6fbd380ad10678e512f14c76be125</a></p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">Something interesting is that, playing with the option <code class="notranslate">titleBarStyle</code> you can get one version where this particular issue is fixed (BUT it requires you to show the buttons on hover, which of course it's an impossible requirement in many cases, so it's still a bug):</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const { app, BrowserWindow } = require("electron");
app.on("ready", () => {
const child = new BrowserWindow({
frame: false,
// We don't want the buttons, but at least this makes more real estate clickable?
titleBarStyle: "customButtonsOnHover"
});
child.loadURL("https://github.com");
child.once("ready-to-show", () => {
child.show();
});
});"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span> app<span class="pl-kos">,</span> BrowserWindow <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">"electron"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"ready"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">child</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">BrowserWindow</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">frame</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c">// We don't want the buttons, but at least this makes more real estate clickable?</span>
<span class="pl-c1">titleBarStyle</span>: <span class="pl-s">"customButtonsOnHover"</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-en">loadURL</span><span class="pl-kos">(</span><span class="pl-s">"https://github.com"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-en">once</span><span class="pl-kos">(</span><span class="pl-s">"ready-to-show"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">child</span><span class="pl-kos">.</span><span class="pl-en">show</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">See how now you can hover on all the elements, BUT it also displays the buttons on hover:</p>
<details open="" class="details-reset border rounded-2">
<summary class="px-3 py-2">
<svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video">
<path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path>
</svg>
<span aria-label="Video description electron-almost-fixed.mp4" class="m-1">electron-almost-fixed.mp4</span>
<span class="dropdown-caret"></span>
</summary>
<video src="https://user-images.githubusercontent.com/2801252/130335667-7106286f-2203-417f-99c9-68e8a832abdc.mp4" data-canonical-src="https://user-images.githubusercontent.com/2801252/130335667-7106286f-2203-417f-99c9-68e8a832abdc.mp4" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" style="max-height:640px; min-height: 200px">
</video>
</details>
<p dir="auto">I tried <code class="notranslate">hidden</code> and <code class="notranslate">hiddenInset</code> but they oddly enough do show the controls and they still have the previous issue as the commented here originally (or even worse in the case of <code class="notranslate">hiddenInset</code>).</p>
<p dir="auto">Related bugs:</p>
<ul dir="auto">
<li><a href="https://github.com/maxogden/menubar/issues/172" data-hovercard-type="issue" data-hovercard-url="/maxogden/menubar/issues/172/hovercard">This bug in menubar</a> is definitely the same thing.</li>
<li>I found <a href="https://github.com/electron/electron/issues/26720" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/26720/hovercard">another slightly related</a> but probably different bug since it's in a different platform, so I believe it might be a different thing (the video linked is dead so cannot verify).</li>
</ul>
<h3 dir="auto">Code dive-in</h3>
<p dir="auto">I'm way out of my depth here, but it seems <a href="https://github.com/electron/electron/blob/main/shell/browser/native_window_mac.mm#L357">this line of code</a> is the one making the title bar transparent when <code class="notranslate">frame: false</code>:</p>
<div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" if (transparent() || !has_frame()) {
// Don't show title bar.
[window_ setTitlebarAppearsTransparent:YES];
[window_ setTitleVisibility:NSWindowTitleHidden];"><pre class="notranslate"> <span class="pl-k">if</span> (transparent() || !has_frame()) {
<span class="pl-c"><span class="pl-c">//</span> Don't show title bar.</span>
[window_ setTitlebarAppearsTransparent:YES];
[window_ setTitleVisibility:NSWindowTitleHidden];</pre></div>
<p dir="auto">And then <a href="https://github.com/electron/electron/blob/main/shell/browser/native_window_mac.mm#L1479">this conditional</a> makes it "visible" if it's not <code class="notranslate">customButtonsOnHover</code>? Maybe? (as I said, unfortunately I can report the bug but not sure if I follow the correct code for the bug here):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" if (title_bar_style_ == TitleBarStyle::kCustomButtonsOnHover)
[buttons_proxy_ setVisible:visible];
else
InternalSetWindowButtonVisibility(visible);"><pre class="notranslate"><code class="notranslate"> if (title_bar_style_ == TitleBarStyle::kCustomButtonsOnHover)
[buttons_proxy_ setVisible:visible];
else
InternalSetWindowButtonVisibility(visible);
</code></pre></div> | <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 a feature request that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Problem Description</h3>
<p dir="auto">IIUC, when using the <code class="notranslate">app.requestSingleInstanceLock();</code> function in our electron main process, when it returns <code class="notranslate">false</code> we would usually exit the second created process, since the event will be forwarded to the first instance. My issue here is that when exiting the second process, I may want to get feedback from the main instance to know what exit code to return with. Say I wanted to open a resource but it failed, I would like my second process to exit with code != 0. Maybe a CLI argument passed was bogus as well, which case I'd like to exit with code != 0 again.</p>
<h3 dir="auto">Proposed Solution</h3>
<p dir="auto">Since it would be weird to change the return type of <code class="notranslate">app.requestSingleInstanceLock()</code>, maybe add a new <code class="notranslate">app.waitSingleInstanceResponse()</code> that would return a promise with the value set from a new callback function in the <code class="notranslate">second-instance</code> event: <code class="notranslate">event.setResponse(data)</code>. Data type is left to implementers to decide what is easier/better. String is fine with me, or serialization could be done by the framework, I don't know what's best.</p>
<h3 dir="auto">Alternatives Considered</h3>
<p dir="auto">I would have liked to tap into any already involved IPC mechanism used for that feature, but I don't know where to look for that, and it feels a bit hacky IMO.</p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">This new flow would allow to put most argument parsing into the main single instance process, and avoid thinking about how to break the processing in the temporary second process and then maybe duplicate parsing again in the main instance. Please tell me if I just approach the issue from the wrong angle as well.</p> | 0 |
<p dir="auto">Following PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="98053276" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/12001" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/12001/hovercard" href="https://github.com/kubernetes/kubernetes/pull/12001">#12001</a>.</p>
<p dir="auto">From what I can gather, there are 3 sets of changes that need to be made to finish off the experimental api support. Deep copies and conversions need to be autogenerated, the client library needs support, as does kubectl.</p>
<p dir="auto">Within the master, we now have types (and their conversions and deep copies) being generated in multiple packages. However, types from the experimental api may refer to types in the standard api. However, since the deep copies and conversions are not exported, they must be regenerated in each package. This leads to duplicate (albeit autogenerated) code. We can avoid this by modifying the autogeneration code to use Scheme.DeepCopy/Scheme.Convert when we find a type that has been declared in another package. Alternatively, we may move the conversion and deepcopy functions to a common location. The disadvantage with the second approach is that we have a new package that needs to be imported everywhere as both pkg/api and pkg/expapi should be initialized before adding the functions (it <em>may</em> be safe to add the functions before the types, but if so this isn't clearly stated anywhere).</p>
<p dir="auto">For the client library, the Config object causes trouble.</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type Config struct {
// Host must be a host string, a host:port pair, or a URL to the base of the API.
Host string
// Prefix is the sub path of the server. If not specified, the client will set
// a default value. Use "/" to indicate the server root should be used
Prefix string
// Version is the API version to talk to. Must be provided when initializing
// a RESTClient directly. When initializing a Client, will be set with the default
// code version.
Version string
// Codec specifies the encoding and decoding behavior for runtime.Objects passed
// to a RESTClient or Client. Required when initializing a RESTClient, optional
// when initializing a Client.
Codec runtime.Codec
// Server requires Basic authentication
Username string
Password string
// Server requires Bearer authentication. This client will not attempt to use
// refresh tokens for an OAuth2 flow.
// TODO: demonstrate an OAuth2 compatible client.
BearerToken string
// TLSClientConfig contains settings to enable transport layer security
TLSClientConfig
// Server should be accessed without verifying the TLS
// certificate. For testing only.
Insecure bool
// UserAgent is an optional field that specifies the caller of this request.
UserAgent string
// Transport may be used for custom HTTP behavior. This attribute may not
// be specified with the TLS client certificate options. Use WrapTransport
// for most client level operations.
Transport http.RoundTripper
// WrapTransport will be invoked for custom HTTP behavior after the underlying
// transport is initialized (either the transport created from TLSClientConfig,
// Transport, or http.DefaultTransport). The config may layer other RoundTrippers
// on top of the returned RoundTripper.
WrapTransport func(rt http.RoundTripper) http.RoundTripper
// QPS indicates the maximum QPS to the master from this client. If zero, QPS is unlimited.
QPS float32
// Maximum burst for throttle
Burst int
}"><pre class="notranslate"><span class="pl-k">type</span> <span class="pl-smi">Config</span> <span class="pl-k">struct</span> {
<span class="pl-c">// Host must be a host string, a host:port pair, or a URL to the base of the API.</span>
<span class="pl-c1">Host</span> <span class="pl-smi">string</span>
<span class="pl-c">// Prefix is the sub path of the server. If not specified, the client will set</span>
<span class="pl-c">// a default value. Use "/" to indicate the server root should be used</span>
<span class="pl-c1">Prefix</span> <span class="pl-smi">string</span>
<span class="pl-c">// Version is the API version to talk to. Must be provided when initializing</span>
<span class="pl-c">// a RESTClient directly. When initializing a Client, will be set with the default</span>
<span class="pl-c">// code version.</span>
<span class="pl-c1">Version</span> <span class="pl-smi">string</span>
<span class="pl-c">// Codec specifies the encoding and decoding behavior for runtime.Objects passed</span>
<span class="pl-c">// to a RESTClient or Client. Required when initializing a RESTClient, optional</span>
<span class="pl-c">// when initializing a Client.</span>
<span class="pl-c1">Codec</span> runtime.<span class="pl-smi">Codec</span>
<span class="pl-c">// Server requires Basic authentication</span>
<span class="pl-c1">Username</span> <span class="pl-smi">string</span>
<span class="pl-c1">Password</span> <span class="pl-smi">string</span>
<span class="pl-c">// Server requires Bearer authentication. This client will not attempt to use</span>
<span class="pl-c">// refresh tokens for an OAuth2 flow.</span>
<span class="pl-c">// TODO: demonstrate an OAuth2 compatible client.</span>
<span class="pl-c1">BearerToken</span> <span class="pl-smi">string</span>
<span class="pl-c">// TLSClientConfig contains settings to enable transport layer security</span>
<span class="pl-smi">TLSClientConfig</span>
<span class="pl-c">// Server should be accessed without verifying the TLS</span>
<span class="pl-c">// certificate. For testing only.</span>
<span class="pl-c1">Insecure</span> <span class="pl-smi">bool</span>
<span class="pl-c">// UserAgent is an optional field that specifies the caller of this request.</span>
<span class="pl-c1">UserAgent</span> <span class="pl-smi">string</span>
<span class="pl-c">// Transport may be used for custom HTTP behavior. This attribute may not</span>
<span class="pl-c">// be specified with the TLS client certificate options. Use WrapTransport</span>
<span class="pl-c">// for most client level operations.</span>
<span class="pl-c1">Transport</span> http.<span class="pl-smi">RoundTripper</span>
<span class="pl-c">// WrapTransport will be invoked for custom HTTP behavior after the underlying</span>
<span class="pl-c">// transport is initialized (either the transport created from TLSClientConfig,</span>
<span class="pl-c">// Transport, or http.DefaultTransport). The config may layer other RoundTrippers</span>
<span class="pl-c">// on top of the returned RoundTripper.</span>
<span class="pl-c1">WrapTransport</span> <span class="pl-k">func</span>(<span class="pl-s1">rt</span> http.<span class="pl-smi">RoundTripper</span>) http.<span class="pl-smi">RoundTripper</span>
<span class="pl-c">// QPS indicates the maximum QPS to the master from this client. If zero, QPS is unlimited.</span>
<span class="pl-c1">QPS</span> <span class="pl-smi">float32</span>
<span class="pl-c">// Maximum burst for throttle</span>
<span class="pl-c1">Burst</span> <span class="pl-smi">int</span>
}</pre></div>
<p dir="auto">In particular, the Prefix, Version, and Codec fields need to be changed for both experimental support and eventual multiple api group support. These fields also exist within client.RESTClient, although Codec is the only field there which is public. It's likely that these fields are not used by many clients since we default them in <a href="https://github.com/GoogleCloudPlatform/kubernetes/blob/master/pkg/client/helper.go#L275">helper.go</a>, so breaking this may be acceptable. For actually adding experimental objects, we could create a new Experimental field in Client of type ExperimentalClient (also embedding a *RESTClient) that would be not have to be explicitly initialized (i.e. it would be created in the Client's constructor). So from a user's perspective, they would run something like</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="c, err := client.New(config)
// err handling
list, err := client.Experimental.DaemonController(ns).List(selector)"><pre class="notranslate"><code class="notranslate">c, err := client.New(config)
// err handling
list, err := client.Experimental.DaemonController(ns).List(selector)
</code></pre></div>
<p dir="auto">Finally, for the changes to kubectl, proxy needs to proxy the experimental prefix if it is enabled, api-versions needs to print out information for the experimental api, validation (via swagger) needs to check the experimental api, and since kubectl uses the client library, kubectl support cannot be completed until support is added to client library.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/smarterclayton/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/smarterclayton">@smarterclayton</a> <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/nikhiljindal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikhiljindal">@nikhiljindal</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lavalamp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lavalamp">@lavalamp</a></p> | <p dir="auto">Hello,<br>
I would like to make rolling update by node:</p>
<ol dir="auto">
<li>Select one node</li>
<li>Stop all pods of the RC on this node.</li>
<li>Start new pods on this node</li>
<li>Select an other node</li>
<li>Stop all pods of the RC on this node.</li>
<li>...</li>
</ol>
<p dir="auto">Questions:</p>
<ul dir="auto">
<li>Is this using is OK with Kubernetes philosophy ?</li>
<li>Is there any way to do it right now ?</li>
<li>If not, which files are concerned by this ?<br>
I can patch it to get something like: kubectl rolling-update frontend-v1 -f frontend-v2.json --by-node</li>
</ul>
<p dir="auto">Thanks</p> | 0 |
<p dir="auto">The following program leaves a hanged goroutine. If a server reloads templates on the fly, this behavior can leads to unbounded number of leaked goroutines.</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package main
import (
"html/template"
"time"
)
func main() {
template.New("foo").Parse("{{.")
time.Sleep(time.Second)
panic("who's there?")
}"><pre class="notranslate"><span class="pl-k">package</span> main
<span class="pl-k">import</span> (
<span class="pl-s">"html/template"</span>
<span class="pl-s">"time"</span>
)
<span class="pl-k">func</span> <span class="pl-en">main</span>() {
<span class="pl-s1">template</span>.<span class="pl-en">New</span>(<span class="pl-s">"foo"</span>).<span class="pl-en">Parse</span>(<span class="pl-s">"{{."</span>)
<span class="pl-s1">time</span>.<span class="pl-en">Sleep</span>(<span class="pl-s1">time</span>.<span class="pl-c1">Second</span>)
<span class="pl-en">panic</span>(<span class="pl-s">"who's there?"</span>)
}</pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="panic: who's there?
goroutine 1 [running]:
main.main()
/tmp/htmltempl.go:11 +0x297
goroutine 5 [chan send]:
text/template/parse.(*lexer).errorf(0xc2080c2000, 0x5d8290, 0xf, 0x0, 0x0, 0x0, 0xffffff01)
src/text/template/parse/lex.go:165 +0xca
text/template/parse.lexInsideAction(0xc2080c2000, 0x623b78)
src/text/template/parse/lex.go:280 +0xaf7
text/template/parse.(*lexer).run(0xc2080c2000)
src/text/template/parse/lex.go:198 +0x5d
created by text/template/parse.lex
src/text/template/parse/lex.go:191 +0x1b9"><pre class="notranslate"><code class="notranslate">panic: who's there?
goroutine 1 [running]:
main.main()
/tmp/htmltempl.go:11 +0x297
goroutine 5 [chan send]:
text/template/parse.(*lexer).errorf(0xc2080c2000, 0x5d8290, 0xf, 0x0, 0x0, 0x0, 0xffffff01)
src/text/template/parse/lex.go:165 +0xca
text/template/parse.lexInsideAction(0xc2080c2000, 0x623b78)
src/text/template/parse/lex.go:280 +0xaf7
text/template/parse.(*lexer).run(0xc2080c2000)
src/text/template/parse/lex.go:198 +0x5d
created by text/template/parse.lex
src/text/template/parse/lex.go:191 +0x1b9
</code></pre></div>
<p dir="auto">on commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/golang/go/commit/ccc76dba606e2325ad82ac0b15fb5c511a342abd/hovercard" href="https://github.com/golang/go/commit/ccc76dba606e2325ad82ac0b15fb5c511a342abd"><tt>ccc76db</tt></a></p> | <pre class="notranslate">Here is a nice trick to write an enum-like type's constant values:
g% cat x.go
package p
type T int
const (
_ T = iota
T1
T2
T3
T4
)
g%
This has two properties I wanted: (1) the values start at 1, so the zero value is not a
defined value, and (2) all the defined values have the same form on the line, so that I
can pipe them through 'sort' without breaking anything. Compare to
const (
X T = 1 + iota
Y
Z
)
Anyway, this _ trick works well for me.
It works less well for godoc:
g% godoc .
PACKAGE DOCUMENTATION
package p
import "."
CONSTANTS
const (
T1
T2
T3
T4
)
TYPES
type T int
g%
It's a bit confusing that you can't see the _ in the godoc output, since the _ is what
defines the type and value of the constants.
Worse, the constants are not attached to the type T like they normally would be:
g% godoc . T
type T int
g%
If I rename the _ to Dummy, then it works:
g% godoc . T
type T int
const (
Dummy T = iota
T1
T2
T3
T4
)
g%
What's happening here is that _ is treated as unexported and so it filters away.
(Renaming to dummy shows the same behavior as _.)
Perhaps the best fix would be to treat _ as exported for the purposes of godoc filtering
in const lists and possibly also struct fields (where _ is often padding).
I thought about saying that _ should be treated as exported for all filtering, but you
probably don't want to show things like
func _() { ... }
var _ Interface = (*Type)(nil)</pre> | 0 |
<p dir="auto">While updating some of my code to compile under the new updates to rust-nightly, I caused the compiler to panic. Here is the output of rustc -v:</p>
<p dir="auto">src/lib.rs:420:1: 434:2 error: internal compiler error: impl <code class="notranslate">VtableImpl(impl_def_id=DefId { krate: 0, node: 2045 }:Items<'a, T>.Iterator, substs=Substs[types=[[_];[];[]], regions=[['_#0r];[];[]]], nested=[[Obligation(predicate=Binder(TraitPredicate(TraitRef(T, core::kinds::Sized))),depth=1)];[];[]])</code> did not contain projection for <code class="notranslate">Obligation(predicate=<Items<'a, T> as TraitRef(Items<'a, T>, core::iter::Iterator)>::Item,depth=0)</code><br>
src/lib.rs:420 impl<'a, T> Iterator for Items<'a, T> {<br>
src/lib.rs:421 #[inline]<br>
src/lib.rs:422 fn next(&mut self) -> Option<&'a T> {<br>
src/lib.rs:423 if self.tail + self.gtail - self.ghead == self.buff.len() { return None };<br>
src/lib.rs:424 let tail = get_idx(self.tail, self.gtail - self.ghead, self.ghead);<br>
src/lib.rs:425 self.tail += 1;<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 'Box', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:123</p> | <h3 dir="auto">STR</h3>
<p dir="auto">Didn't have time to write a shorter snippet</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#![crate_type = "lib"]
#![feature(associated_types, lang_items, unboxed_closures)]
#![no_std]
use Option::{None, Some};
trait Iterator {
type Item;
fn next(&mut self) -> Option<Self::Item>;
}
trait DoubleEndedIterator: Iterator {
fn next_back(&mut self) -> Option< <Self as Iterator>::Item>;
}
struct Rev<I>(I);
impl<I> Iterator for Rev<I> where I: DoubleEndedIterator {
// forgot this!
//type Item = <I as Iterator>::Item;
fn next(&mut self) -> Option< <I as Iterator>::Item> {
self.0.next_back()
}
}
#[lang = "copy"] trait Copy {}
#[lang = "sized"] trait Sized {}
enum Option<T> {
None,
Some(T),
}
#[lang = "fn_mut"]
trait FnMut<Args, Result> {
extern "rust-call" fn call_mut(&mut self, Args) -> Result;
}"><pre class="notranslate"><span class="pl-c1">#!<span class="pl-kos">[</span>crate_type = <span class="pl-s">"lib"</span><span class="pl-kos">]</span></span>
<span class="pl-c1">#!<span class="pl-kos">[</span>feature<span class="pl-kos">(</span>associated_types<span class="pl-kos">,</span> lang_items<span class="pl-kos">,</span> unboxed_closures<span class="pl-kos">)</span><span class="pl-kos">]</span></span>
<span class="pl-c1">#!<span class="pl-kos">[</span>no_std<span class="pl-kos">]</span></span>
<span class="pl-k">use</span> <span class="pl-v">Option</span><span class="pl-kos">::</span><span class="pl-kos">{</span><span class="pl-v">None</span><span class="pl-kos">,</span> <span class="pl-v">Some</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">trait</span> <span class="pl-smi">Iterator</span> <span class="pl-kos">{</span>
<span class="pl-k">type</span> <span class="pl-smi">Item</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Option</span><span class="pl-kos"><</span><span class="pl-smi">Self</span><span class="pl-kos">::</span><span class="pl-smi">Item</span><span class="pl-kos">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">trait</span> <span class="pl-smi">DoubleEndedIterator</span><span class="pl-kos">:</span> <span class="pl-smi">Iterator</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">next_back</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Option</span><span class="pl-kos"><</span> <<span class="pl-smi">Self</span> <span class="pl-k">as</span> <span class="pl-smi">Iterator</span>><span class="pl-kos">::</span><span class="pl-smi">Item</span><span class="pl-kos">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">struct</span> <span class="pl-smi">Rev</span><span class="pl-kos"><</span><span class="pl-smi">I</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-smi">I</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">impl</span><span class="pl-kos"><</span><span class="pl-smi">I</span><span class="pl-kos">></span> <span class="pl-smi">Iterator</span> <span class="pl-k">for</span> <span class="pl-smi">Rev</span><span class="pl-kos"><</span><span class="pl-smi">I</span><span class="pl-kos">></span> <span class="pl-k">where</span> <span class="pl-smi">I</span><span class="pl-kos">:</span> <span class="pl-smi">DoubleEndedIterator</span> <span class="pl-kos">{</span>
<span class="pl-c">// forgot this!</span>
<span class="pl-c">//type Item = <I as Iterator>::Item;</span>
<span class="pl-k">fn</span> <span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Option</span><span class="pl-kos"><</span> <<span class="pl-smi">I</span> <span class="pl-k">as</span> <span class="pl-smi">Iterator</span>><span class="pl-kos">::</span><span class="pl-smi">Item</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">0</span><span class="pl-kos">.</span><span class="pl-en">next_back</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">#<span class="pl-kos">[</span>lang = <span class="pl-s">"copy"</span><span class="pl-kos">]</span></span> <span class="pl-k">trait</span> <span class="pl-smi">Copy</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-c1">#<span class="pl-kos">[</span>lang = <span class="pl-s">"sized"</span><span class="pl-kos">]</span></span> <span class="pl-k">trait</span> <span class="pl-smi">Sized</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-k">enum</span> <span class="pl-smi">Option</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-v">None</span><span class="pl-kos">,</span>
<span class="pl-v">Some</span><span class="pl-kos">(</span><span class="pl-smi">T</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-c1">#<span class="pl-kos">[</span>lang = <span class="pl-s">"fn_mut"</span><span class="pl-kos">]</span></span>
<span class="pl-k">trait</span> <span class="pl-smi">FnMut</span><span class="pl-kos"><</span><span class="pl-smi">Args</span><span class="pl-kos">,</span> <span class="pl-smi">Result</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
<span class="pl-k">extern</span> <span class="pl-s">"rust-call"</span> <span class="pl-k">fn</span> <span class="pl-en">call_mut</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-smi">Args</span><span class="pl-kos">)</span> -> <span class="pl-smi">Result</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Output</h3>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="iter.rs:23:5: 25:6 error: internal compiler error: impl `VtableImpl(impl_def_id=DefId { krate: 0, node: 38 }:Rev<I>.Iterator, substs=Substs[types=[[_];[];[]], regions=[[];[];[]]], nested=[[Obligation(predicate=Binder(TraitPredicate(TraitRef(I, Sized))),depth=1), Obligation(predicate=Binder(TraitPredicate(TraitRef(I, DoubleEndedIterator))),depth=1)];[];[]])` did not contain projection for `Obligation(predicate=<Rev<I> as TraitRef(Rev<I>, Iterator)>::Item,depth=0)`
iter.rs:23 fn next(&mut self) -> Option< <I as Iterator>::Item> {
iter.rs:24 self.0.next_back()
iter.rs:25 }
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /root/rust/src/libsyntax/diagnostic.rs:123
stack backtrace:
1: 0x7fddb1e70120 - sys::backtrace::write::h3fe61c98bf398fe8P8s
2: 0x7fddb1e8fef0 - failure::on_fail::h55da319a91ee267cEpz
3: 0x7fddb1e05b40 - rt::unwind::begin_unwind_inner::h2a51826b093fcd9eJ3y
4: 0x7fddad24b3d0 - rt::unwind::begin_unwind::h3298842058425057001
5: 0x7fddad24b360 - diagnostic::SpanHandler::span_bug::heeaf2edd6daa003fNQF
6: 0x7fddb022acb0 - middle::traits::project::project_type::hcf50d7eec736df9c35P
7: 0x7fddb0222800 - middle::traits::fulfill::process_predicate::h3703aabc133e79cayGP
8: 0x7fddb0221ab0 - middle::traits::fulfill::FulfillmentContext<$u{27}tcx$GT$::select::h827e4d042486e566SzP
9: 0x7fddb00ee7c0 - middle::traits::fulfill::FulfillmentContext<$u{27}tcx$GT$::select_all_or_error::heebbe09eddbd26dfDwP
10: 0x7fddb1510cd0 - check::compare_impl_method::h359a8a44e8f8def4Zfk
11: 0x7fddb14ff0b0 - check::check_item::hfedb86714512d4d8XRj
12: 0x7fddb169d450 - check_crate::unboxed_closure.39783
13: 0x7fddb16981f0 - check_crate::h7446c5344d10b3c1cGx
14: 0x7fddb23a98d0 - driver::phase_3_run_analysis_passes::hb59d2d67157ec124gva
15: 0x7fddb2397fb0 - driver::compile_input::hff9e8d16e3108315vba
16: 0x7fddb24e4900 - thunk::F.Invoke<A,$u{20}R$GT$::invoke::h10803646332669730367
17: 0x7fddb24e36c0 - rt::unwind::try::try_fn::h3820096971255462672
18: 0x7fddb1ef4eb0 - rust_try_inner
19: 0x7fddb1ef4ea0 - rust_try
20: 0x7fddb24e3a10 - thunk::F.Invoke<A,$u{20}R$GT$::invoke::h15250775183210022334
21: 0x7fddb1e7f8d0 - sys::thread::thread_start::h7b82ef93cab3e580K1v
22: 0x7fddaca690c0 - start_thread
23: 0x7fddb1aab2d9 - __clone
24: 0x0 - <unknown>"><pre class="notranslate">iter<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">23</span><span class="pl-kos">:</span><span class="pl-c1">5</span><span class="pl-kos">:</span> <span class="pl-c1">25</span><span class="pl-kos">:</span><span class="pl-c1">6</span> error<span class="pl-kos">:</span> internal compiler error<span class="pl-kos">:</span> <span class="pl-k">impl</span> `<span class="pl-smi">VtableImpl</span><span class="pl-kos">(</span><span class="pl-smi">impl_def_id</span>=<span class="pl-v">DefId</span> <span class="pl-kos">{</span> <span class="pl-c1">krate</span><span class="pl-kos">:</span> <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">node</span><span class="pl-kos">:</span> <span class="pl-c1">38</span> <span class="pl-kos">}</span><span class="pl-kos">:</span><span class="pl-smi">Rev</span><span class="pl-kos"><</span><span class="pl-smi">I</span><span class="pl-kos">></span><span class="pl-kos">.</span><span class="pl-smi">Iterator</span><span class="pl-kos">,</span> substs=<span class="pl-v">Substs</span><span class="pl-kos">[</span>types=<span class="pl-kos">[</span><span class="pl-kos">[</span>_<span class="pl-kos">]</span><span class="pl-kos">;</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">,</span> regions=<span class="pl-kos">[</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">,</span> nested=<span class="pl-kos">[</span><span class="pl-kos">[</span><span class="pl-v">Obligation</span><span class="pl-kos">(</span>predicate=<span class="pl-v">Binder</span><span class="pl-kos">(</span><span class="pl-v">TraitPredicate</span><span class="pl-kos">(</span><span class="pl-v">TraitRef</span><span class="pl-kos">(</span><span class="pl-v">I</span><span class="pl-kos">,</span> <span class="pl-v">Sized</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>depth=<span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-v">Obligation</span><span class="pl-kos">(</span>predicate=<span class="pl-v">Binder</span><span class="pl-kos">(</span><span class="pl-v">TraitPredicate</span><span class="pl-kos">(</span><span class="pl-v">TraitRef</span><span class="pl-kos">(</span><span class="pl-v">I</span><span class="pl-kos">,</span> <span class="pl-v">DoubleEndedIterator</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>depth=<span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">]</span><span class="pl-kos">;</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">)</span>` did not contain <span class="pl-smi">projection</span> <span class="pl-k">for</span> `<span class="pl-smi">Obligation</span><span class="pl-kos">(</span><span class="pl-smi">predicate</span>=<span class="pl-kos"><</span><span class="pl-smi">Rev</span><span class="pl-kos"><</span><span class="pl-smi">I</span><span class="pl-kos">></span> <span class="pl-k">as</span> <span class="pl-smi">TraitRef</span><span class="pl-kos">(</span><span class="pl-smi">Rev</span><span class="pl-kos"><</span><span class="pl-smi">I</span><span class="pl-kos">></span><span class="pl-kos">,</span> <span class="pl-smi">Iterator</span><span class="pl-kos">)</span><span class="pl-kos">></span><span class="pl-kos">::</span><span class="pl-smi">Item</span><span class="pl-kos">,</span><span class="pl-smi">depth</span>=<span class="pl-c1">0</span><span class="pl-kos">)</span>`
iter<span class="pl-kos">.</span><span class="pl-smi">rs</span><span class="pl-kos">:</span><span class="pl-c1">23</span> <span class="pl-k">fn</span> <span class="pl-smi">next</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">)</span> -> <span class="pl-smi">Option</span><span class="pl-kos"><</span> <<span class="pl-smi">I</span> <span class="pl-k">as</span> <span class="pl-smi">Iterator</span>><span class="pl-kos">::</span><span class="pl-smi">Item</span><span class="pl-kos">></span> <span class="pl-kos">{</span>
iter<span class="pl-kos">.</span>rs<span class="pl-kos">:</span><span class="pl-c1">24</span> <span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">0</span><span class="pl-kos">.</span>next_back<span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos"></span>
iter<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">25</span> <span class="pl-kos">}</span>
note<span class="pl-kos">:</span> the compiler unexpectedly panicked<span class="pl-kos">.</span> <span class="pl-c1">this</span> is a bug<span class="pl-kos">.</span>
<span class="pl-c1">note</span><span class="pl-kos">:</span> we would appreciate a bug report<span class="pl-kos">:</span> http<span class="pl-kos">:</span><span class="pl-c">//doc.rust-lang.org/complement-bugreport.html</span>
note<span class="pl-kos">:</span> run with `<span class="pl-v">RUST_BACKTRACE</span>=<span class="pl-c1">1</span>` <span class="pl-k">for</span> a backtrace
thread <span class="pl-c1">'</span>rustc<span class="pl-c1">'</span> panicked at <span class="pl-c1">'</span><span class="pl-v">Box</span><<span class="pl-v">Any</span>><span class="pl-c1">'</span><span class="pl-kos">,</span> /root/rust/src/libsyntax/diagnostic<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">123</span>
stack backtrace<span class="pl-kos">:</span>
<span class="pl-c1">1</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1e70120</span> - sys<span class="pl-kos">::</span>backtrace<span class="pl-kos">::</span>write<span class="pl-kos">::</span>h3fe61c98bf398fe8P8s
<span class="pl-c1">2</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1e8fef0</span> - failure<span class="pl-kos">::</span>on_fail<span class="pl-kos">::</span>h55da319a91ee267cEpz
<span class="pl-c1">3</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1e05b40</span> - rt<span class="pl-kos">::</span>unwind<span class="pl-kos">::</span>begin_unwind_inner<span class="pl-kos">::</span>h2a51826b093fcd9eJ3y
<span class="pl-c1">4</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddad24b3d0</span> - rt<span class="pl-kos">::</span>unwind<span class="pl-kos">::</span>begin_unwind<span class="pl-kos">::</span>h3298842058425057001
<span class="pl-c1">5</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddad24b360</span> - diagnostic<span class="pl-kos">::</span><span class="pl-smi">SpanHandler</span><span class="pl-kos">::</span>span_bug<span class="pl-kos">::</span>heeaf2edd6daa003fNQF
<span class="pl-c1">6</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb022acb0</span> - middle<span class="pl-kos">::</span>traits<span class="pl-kos">::</span>project<span class="pl-kos">::</span>project_type<span class="pl-kos">::</span>hcf50d7eec736df9c35P
<span class="pl-c1">7</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb0222800</span> - middle<span class="pl-kos">::</span>traits<span class="pl-kos">::</span>fulfill<span class="pl-kos">::</span>process_predicate<span class="pl-kos">::</span>h3703aabc133e79cayGP
<span class="pl-c1">8</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb0221ab0</span> - middle<span class="pl-kos">::</span>traits<span class="pl-kos">::</span>fulfill<span class="pl-kos">::</span><span class="pl-v">FulfillmentContext</span><$u<span class="pl-kos">{</span><span class="pl-c1">27</span><span class="pl-kos">}</span>tcx$GT$<span class="pl-kos">::</span>select<span class="pl-kos">::</span><span class="pl-smi">h827e4d042486e566SzP</span>
<span class="pl-c1">9</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb00ee7c0</span> - middle<span class="pl-kos">::</span>traits<span class="pl-kos">::</span>fulfill<span class="pl-kos">::</span><span class="pl-v">FulfillmentContext</span><$u<span class="pl-kos">{</span><span class="pl-c1">27</span><span class="pl-kos">}</span>tcx$GT$<span class="pl-kos">::</span>select_all_or_error<span class="pl-kos">::</span><span class="pl-smi">heebbe09eddbd26dfDwP</span>
<span class="pl-c1">10</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1510cd0</span> - check<span class="pl-kos">::</span>compare_impl_method<span class="pl-kos">::</span>h359a8a44e8f8def4Zfk
<span class="pl-c1">11</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb14ff0b0</span> - check<span class="pl-kos">::</span>check_item<span class="pl-kos">::</span>hfedb86714512d4d8XRj
<span class="pl-c1">12</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb169d450</span> - check_crate<span class="pl-kos">::</span>unboxed_closure<span class="pl-kos">.</span><span class="pl-c1">39783</span>
<span class="pl-c1">13</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb16981f0</span> - check_crate<span class="pl-kos">::</span>h7446c5344d10b3c1cGx
<span class="pl-c1">14</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb23a98d0</span> - driver<span class="pl-kos">::</span>phase_3_run_analysis_passes<span class="pl-kos">::</span>hb59d2d67157ec124gva
<span class="pl-c1">15</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb2397fb0</span> - driver<span class="pl-kos">::</span>compile_input<span class="pl-kos">::</span>hff9e8d16e3108315vba
<span class="pl-c1">16</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb24e4900</span> - thunk<span class="pl-kos">::</span><span class="pl-v">F</span><span class="pl-kos">.</span><span class="pl-c1">Invoke</span><<span class="pl-v">A</span><span class="pl-kos">,</span>$u<span class="pl-kos">{</span><span class="pl-c1">20</span><span class="pl-kos">}</span><span class="pl-v">R</span>$GT$<span class="pl-kos">::</span>invoke<span class="pl-kos">::</span>h10803646332669730367
<span class="pl-c1">17</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb24e36c0</span> - rt<span class="pl-kos">::</span>unwind<span class="pl-kos">::</span>try<span class="pl-kos">::</span>try_fn<span class="pl-kos">::</span>h3820096971255462672
<span class="pl-c1">18</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1ef4eb0</span> - rust_try_inner
<span class="pl-c1">19</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1ef4ea0</span> - rust_try
<span class="pl-c1">20</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb24e3a10</span> - thunk<span class="pl-kos">::</span><span class="pl-v">F</span><span class="pl-kos">.</span><span class="pl-c1">Invoke</span><<span class="pl-v">A</span><span class="pl-kos">,</span>$u<span class="pl-kos">{</span><span class="pl-c1">20</span><span class="pl-kos">}</span><span class="pl-v">R</span>$GT$<span class="pl-kos">::</span>invoke<span class="pl-kos">::</span>h15250775183210022334
<span class="pl-c1">21</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1e7f8d0</span> - sys<span class="pl-kos">::</span>thread<span class="pl-kos">::</span>thread_start<span class="pl-kos">::</span>h7b82ef93cab3e580K1v
<span class="pl-c1">22</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddaca690c0</span> - start_thread
<span class="pl-c1">23</span><span class="pl-kos">:</span> <span class="pl-c1">0x7fddb1aab2d9</span> - __clone
<span class="pl-c1">24</span><span class="pl-kos">:</span> <span class="pl-c1">0x0</span> - <<span class="pl-smi">unknown</span>></pre></div>
<h3 dir="auto">Version</h3>
<p dir="auto"><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/84f5ad8679c7fc454473ffbf389030f3e5fee379/hovercard" href="https://github.com/rust-lang/rust/commit/84f5ad8679c7fc454473ffbf389030f3e5fee379"><tt>84f5ad8</tt></a></p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nikomatsakis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nikomatsakis">@nikomatsakis</a></p> | 1 |
<p dir="auto">by <strong>Bailey.D.R</strong>:</p>
<pre class="notranslate">This bug involves a fairly simple usage. There are three parts to this program:
1) A static library (named libhello.a) written in C, exposing function
"say_hello".
2) A package in Go (named hello), exposing func "SayHello", which calls into
the C library.
3) A tool using the hello package (named hello_main) that calls SayHello.
The strange part is that when I compile the static library with -g -O2 -fPIC -m64
-pthread -fno-common, the build succeeds.... but fails with a runtime error:
panic: runtime error: call of nil func value
[signal 0xb code=0x1 addr=0x0 pc=0x0]
goroutine 1 [syscall]:
hello._Cfunc_say_hello(0x2018, 0xb1a2)
/var/folders/p_/mhydwmzj78n6s6xvf9zly6bm0000gn/T/go-build218171681/hello/_obj/_cgo_defun.c:42 +0x2f
hello.SayHello()
/var/folders/p_/mhydwmzj78n6s6xvf9zly6bm0000gn/T/go-build218171681/hello/_obj/hello.cgo1.go:10 +0x18
main.main()
/Users/duane/Projects/go-bug/src/hello_main/hello_main.go:6 +0x18
goroutine 2 [syscall]:
created by runtime.main
/Users/duane/repo/go/src/pkg/runtime/proc.c:221
However, if I move the c file in with the go package "hello" directory, and
allow it to be compiled in without going through the static library intermediary, it
runs fine.
The two build trees are attached for reference. Simple cd into the directory and
"bash ./build.sh" to compile and run it.
As for my system: I'm running at tip ("go version weekly.2012-03-27
+95dddad64860") on OSX Lion 10.7.3. GCC is version
"i686-apple-darwin11-llvm-gcc-4.2"; however, switching to "vanilla"
gcc or to clang makes no effect.</pre>
<p dir="auto">Attachments:</p>
<ol dir="auto">
<li><a href="https://storage.googleapis.com/go-attachment/3755/0/go-bug.tar" rel="nofollow">go-bug.tar</a> (8704 bytes)</li>
<li><a href="https://storage.googleapis.com/go-attachment/3755/0/go-working.tar" rel="nofollow">go-working.tar</a> (8192 bytes)</li>
</ol> | <pre class="notranslate">Overview
This proposal would allow bidirectional type conversions between all of the builtin
scalar numeric types and the builtin "bool" type. The syntax and grammar of
the language already allows these conversions but the current compiler doesn't implement
these particular conversions and gives error messages. As has been standard since
"C" was developed the numeric value of 0 is considered "false" and
any non-zero numeric value is considered "true", but the canonical value of
"true" is numeric 1.
Description
Today if you want to convert between a numeric type and the "bool" type you
have to create a function to do it. For example:
<a href="http://play.golang.org/p/jUlDoCCI5N" rel="nofollow">http://play.golang.org/p/jUlDoCCI5N</a>
var itob = func(int i) bool {
if i == 0 {
return false
}
return true
}
var btoi = func(bool b) int {
if b {
return 1
}
return 0
}
These functions also define the semantics I propose for the conversions proposed.
Because there are currently no generic functions and no trinary operator one often has
to implement multiple versions of the above functions.
If this proposal is accepted and implemented the following two conversions and others
like them would no longer generate the following compiler errors in the cg compilers:
var i int= 1
b := bool(i)
i := int(b)
./bool.go:24: cannot convert i (type int) to type bool
./bool.go:25: cannot convert b (type bool) to type int
Justification
After several years of Go programming I long for this functionality. I often need to
convert a slice of numbers to bools or bools to numbers in a loop. Having to call a user
defined function for each conversion is slow and in many (all) cases these conversions
can be handled without branches and in any case these conversions can and should be
inlined.
Implementation
The implementation requires that the compilers be updated to allow these conversions and
generate code for each case. The scalar numeric types affected are:
uint8, uint16, uint32, uint64, int8, int16, int32, int64, float32, float64, uint, int,
byte, rune
Since I have seen integers passed as a uintptr using OpenGL via Cgo I suggest that the
type "uintptr" also be allowed as a numeric type that can be converted to and
from a "bool".
Documentation
In the "Conversions" section of the "The Go Programming Language
Specification" the following line would change from:
"x's type and T are both integer or floating point types.""
to:
"x's type and T are both integer, floating point, or bool types."
Issues
I am unsure of how to handle floating point +0.0 and -0.0. Right now I think only
regular 0.0 is "false" but I am unsure about this.
Related Issues
<a href="https://golang.org/issue/6011" rel="nofollow">https://golang.org/issue/6011</a>
This is similar to #6011 except the proposed syntax is different. I believe the syntax
proposed here is more consistent with the spirit of the language and is simpler too.
Importantly, I would like to point out that the Type Assertion syntax isn't needed here
because any numeric value can be converted to a "bool" and any
"bool" can be converted to a numeric value so these conversions can never fail.</pre> | 0 |
<p dir="auto">This is a bit of a nitpick, but I think this would improve user-friendlyness.<br>
Currently <code class="notranslate">np.asarray([[1, 2], [2, 3, 4]], dtype=np.float)</code> yields "setting an array element with a sequence."</p>
<p dir="auto">I think it would be more helpful if it yielded something like "Can't create array from lists. Column length %d of column %d doesn't match column length %d."</p>
<p dir="auto">I imagine the error bubbles up from somewhere deep in the code and makes perfect sense where it is raised. It is just something that comes up a lot, and a more friendly and / or informative message could be helpful. So maybe we could catch it further up and include more information if possible.</p> | <p dir="auto">Someone using my code reported this error message, and I would have been able to track down the problem more quickly if the message had been more informative, maybe like <code class="notranslate">ValueError: setting an irregularly shaped array with a non-object dtype</code> instead of <code class="notranslate">ValueError: setting an array element with a sequence.</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> import numpy as np
>>> np.array([[0, 1], [2]]).dtype
dtype('O')
>>> np.array([[0, 1], [2]], dtype=int).dtype
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: setting an array element with a sequence."><pre class="notranslate"><code class="notranslate">>>> import numpy as np
>>> np.array([[0, 1], [2]]).dtype
dtype('O')
>>> np.array([[0, 1], [2]], dtype=int).dtype
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: setting an array element with a sequence.
</code></pre></div> | 1 |
<p dir="auto">The copy/paste toolbar is always positioned above the selection. We should position it below the selection if it is too close to the top of the screen.</p> | <h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Create a new Flutter project with the incrementer app</li>
<li>Verify the test passes when run through <code class="notranslate">flutter test</code></li>
<li>Then, <code class="notranslate">flutter run test/widget_test.dart</code> (e.g. in the iOS Simulator)</li>
</ol>
<p dir="auto">Test fails with "The following assertion was thrown running a test: A SemanticsHandle was active at the end of the test."</p>
<p dir="auto">The test itself doesn't touch Semantics at all, nor does the sample app. That makes it very confusing.</p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter run --verbose test/widget_test.dart
[ +27 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +31 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +5 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +14 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +25 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[+1417 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +60 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.1
[ +113 ms] /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ +13 ms] Exit code 0 from: /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +4 ms] idevice_id -h
[ +260 ms] /usr/bin/xcrun simctl list --json devices
[ +912 ms] Launching test/widget_test.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info CFBundleIdentifier
[ +61 ms] Exit code 0 from: /usr/bin/defaults read /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ +856 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
BUILD_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15F79
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hello_world.flutter.io.helloWorldStart
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
PROJECT_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_NAME = iphoneos11.4
SDK_NAMES = iphoneos11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
SRCROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +15 ms] Building Runner.app for 8C0199F9-DE6D-4A50-86F3-875D58FF15E6.
[ +9 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6"
[ +34 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6""
[ +4 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +129 ms] Skipping kernel compilation. Fingerprint match.
[ +230 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +46 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hello_world.flutter.io.helloWorldStart
[ ] /usr/bin/killall Runner
[ +143 ms] python -c import six
[ +152 ms] [ios/] /usr/bin/xcodebuild -list
[ +622 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +1 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +5 ms] mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
[ +5 ms] Exit code 0 from: mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
[ ] Starting Xcode build...
[ +1 ms] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
[+1052 ms] โโAssembling Flutter resources...
[+1076 ms] โโCompiling, linking and signing...
[+2963 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with โUse of deprecated Swift 3 @objc inferenceโ logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
PhaseScriptExecution Run\ Script /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hello_world.flutter.io.helloWorldStart
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export SRCROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
โฆ mkdir -p -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
โฆ rm -rf -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework
โฆ rm -rf -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework
โฆ cp -r -- /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
โฆ find /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
โฆ mkdir -p -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework
โฆ eval
โฆ cp -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/AppFrameworkInfo.plist /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework/Info.plist
โฆ /Users/filiph/dev/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets --preview-dart-2
[ +6 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +39 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +6 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +9 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +11 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[ +389 ms] Skipping kernel compilation. Fingerprint match.
[ +186 ms] Building bundle
[ ] Writing asset files to /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets
[ +50 ms] Wrote /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets
[ +12 ms] "flutter bundle" took 521ms.
Project /Users/filiph/dev/reactive_exploration/hello_world_start built and packaged successfully.
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enforce-exclusivity=checked -Xfrontend -enable-swift3-objc-inference -Xfrontend -warn-swift3-objc-inference-minimal -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -target x86_64-apple-ios8.0 -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -swift-version 4 -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -parse-as-library -c -j8 /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/AppDelegate.swift -output-file-map /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -emit-objc-header -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -import-objc-header /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios
PrecompileSwiftBridgingHeader normal x86_64
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-PRCS6XFCJS4P.dia /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -emit-pch -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
fatal error: file '/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterTexture.h' has been modified since the precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch' was built
note: '/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterTexture.h' required by '/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1XG1GSGAHZSM3/Flutter-3EKIXUP53SHO5.pcm'
note: '/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1XG1GSGAHZSM3/Flutter-3EKIXUP53SHO5.pcm' required by '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch'
note: please rebuild precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch'
note: imported by '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch'
CompileSwift normal x86_64 /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/AppDelegate.swift
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/AppDelegate.swift -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -import-objc-header /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -parse-as-library -module-name Runner -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -emit-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.swiftdeps -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -index-system-modules
MergeSwiftModule normal x86_64 /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc -import-objc-header /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -module-name Runner -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
CompileC /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -MMD -MT dependencies -MF /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/GeneratedPluginRegistrant.m -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
While building module 'Flutter' imported from /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/GeneratedPluginRegistrant.h:8:
In file included from <module-includes>:1:
In file included from /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
Ld /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -L/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -F/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -filelist /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Generated.xcconfig /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
CodeSign /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
PhaseScriptExecution Thin\ Binary /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hello_world.flutter.io.helloWorldStart
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export SRCROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
CopySwiftLibs /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Runner --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/PlugIns --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework --platform iphonesimulator --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app --resource-library libswiftRemoteMirror.dylib
Requested Swift ABI version based on scanned binaries: 6
libswiftCore.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
libswiftCoreAudio.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
libswiftCoreFoundation.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
libswiftCoreGraphics.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
libswiftCoreImage.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
libswiftCoreMedia.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
libswiftDarwin.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
libswiftDispatch.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
libswiftFoundation.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
libswiftMetal.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
libswiftObjectiveC.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
libswiftQuartzCore.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
libswiftUIKit.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
libswiftos.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
libswiftRemoteMirror.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/libswiftRemoteMirror.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original
Touch /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/usr/bin/touch -c /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +21 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout -showBuildSettings
[ +724 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
BUILD_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hello_world.flutter.io.helloWorldStart
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
PROJECT_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_NAME = iphonesimulator11.4
SDK_NAMES = iphonesimulator11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
SRCROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +209 ms] /usr/bin/xcrun simctl install 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/iphonesimulator/Runner.app
[ +954 ms] /usr/bin/xcrun simctl launch 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hello_world.flutter.io.helloWorldStart --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +166 ms] hello_world.flutter.io.helloWorldStart: 63932
[ ] Waiting for observatory port to be available...
[ +445 ms] [DEVICE LOG] 2018-05-29 22:27:25.903559-0700 localhost Runner[63932]: (Runner) Created Activity ID: 0xc0190, Description: Loading Preferences From System CFPrefsD For Search List
[ +1 ms] [DEVICE LOG] 2018-05-29 22:27:25.904127-0700 localhost Runner[63932]: (Runner) Created Activity ID: 0xc0191, Description: Loading Preferences From System CFPrefsD For Search List
[ +9 ms] [DEVICE LOG] 2018-05-29 22:27:25.915592-0700 localhost Runner[63932]: (Runner) Created Activity ID: 0xc0192, Description: Loading Preferences From System CFPrefsD For Search List
[ +5 ms] [DEVICE LOG] 2018-05-29 22:27:25.921418-0700 localhost Runner[63932]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +296 ms] [DEVICE LOG] 2018-05-29 22:27:26.217354-0700 localhost Runner[63932]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-05-29 22:27:26.217496-0700 localhost Runner[63932]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-05-29 22:27:26.217995-0700 localhost Runner[63932]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +2 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +4 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +145 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +2 ms] getVM: {}
[ +10 ms] getIsolate: {isolateId: isolates/942361266}
[ +2 ms] _flutter.listViews: {}
[ +95 ms] [DEVICE LOG] 2018-05-29 22:27:26.481422-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m: - Counter increments smoke test<โฆ>
[ +5 ms] flutter: 00:00 \^[[32m+0\^[[0m: - Counter increments smoke test<โฆ>
[ +130 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: hello_world_start}
[ +20 ms] DevFS: Created new filesystem on the device (file:///Users/filiph/Library/Developer/CoreSimulator/Devices/8C0199F9-DE6D-4A50-86F3-875D58FF15E6/data/Containers/Data/Application/268FE187-C441-4D14-96EB-EEDECEF38AC7/tmp/hello_world_startdHAKV9/hello_world_start/)
[ +1 ms] Updating assets
[ +147 ms] Syncing files to device iPhone X...
[ +3 ms] DevFS: Starting sync from LocalDirectory: '/Users/filiph/dev/reactive_exploration/hello_world_start'
[ ] Scanning project files
[ +4 ms] Scanning package files
[ +112 ms] Scanning asset files
[ ] Scanning for deleted files
[ +14 ms] Compiling dart to kernel with 669 updated files
[ +2 ms] /Users/filiph/dev/flutter/bin/cache/dart-sdk/bin/dart /Users/filiph/dev/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/filiph/dev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/filiph/dev/reactive_exploration/hello_world_start/.packages --filesystem-scheme org-dartlang-root
[ +216 ms] [DEVICE LOG] 2018-05-29 22:27:27.142424-0700 localhost Runner[63932]: (Flutter) flutter: (The following exception is now available via WidgetTester.takeException:)
[ ] flutter: (The following exception is now available via WidgetTester.takeException:)
[ +1 ms] [DEVICE LOG] 2018-05-29 22:27:27.144620-0700 localhost Runner[63932]: (Flutter) flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ +4 ms] [DEVICE LOG] 2018-05-29 22:27:27.149599-0700 localhost Runner[63932]: (Flutter) flutter: The following assertion was thrown running a test:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.149736-0700 localhost Runner[63932]: (Flutter) flutter: A SemanticsHandle was active at the end of the test.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.149872-0700 localhost Runner[63932]: (Flutter) flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] flutter: The following assertion was thrown running a test:
[ ] flutter: A SemanticsHandle was active at the end of the test.
[ ] flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] [DEVICE LOG] 2018-05-29 22:27:27.150012-0700 localhost Runner[63932]: (Flutter) flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] [DEVICE LOG] 2018-05-29 22:27:27.150191-0700 localhost Runner[63932]: (Flutter) flutter: existing handle will leak into another test and alter its behavior.
[ ] flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] flutter: existing handle will leak into another test and alter its behavior.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.150736-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.151124-0700 localhost Runner[63932]: (Flutter) flutter: When the exception was thrown, this was the stack:
[ ] flutter:
[ ] flutter: When the exception was thrown, this was the stack:
[ +5 ms] [DEVICE LOG] 2018-05-29 22:27:27.157261-0700 localhost Runner[63932]: (Flutter) flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.157464-0700 localhost Runner[63932]: (Flutter) flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.157681-0700 localhost Runner[63932]: (Flutter) flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.157880-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158019-0700 localhost Runner[63932]: (Flutter) flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ +1 ms] [DEVICE LOG] 2018-05-29 22:27:27.158145-0700 localhost Runner[63932]: (Flutter) flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158310-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158438-0700 localhost Runner[63932]: (Flutter) flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158648-0700 localhost Runner[63932]: (Flutter) flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158797-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158951-0700 localhost Runner[63932]: (Flutter) flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.159076-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.159197-0700 localhost Runner[63932]: (Flutter) flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.160042-0700 localhost Runner[63932]: (Flutter) flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.160614-0700 localhost Runner[63932]: (Flutter) flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.161182-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] flutter: <asynchronous suspension>
[ ] flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] flutter: <asynchronous suspension>
[ ] [DEVICE LOG]
[ +5 ms] [DEVICE LOG] 2018-05-29 22:27:27.161558-0700 localhost Runner[63932]: (Flutter) flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.162280-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.162811-0700 localhost Runner[63932]: (Flutter) flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.163014-0700 localhost Runner[63932]: (Flutter) flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ ] flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.163431-0700 localhost Runner[63932]: (Flutter) flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.163919-0700 localhost Runner[63932]: (Flutter) flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.164818-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165113-0700 localhost Runner[63932]: (Flutter) flutter: The test description was:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165232-0700 localhost Runner[63932]: (Flutter) flutter: Counter increments smoke test
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165571-0700 localhost Runner[63932]: (Flutter) flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165778-0700 localhost Runner[63932]: (Flutter) flutter: (If WidgetTester.takeException is called, the above exception will be ignored. If it is not, then the above exception will be dumped when another exception is caught by the framework or when the test ends, whichever happens first, and then the test will fail due to having not caught or expected the exception.)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.166559-0700 localhost Runner[63932]: (Flutter) flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] [DEVICE LOG] 2018-05-29 22:27:27.166919-0700 localhost Runner[63932]: (Flutter) flutter: The following assertion was thrown running a test:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.167390-0700 localhost Runner[63932]: (Flutter) flutter: A SemanticsHandle was active at the end of the test.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.167637-0700 localhost Runner[63932]: (Flutter) flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] [DEVICE LOG] 2018-05-29 22:27:27.167862-0700 localhost Runner[63932]: (Flutter) flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] [DEVICE LOG] 2018-05-29 22:27:27.168039-0700 localhost Runner[63932]: (Flutter) flutter: existing handle will leak into another test and alter its behavior.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.168637-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.168757-0700 localhost Runner[63932]: (Flutter) flutter: When the exception was thrown, this was the stack:
[ ] flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] flutter:
[ ] flutter: The test description was:
[ ] flutter: Counter increments smoke test
[ ] flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: (If WidgetTester.takeException is called, the above exception will be ignored. If it is not, then the above exception will be dumped when another exception is caught by the framework or when the test ends, whichever happens first, and then the test will fail due to having not caught or expected the exception.)
[ ] flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: The following assertion was thrown running a test:
[ ] flutter: A SemanticsHandle was active at the end of the test.
[ ] flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] flutter: existing handle will leak into another test and alter its behavior.
[ ] flutter:
[ ] flutter: When the exception was thrown, this was the stack:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.170440-0700 localhost Runner[63932]: (Flutter) flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.170991-0700 localhost Runner[63932]: (Flutter) flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.171376-0700 localhost Runner[63932]: (Flutter) flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.171666-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.172383-0700 localhost Runner[63932]: (Flutter) flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.172576-0700 localhost Runner[63932]: (Flutter) flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ ] flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.172811-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173069-0700 localhost Runner[63932]: (Flutter) flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173311-0700 localhost Runner[63932]: (Flutter) flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173586-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173885-0700 localhost Runner[63932]: (Flutter) flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174278-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174509-0700 localhost Runner[63932]: (Flutter) flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174717-0700 localhost Runner[63932]: (Flutter) flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174986-0700 localhost Runner[63932]: (Flutter) flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.175314-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.175597-0700 localhost Runner[63932]: (Flutter) flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ ] flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ +2 ms] [DEVICE LOG] 2018-05-29 22:27:27.175917-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.176281-0700 localhost Runner[63932]: (Flutter) flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.176783-0700 localhost Runner[63932]: (Flutter) flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ +10 ms] [DEVICE LOG] 2018-05-29 22:27:27.177188-0700 localhost Runner[63932]: (Flutter) flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ ] flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.178388-0700 localhost Runner[63932]: (Flutter) flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.178885-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.179625-0700 localhost Runner[63932]: (Flutter) flutter: The test description was:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.180150-0700 localhost Runner[63932]: (Flutter) flutter: Counter increments smoke test
[ ] [DEVICE LOG] 2018-05-29 22:27:27.180428-0700 localhost Runner[63932]: (Flutter) flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] [DEVICE LOG] 2018-05-29 22:27:27.185011-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - Counter increments smoke test \^[[1m\^[[31<โฆ>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.186003-0700 localhost Runner[63932]: (Flutter) flutter: Test failed. See exception logs above.
[ ] [DEVICE LOG] The test description was: Counter increments smoke test
[ ] [DEVICE LOG] 2018-05-29 22:27:27.186709-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] flutter:
[ ] flutter: The test description was:
[ ] flutter: Counter increments smoke test
[ ] flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - Counter increments smoke test \^[[1m\^[[31<โฆ>
[ ] flutter: Test failed. See exception logs above.
[ ] The test description was: Counter increments smoke test
[ ] flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.192445-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - smoke <โฆ>
[ ] flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - smoke <โฆ>
[ +11 ms] [DEVICE LOG] 2018-05-29 22:27:27.204288-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m\^[[33m ~1\^[[0m\^[[31m -1\^[[0m: \^[[31mSome tes<โฆ>
[ ] flutter: 00:00 \^[[32m+0\^[[0m\^[[33m ~1\^[[0m\^[[31m -1\^[[0m: \^[[31mSome tes<โฆ>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.204575-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.205658-0700 localhost Runner[63932]: (Flutter) [VERBOSE-2:dart_error.cc(16)] Unhandled exception:
[ ] [DEVICE LOG] Dummy exception to set exit code.
[ ] [DEVICE LOG] #0 _rootHandleUncaughtError.<anonymous closure> (dart:async/zone.dart:1114:29)
[ ] [DEVICE LOG] #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
[ ] [DEVICE LOG] #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
[ +1 ms] [VERBOSE-2:dart_error.cc(16)] Unhandled exception:
[ ] Dummy exception to set exit code.
[ ] #0 _rootHandleUncaughtError.<anonymous closure> (dart:async/zone.dart:1114:29)
[ ] #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
[ ] #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
[+1199 ms] Updating files
[ +558 ms] DevFS: Sync finished
[ ] Synced 0.8MB.
[ +4 ms] _flutter.listViews: {}
[ +1 ms] Connected to _flutterView/0x7fcabae01f78.
[ ] ๐ฅ To hot reload your app on the fly, press "r". To restart the app entirely, press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
"><pre class="notranslate"><code class="notranslate">$ flutter run --verbose test/widget_test.dart
[ +27 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +31 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +5 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +14 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +25 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[+1417 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +60 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.1
[ +113 ms] /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ +13 ms] Exit code 0 from: /Users/filiph/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +4 ms] idevice_id -h
[ +260 ms] /usr/bin/xcrun simctl list --json devices
[ +912 ms] Launching test/widget_test.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info CFBundleIdentifier
[ +61 ms] Exit code 0 from: /usr/bin/defaults read /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ +856 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
BUILD_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15F79
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hello_world.flutter.io.helloWorldStart
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
PROJECT_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_NAME = iphoneos11.4
SDK_NAMES = iphoneos11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
SRCROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +15 ms] Building Runner.app for 8C0199F9-DE6D-4A50-86F3-875D58FF15E6.
[ +9 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6"
[ +34 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "8C0199F9-DE6D-4A50-86F3-875D58FF15E6""
[ +4 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +129 ms] Skipping kernel compilation. Fingerprint match.
[ +230 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +46 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hello_world.flutter.io.helloWorldStart
[ ] /usr/bin/killall Runner
[ +143 ms] python -c import six
[ +152 ms] [ios/] /usr/bin/xcodebuild -list
[ +622 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +1 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +5 ms] mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
[ +5 ms] Exit code 0 from: mkfifo /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
[ ] Starting Xcode build...
[ +1 ms] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
[+1052 ms] โโAssembling Flutter resources...
[+1076 ms] โโCompiling, linking and signing...
[+2963 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with โUse of deprecated Swift 3 @objc inferenceโ logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target.
PhaseScriptExecution Run\ Script /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hello_world.flutter.io.helloWorldStart
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export SRCROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
โฆ mkdir -p -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
โฆ rm -rf -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework
โฆ rm -rf -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework
โฆ cp -r -- /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
โฆ find /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
โฆ mkdir -p -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework
โฆ eval
โฆ cp -- /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/AppFrameworkInfo.plist /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework/Info.plist
โฆ /Users/filiph/dev/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets --preview-dart-2
[ +6 ms] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +39 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/filiph/dev/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/filiph/dev/flutter/] git ls-remote --get-url origin
[ +6 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%H
[ +9 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f9bb4289e9fd861d70ae78bcc3a042ef1b35cc9d
[ ] [/Users/filiph/dev/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 3 weeks ago
[ ] [/Users/filiph/dev/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +11 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.4.4-0-gf9bb4289e
[ +389 ms] Skipping kernel compilation. Fingerprint match.
[ +186 ms] Building bundle
[ ] Writing asset files to /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets
[ +50 ms] Wrote /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets
[ +12 ms] "flutter bundle" took 521ms.
Project /Users/filiph/dev/reactive_exploration/hello_world_start built and packaged successfully.
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name Runner -Onone -enforce-exclusivity=checked -Xfrontend -enable-swift3-objc-inference -Xfrontend -warn-swift3-objc-inference-minimal -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -target x86_64-apple-ios8.0 -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -swift-version 4 -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -parse-as-library -c -j8 /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/AppDelegate.swift -output-file-map /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -emit-objc-header -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -import-objc-header /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios
PrecompileSwiftBridgingHeader normal x86_64
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-PRCS6XFCJS4P.dia /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -emit-pch -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
fatal error: file '/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterTexture.h' has been modified since the precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch' was built
note: '/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterTexture.h' required by '/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1XG1GSGAHZSM3/Flutter-3EKIXUP53SHO5.pcm'
note: '/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/1XG1GSGAHZSM3/Flutter-3EKIXUP53SHO5.pcm' required by '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch'
note: please rebuild precompiled header '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch'
note: imported by '/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders/Runner-Bridging-Header-swift_3T2UML2Y97EKX-clang_1XG1GSGAHZSM3.pch'
CompileSwift normal x86_64 /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/AppDelegate.swift
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -c -primary-file /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/AppDelegate.swift -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc -serialize-diagnostics-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -import-objc-header /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -pch-output-dir /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders -pch-disable-validation -parse-as-library -module-name Runner -emit-module-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -emit-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d -emit-reference-dependencies-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.swiftdeps -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -index-system-modules
MergeSwiftModule normal x86_64 /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -I /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -enable-testing -g -module-cache-path /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -enable-swift3-objc-inference -warn-swift3-objc-inference-minimal -serialize-debugging-options -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -Xcc -iquote -Xcc /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -Xcc -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -Xcc -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -Xcc -DDEBUG=1 -Xcc -working-directory/Users/filiph/dev/reactive_exploration/hello_world_start/ios -emit-module-doc-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftdoc -import-objc-header /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Runner-Bridging-Header.h -module-name Runner -emit-objc-header-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner-Swift.h -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule
CompileC /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Index/DataStore -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -MMD -MT dependencies -MF /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/GeneratedPluginRegistrant.m -o /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
While building module 'Flutter' imported from /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/GeneratedPluginRegistrant.h:8:
In file included from <module-includes>:1:
In file included from /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
Ld /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -L/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -F/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator -F/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter -filelist /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Generated.xcconfig /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/flutter_assets /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
CodeSign /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
PhaseScriptExecution Thin\ Binary /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=filiph
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
export BUILD_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CCHROOT=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/filiph/dev/flutter
export FLUTTER_TARGET=lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/filiph
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=filiph
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17E202
export MAC_OS_X_VERSION_ACTUAL=101304
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1304
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:/Users/filiph/.pub-cache/bin:/Users/filiph/gsutil:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=hello_world.flutter.io.helloWorldStart
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PROJECT_FILE_PATH=/Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export SRCROOT=/Users/filiph/dev/reactive_exploration/hello_world_start/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_OBJC_BRIDGING_HEADER=Runner/Runner-Bridging-Header.h
export SWIFT_OPTIMIZATION_LEVEL=-Onone
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SWIFT_SWIFT3_OBJC_INFERENCE=On
export SWIFT_VERSION=4.0
export SYMROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=74285
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=filiph
export USER_APPS_DIR=/Users/filiph/Applications
export USER_LIBRARY_DIR=/Users/filiph/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=filiph
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F1027a
export XCODE_VERSION_ACTUAL=0940
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
CopySwiftLibs /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
builtin-swiftStdLibTool --copy --verbose --sign - --scan-executable /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Runner --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/PlugIns --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/Flutter.framework --scan-folder /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter/App.framework --platform iphonesimulator --toolchain /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks --strip-bitcode --resource-destination /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app --resource-library libswiftRemoteMirror.dylib
Requested Swift ABI version based on scanned binaries: 6
libswiftCore.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
libswiftCoreAudio.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
libswiftCoreFoundation.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
libswiftCoreGraphics.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
libswiftCoreImage.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
libswiftCoreMedia.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
libswiftDarwin.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
libswiftDispatch.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
libswiftFoundation.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
libswiftMetal.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
libswiftObjectiveC.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
libswiftQuartzCore.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
libswiftUIKit.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
libswiftos.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
libswiftRemoteMirror.dylib is up to date at /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/libswiftRemoteMirror.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCore.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftMetal.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreFoundation.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreMedia.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftObjectiveC.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreImage.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftos.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreAudio.dylib is unchanged; keeping original
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'Codesigning /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
/usr/bin/codesign '--force' '--sign' '-' '--verbose' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib'
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib'
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftQuartzCore.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDarwin.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftCoreGraphics.dylib is unchanged; keeping original
Probing signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib
/usr/bin/codesign '-r-' '--display' '/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib'
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftUIKit.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftDispatch.dylib is unchanged; keeping original
Code signature of /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/libswiftFoundation.dylib is unchanged; keeping original
Touch /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
/usr/bin/touch -c /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/filiph/dev/reactive_exploration/hello_world_start/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +21 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout -showBuildSettings
[ +724 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/filiph/dev/reactive_exploration/hello_world_start/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = filiph
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios
BUILD_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CCHROOT = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/filiph/dev/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/filiph/dev/flutter
FLUTTER_TARGET = lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/filiph
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = filiph
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17E202
MAC_OS_X_VERSION_ACTUAL = 101304
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1304
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/google-cloud-sdk/bin:/usr/local/var/pyenv/shims:/Users/filiph/.nvm/versions/node/v6.10.3/bin:/Users/filiph/.rvm/gems/ruby-2.3.1/bin:/Users/filiph/.rvm/gems/ruby-2.3.1@global/bin:/Users/filiph/.rvm/rubies/ruby-2.3.1/bin:/Users/filiph/dev/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Applications/VMware Fusion.app/Contents/Public:/usr/local/go/bin:/opt/X11/bin:/Applications/dart/dart-sdk/bin:~/.pub-cache/bin:/Users/filiph/gsutil:~/.pub-cache/bin:/usr/local/bin/depot_tools:/Users/filiph/.rvm/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = hello_world.flutter.io.helloWorldStart
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
PROJECT_FILE_PATH = /Users/filiph/dev/reactive_exploration/hello_world_start/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/p_/8567k9tn6cg7_f1bhzhhvh8c0028jd/T/flutter_build_log_pipeeWkOLu/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_NAME = iphonesimulator11.4
SDK_NAMES = iphonesimulator11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
SRCROOT = /Users/filiph/dev/reactive_exploration/hello_world_start/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/filiph/Library/Developer/Xcode/DerivedData/Runner-ehcnmfimlvrrtmgmvugxzkzautwv/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 74285
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = filiph
USER_APPS_DIR = /Users/filiph/Applications
USER_LIBRARY_DIR = /Users/filiph/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = filiph
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9F1027a
XCODE_VERSION_ACTUAL = 0940
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +209 ms] /usr/bin/xcrun simctl install 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 /Users/filiph/dev/reactive_exploration/hello_world_start/build/ios/iphonesimulator/Runner.app
[ +954 ms] /usr/bin/xcrun simctl launch 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 hello_world.flutter.io.helloWorldStart --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +166 ms] hello_world.flutter.io.helloWorldStart: 63932
[ ] Waiting for observatory port to be available...
[ +445 ms] [DEVICE LOG] 2018-05-29 22:27:25.903559-0700 localhost Runner[63932]: (Runner) Created Activity ID: 0xc0190, Description: Loading Preferences From System CFPrefsD For Search List
[ +1 ms] [DEVICE LOG] 2018-05-29 22:27:25.904127-0700 localhost Runner[63932]: (Runner) Created Activity ID: 0xc0191, Description: Loading Preferences From System CFPrefsD For Search List
[ +9 ms] [DEVICE LOG] 2018-05-29 22:27:25.915592-0700 localhost Runner[63932]: (Runner) Created Activity ID: 0xc0192, Description: Loading Preferences From System CFPrefsD For Search List
[ +5 ms] [DEVICE LOG] 2018-05-29 22:27:25.921418-0700 localhost Runner[63932]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +296 ms] [DEVICE LOG] 2018-05-29 22:27:26.217354-0700 localhost Runner[63932]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-05-29 22:27:26.217496-0700 localhost Runner[63932]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-05-29 22:27:26.217995-0700 localhost Runner[63932]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +2 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +4 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +145 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +2 ms] getVM: {}
[ +10 ms] getIsolate: {isolateId: isolates/942361266}
[ +2 ms] _flutter.listViews: {}
[ +95 ms] [DEVICE LOG] 2018-05-29 22:27:26.481422-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m: - Counter increments smoke test<โฆ>
[ +5 ms] flutter: 00:00 \^[[32m+0\^[[0m: - Counter increments smoke test<โฆ>
[ +130 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: hello_world_start}
[ +20 ms] DevFS: Created new filesystem on the device (file:///Users/filiph/Library/Developer/CoreSimulator/Devices/8C0199F9-DE6D-4A50-86F3-875D58FF15E6/data/Containers/Data/Application/268FE187-C441-4D14-96EB-EEDECEF38AC7/tmp/hello_world_startdHAKV9/hello_world_start/)
[ +1 ms] Updating assets
[ +147 ms] Syncing files to device iPhone X...
[ +3 ms] DevFS: Starting sync from LocalDirectory: '/Users/filiph/dev/reactive_exploration/hello_world_start'
[ ] Scanning project files
[ +4 ms] Scanning package files
[ +112 ms] Scanning asset files
[ ] Scanning for deleted files
[ +14 ms] Compiling dart to kernel with 669 updated files
[ +2 ms] /Users/filiph/dev/flutter/bin/cache/dart-sdk/bin/dart /Users/filiph/dev/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/filiph/dev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/filiph/dev/reactive_exploration/hello_world_start/.packages --filesystem-scheme org-dartlang-root
[ +216 ms] [DEVICE LOG] 2018-05-29 22:27:27.142424-0700 localhost Runner[63932]: (Flutter) flutter: (The following exception is now available via WidgetTester.takeException:)
[ ] flutter: (The following exception is now available via WidgetTester.takeException:)
[ +1 ms] [DEVICE LOG] 2018-05-29 22:27:27.144620-0700 localhost Runner[63932]: (Flutter) flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ +4 ms] [DEVICE LOG] 2018-05-29 22:27:27.149599-0700 localhost Runner[63932]: (Flutter) flutter: The following assertion was thrown running a test:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.149736-0700 localhost Runner[63932]: (Flutter) flutter: A SemanticsHandle was active at the end of the test.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.149872-0700 localhost Runner[63932]: (Flutter) flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] flutter: The following assertion was thrown running a test:
[ ] flutter: A SemanticsHandle was active at the end of the test.
[ ] flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] [DEVICE LOG] 2018-05-29 22:27:27.150012-0700 localhost Runner[63932]: (Flutter) flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] [DEVICE LOG] 2018-05-29 22:27:27.150191-0700 localhost Runner[63932]: (Flutter) flutter: existing handle will leak into another test and alter its behavior.
[ ] flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] flutter: existing handle will leak into another test and alter its behavior.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.150736-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.151124-0700 localhost Runner[63932]: (Flutter) flutter: When the exception was thrown, this was the stack:
[ ] flutter:
[ ] flutter: When the exception was thrown, this was the stack:
[ +5 ms] [DEVICE LOG] 2018-05-29 22:27:27.157261-0700 localhost Runner[63932]: (Flutter) flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.157464-0700 localhost Runner[63932]: (Flutter) flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.157681-0700 localhost Runner[63932]: (Flutter) flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.157880-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158019-0700 localhost Runner[63932]: (Flutter) flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ +1 ms] [DEVICE LOG] 2018-05-29 22:27:27.158145-0700 localhost Runner[63932]: (Flutter) flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158310-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158438-0700 localhost Runner[63932]: (Flutter) flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158648-0700 localhost Runner[63932]: (Flutter) flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158797-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.158951-0700 localhost Runner[63932]: (Flutter) flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.159076-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.159197-0700 localhost Runner[63932]: (Flutter) flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.160042-0700 localhost Runner[63932]: (Flutter) flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.160614-0700 localhost Runner[63932]: (Flutter) flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.161182-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] flutter: <asynchronous suspension>
[ ] flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] flutter: <asynchronous suspension>
[ ] [DEVICE LOG]
[ +5 ms] [DEVICE LOG] 2018-05-29 22:27:27.161558-0700 localhost Runner[63932]: (Flutter) flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.162280-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.162811-0700 localhost Runner[63932]: (Flutter) flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.163014-0700 localhost Runner[63932]: (Flutter) flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ ] flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.163431-0700 localhost Runner[63932]: (Flutter) flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.163919-0700 localhost Runner[63932]: (Flutter) flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.164818-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165113-0700 localhost Runner[63932]: (Flutter) flutter: The test description was:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165232-0700 localhost Runner[63932]: (Flutter) flutter: Counter increments smoke test
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165571-0700 localhost Runner[63932]: (Flutter) flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] [DEVICE LOG] 2018-05-29 22:27:27.165778-0700 localhost Runner[63932]: (Flutter) flutter: (If WidgetTester.takeException is called, the above exception will be ignored. If it is not, then the above exception will be dumped when another exception is caught by the framework or when the test ends, whichever happens first, and then the test will fail due to having not caught or expected the exception.)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.166559-0700 localhost Runner[63932]: (Flutter) flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] [DEVICE LOG] 2018-05-29 22:27:27.166919-0700 localhost Runner[63932]: (Flutter) flutter: The following assertion was thrown running a test:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.167390-0700 localhost Runner[63932]: (Flutter) flutter: A SemanticsHandle was active at the end of the test.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.167637-0700 localhost Runner[63932]: (Flutter) flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] [DEVICE LOG] 2018-05-29 22:27:27.167862-0700 localhost Runner[63932]: (Flutter) flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] [DEVICE LOG] 2018-05-29 22:27:27.168039-0700 localhost Runner[63932]: (Flutter) flutter: existing handle will leak into another test and alter its behavior.
[ ] [DEVICE LOG] 2018-05-29 22:27:27.168637-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.168757-0700 localhost Runner[63932]: (Flutter) flutter: When the exception was thrown, this was the stack:
[ ] flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] flutter:
[ ] flutter: The test description was:
[ ] flutter: Counter increments smoke test
[ ] flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: (If WidgetTester.takeException is called, the above exception will be ignored. If it is not, then the above exception will be dumped when another exception is caught by the framework or when the test ends, whichever happens first, and then the test will fail due to having not caught or expected the exception.)
[ ] flutter: โโโก EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: The following assertion was thrown running a test:
[ ] flutter: A SemanticsHandle was active at the end of the test.
[ ] flutter: All SemanticsHandle instances must be disposed by calling dispose() on the SemanticsHandle. If your
[ ] flutter: test uses SemanticsTester, it is sufficient to call dispose() on SemanticsTester. Otherwise, the
[ ] flutter: existing handle will leak into another test and alter its behavior.
[ ] flutter:
[ ] flutter: When the exception was thrown, this was the stack:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.170440-0700 localhost Runner[63932]: (Flutter) flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.170991-0700 localhost Runner[63932]: (Flutter) flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.171376-0700 localhost Runner[63932]: (Flutter) flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.171666-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.172383-0700 localhost Runner[63932]: (Flutter) flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.172576-0700 localhost Runner[63932]: (Flutter) flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] flutter: #0 WidgetTester._verifySemanticsHandlesWereDisposed (package:flutter_test/src/widget_tester.dart:526:7)
[ ] flutter: #1 WidgetTester._endOfTestVerifications (package:flutter_test/src/widget_tester.dart:521:5)
[ ] flutter: #2 TestWidgetsFlutterBinding._runTestBody (package:flutter_test/src/binding.dart:518:22)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #5 TestWidgetsFlutterBinding._runTest (package:flutter_test/src/binding.dart:494:14)
[ ] flutter: #6 LiveTestWidgetsFlutterBinding.runTest (package:flutter_test/src/binding.dart:1109:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.172811-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173069-0700 localhost Runner[63932]: (Flutter) flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173311-0700 localhost Runner[63932]: (Flutter) flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173586-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.173885-0700 localhost Runner[63932]: (Flutter) flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #7 testWidgets.<anonymous closure>.<anonymous closure> (package:flutter_test/src/widget_tester.dart:62:24)
[ ] flutter: #8 Declarer.test.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:161:27)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #9 Invoker.waitForOutstandingCallbacks.<anonymous closure> (package:test/src/backend/invoker.dart:249:15)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174278-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174509-0700 localhost Runner[63932]: (Flutter) flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174717-0700 localhost Runner[63932]: (Flutter) flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.174986-0700 localhost Runner[63932]: (Flutter) flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #13 Invoker.waitForOutstandingCallbacks (package:test/src/backend/invoker.dart:246:5)
[ ] flutter: #14 Declarer.test.<anonymous closure>.<anonymous closure> (package:test/src/backend/declarer.dart:159:33)
[ ] flutter: #18 Declarer.test.<anonymous closure> (package:test/src/backend/declarer.dart:158:13)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.175314-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.175597-0700 localhost Runner[63932]: (Flutter) flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ ] flutter: #19 Invoker._onRun.<anonymous closure>.<anonymous closure>.<anonymous closure>.<anonymous closure> (package:test/src/backend/invoker.dart:403:25)
[ +2 ms] [DEVICE LOG] 2018-05-29 22:27:27.175917-0700 localhost Runner[63932]: (Flutter) flutter: <asynchronous suspension>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.176281-0700 localhost Runner[63932]: (Flutter) flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] flutter: <asynchronous suspension>
[ ] flutter: #33 _Timer._runTimers (dart:isolate/runtime/libtimer_impl.dart:382:19)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.176783-0700 localhost Runner[63932]: (Flutter) flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ +10 ms] [DEVICE LOG] 2018-05-29 22:27:27.177188-0700 localhost Runner[63932]: (Flutter) flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] flutter: #34 _Timer._handleMessage (dart:isolate/runtime/libtimer_impl.dart:416:5)
[ ] flutter: #35 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:165:12)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.178388-0700 localhost Runner[63932]: (Flutter) flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] [DEVICE LOG] 2018-05-29 22:27:27.178885-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.179625-0700 localhost Runner[63932]: (Flutter) flutter: The test description was:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.180150-0700 localhost Runner[63932]: (Flutter) flutter: Counter increments smoke test
[ ] [DEVICE LOG] 2018-05-29 22:27:27.180428-0700 localhost Runner[63932]: (Flutter) flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] [DEVICE LOG] 2018-05-29 22:27:27.185011-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - Counter increments smoke test \^[[1m\^[[31<โฆ>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.186003-0700 localhost Runner[63932]: (Flutter) flutter: Test failed. See exception logs above.
[ ] [DEVICE LOG] The test description was: Counter increments smoke test
[ ] [DEVICE LOG] 2018-05-29 22:27:27.186709-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] flutter: (elided 21 frames from package dart:async and package stack_trace)
[ ] flutter:
[ ] flutter: The test description was:
[ ] flutter: Counter increments smoke test
[ ] flutter: โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
[ ] flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - Counter increments smoke test \^[[1m\^[[31<โฆ>
[ ] flutter: Test failed. See exception logs above.
[ ] The test description was: Counter increments smoke test
[ ] flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.192445-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - smoke <โฆ>
[ ] flutter: 00:00 \^[[32m+0\^[[0m\^[[31m -1\^[[0m: - smoke <โฆ>
[ +11 ms] [DEVICE LOG] 2018-05-29 22:27:27.204288-0700 localhost Runner[63932]: (Flutter) flutter: 00:00 \^[[32m+0\^[[0m\^[[33m ~1\^[[0m\^[[31m -1\^[[0m: \^[[31mSome tes<โฆ>
[ ] flutter: 00:00 \^[[32m+0\^[[0m\^[[33m ~1\^[[0m\^[[31m -1\^[[0m: \^[[31mSome tes<โฆ>
[ ] [DEVICE LOG] 2018-05-29 22:27:27.204575-0700 localhost Runner[63932]: (Flutter) flutter:
[ ] flutter:
[ ] [DEVICE LOG] 2018-05-29 22:27:27.205658-0700 localhost Runner[63932]: (Flutter) [VERBOSE-2:dart_error.cc(16)] Unhandled exception:
[ ] [DEVICE LOG] Dummy exception to set exit code.
[ ] [DEVICE LOG] #0 _rootHandleUncaughtError.<anonymous closure> (dart:async/zone.dart:1114:29)
[ ] [DEVICE LOG] #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
[ ] [DEVICE LOG] #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
[ +1 ms] [VERBOSE-2:dart_error.cc(16)] Unhandled exception:
[ ] Dummy exception to set exit code.
[ ] #0 _rootHandleUncaughtError.<anonymous closure> (dart:async/zone.dart:1114:29)
[ ] #1 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
[ ] #2 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
[+1199 ms] Updating files
[ +558 ms] DevFS: Sync finished
[ ] Synced 0.8MB.
[ +4 ms] _flutter.listViews: {}
[ +1 ms] Connected to _flutterView/0x7fcabae01f78.
[ ] ๐ฅ To hot reload your app on the fly, press "r". To restart the app entirely, press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter analyze test/
Analyzing 2 directories...
No issues found! (ran in 1.6s)"><pre class="notranslate"><code class="notranslate">$ flutter analyze test/
Analyzing 2 directories...
No issues found! (ran in 1.6s)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter doctor -v
[โ] Flutter (Channel beta, v0.4.4, on Mac OS X 10.13.4 17E202, locale en-US)
โข Flutter version 0.4.4 at /Users/filiph/dev/flutter
โข Framework revision f9bb4289e9 (3 weeks ago), 2018-05-11 21:44:54 -0700
โข Engine revision 06afdfe54e
โข Dart version 2.0.0-dev.54.0.flutter-46ab040e58
[โ] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข 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.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-1024-b01)
โข All Android licenses accepted.
[!] iOS toolchain - develop for iOS devices (Xcode 9.4)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 9.4, Build version 9F1027a
โข ios-deploy 1.9.2
! CocoaPods out of date (1.5.0 is recommended).
CocoaPods is used to retrieve the iOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS.
For more info, see https://flutter.io/platform-plugins
To upgrade:
brew upgrade cocoapods
pod setup
[โ] Android Studio (version 3.1)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 24.2.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[!] IntelliJ IDEA Community Edition (version 2018.1)
โข IntelliJ at /Applications/IntelliJ IDEA CE.app
โ Flutter plugin not installed; this adds Flutter specific functionality.
โ Dart plugin not installed; this adds Dart specific functionality.
โข For information about installing plugins, see
https://flutter.io/intellij-setup/#installing-the-plugins
[โ] VS Code (version 1.22.2)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Dart Code extension version 2.9.2
[โ] Connected devices (1 available)
โข iPhone X โข 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 โข ios โข iOS 11.4 (simulator)
! Doctor found issues in 2 categories."><pre class="notranslate"><code class="notranslate">$ flutter doctor -v
[โ] Flutter (Channel beta, v0.4.4, on Mac OS X 10.13.4 17E202, locale en-US)
โข Flutter version 0.4.4 at /Users/filiph/dev/flutter
โข Framework revision f9bb4289e9 (3 weeks ago), 2018-05-11 21:44:54 -0700
โข Engine revision 06afdfe54e
โข Dart version 2.0.0-dev.54.0.flutter-46ab040e58
[โ] Android toolchain - develop for Android devices (Android SDK 27.0.3)
โข 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.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-1024-b01)
โข All Android licenses accepted.
[!] iOS toolchain - develop for iOS devices (Xcode 9.4)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 9.4, Build version 9F1027a
โข ios-deploy 1.9.2
! CocoaPods out of date (1.5.0 is recommended).
CocoaPods is used to retrieve the iOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without resolving iOS dependencies with CocoaPods, plugins will not work on iOS.
For more info, see https://flutter.io/platform-plugins
To upgrade:
brew upgrade cocoapods
pod setup
[โ] Android Studio (version 3.1)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 24.2.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[!] IntelliJ IDEA Community Edition (version 2018.1)
โข IntelliJ at /Applications/IntelliJ IDEA CE.app
โ Flutter plugin not installed; this adds Flutter specific functionality.
โ Dart plugin not installed; this adds Dart specific functionality.
โข For information about installing plugins, see
https://flutter.io/intellij-setup/#installing-the-plugins
[โ] VS Code (version 1.22.2)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Dart Code extension version 2.9.2
[โ] Connected devices (1 available)
โข iPhone X โข 8C0199F9-DE6D-4A50-86F3-875D58FF15E6 โข ios โข iOS 11.4 (simulator)
! Doctor found issues in 2 categories.
</code></pre></div> | 0 |
<p dir="auto">I would like to use <a href="https://developers.google.com/games/services/android/turnbasedMultiplayer" rel="nofollow">https://developers.google.com/games/services/android/turnbasedMultiplayer</a> for a Flutter app I am writing. How would I do that with Dart/Flutter?<br>
( I asked on the mailing list, then on gitter, then I asked on stack overflow and there I was told to ask here. )<br>
It seems developers need a guide on using GPGS in Flutter. Thanks.</p> | <p dir="auto">From the <a href="https://firebase.google.com/docs/cloud-messaging/android/client#sample-play" rel="nofollow">docs</a>:</p>
<blockquote>
<p dir="auto">Apps that rely on the Play Services SDK should always check the device for a compatible Google Play services APK before accessing Google Play services features. It is recommended to do this in two places: in the main activity's onCreate() method, and in its onResume() method. The check in onCreate() ensures that the app can't be used without a successful check. The check in onResume() ensures that if the user returns to the running app through some other means, such as through the back button, the check is still performed.</p>
<p dir="auto">If the device doesn't have a compatible version of Google Play services, your app can call <code class="notranslate">GoogleApiAvailability.makeGooglePlayServicesAvailable()</code> to allow users to download Google Play services from the Play Store.</p>
</blockquote>
<p dir="auto">The google_sign_in plugin already <a href="https://github.com/flutter/plugins/blob/master/packages/google_sign_in/android/src/main/java/io/flutter/plugins/googlesignin/GoogleSignInPlugin.java#L458">ensures</a> Google Play Services is present and I think the Firebase Android plugins should as well -- they could attach lifecycle listeners to the activity to check for <code class="notranslate">onCreate</code> and <code class="notranslate">onResume</code> automatically. (We could also expose a Dart API for it, but I'd rather not since it's Android specific.)</p>
<p dir="auto">I don't think there's an easy way for plugins to prevent the Flutter app from starting up but the plugins could queue up method calls until the error is resolved.</p>
<p dir="auto">This issue is based on a conversation with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lukef/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lukef">@lukef</a> although I think Posse has already worked around it.</p> | 1 |
<p dir="auto">Using pandas version 0.23.1 and 0.23.2 from conda-forge.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
df = pd.DataFrame({'a': [10, 20, 30]})
# with list indexer, iloc works as expected
L = [-1, 0, 1]
df.iloc[L]
assert L == [-1, 0, 1]
# with Series indexer, iloc mutates the Series!
s = pd.Series(L)
df.iloc[s]
assert (s == [2, 0, 1]).all() # wrong!
assert (s == L).all() # fails!
# with array indexer, iloc mutates the array!
a = np.array(L)
df.iloc[a]
assert (a == [2, 0, 1]).all() # wrong!
assert (a == L).all() # fails!"><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-c1">10</span>, <span class="pl-c1">20</span>, <span class="pl-c1">30</span>]})
<span class="pl-c"># with list indexer, iloc works as expected</span>
<span class="pl-v">L</span> <span class="pl-c1">=</span> [<span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>]
<span class="pl-s1">df</span>.<span class="pl-s1">iloc</span>[<span class="pl-v">L</span>]
<span class="pl-k">assert</span> <span class="pl-v">L</span> <span class="pl-c1">==</span> [<span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>]
<span class="pl-c"># with Series indexer, iloc mutates the Series!</span>
<span class="pl-s1">s</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>(<span class="pl-v">L</span>)
<span class="pl-s1">df</span>.<span class="pl-s1">iloc</span>[<span class="pl-s1">s</span>]
<span class="pl-k">assert</span> (<span class="pl-s1">s</span> <span class="pl-c1">==</span> [<span class="pl-c1">2</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>]).<span class="pl-en">all</span>() <span class="pl-c"># wrong!</span>
<span class="pl-k">assert</span> (<span class="pl-s1">s</span> <span class="pl-c1">==</span> <span class="pl-v">L</span>).<span class="pl-en">all</span>() <span class="pl-c"># fails!</span>
<span class="pl-c"># with array indexer, iloc mutates the array!</span>
<span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-v">L</span>)
<span class="pl-s1">df</span>.<span class="pl-s1">iloc</span>[<span class="pl-s1">a</span>]
<span class="pl-k">assert</span> (<span class="pl-s1">a</span> <span class="pl-c1">==</span> [<span class="pl-c1">2</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>]).<span class="pl-en">all</span>() <span class="pl-c"># wrong!</span>
<span class="pl-k">assert</span> (<span class="pl-s1">a</span> <span class="pl-c1">==</span> <span class="pl-v">L</span>).<span class="pl-en">all</span>() <span class="pl-c"># fails!</span></pre></div>
<p dir="auto">Negative index values are not in the list of valid indexers for <code class="notranslate">iloc</code> according to the docstring, so maybe this is undefined behavior. However, it is surprising. It gives the result one would expect (and does not raise for being out of bounds), but with an unexpected side effect.</p> | <h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [31]: import pandas as pd
In [32]: import numpy as np
In [33]: a = np.array([1, 2, -1])
In [34]: b = pd.DataFrame([100, 101, 102], index=[1, 2, 3], columns=['col'])
In [35]: b.iloc[a]
Out[35]:
col
2 101
3 102
3 102
In [36]: a
Out[36]: array([1, 2, 2])
"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">31</span>]: <span class="pl-s1">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-v">In</span> [<span class="pl-c1">32</span>]: <span class="pl-s1">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-v">In</span> [<span class="pl-c1">33</span>]: <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">-</span><span class="pl-c1">1</span>])
<span class="pl-v">In</span> [<span class="pl-c1">34</span>]: <span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>([<span class="pl-c1">100</span>, <span class="pl-c1">101</span>, <span class="pl-c1">102</span>], <span class="pl-s1">index</span><span class="pl-c1">=</span>[<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>], <span class="pl-s1">columns</span><span class="pl-c1">=</span>[<span class="pl-s">'col'</span>])
<span class="pl-v">In</span> [<span class="pl-c1">35</span>]: <span class="pl-s1">b</span>.<span class="pl-s1">iloc</span>[<span class="pl-s1">a</span>]
<span class="pl-v">Out</span>[<span class="pl-c1">35</span>]:
<span class="pl-s1">col</span>
<span class="pl-c1">2</span> <span class="pl-c1">101</span>
<span class="pl-c1">3</span> <span class="pl-c1">102</span>
<span class="pl-c1">3</span> <span class="pl-c1">102</span>
<span class="pl-v">In</span> [<span class="pl-c1">36</span>]: <span class="pl-s1">a</span>
<span class="pl-v">Out</span>[<span class="pl-c1">36</span>]: <span class="pl-en">array</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">2</span>])
</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">The array a is modified after the iloc operation from array([ 1, 2, -1]) to array([1, 2, 2]). The indexer should not be modified.</p>
<h4 dir="auto">Expected Output</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [39]: a
Out[39]: array([ 1, 2, -1])
"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">39</span>]: <span class="pl-s1">a</span>
<span class="pl-v">Out</span>[<span class="pl-c1">39</span>]: <span class="pl-en">array</span>([ <span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">-</span><span class="pl-c1">1</span>])</pre></div>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 2.7.14.final.0<br>
python-bits: 64<br>
OS: Linux<br>
OS-release: 3.10.0-327.36.3.el7.x86_64<br>
machine: x86_64<br>
processor: x86_64<br>
byteorder: little<br>
LC_ALL: C<br>
LANG: en_US.UTF-8<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.22.0<br>
pytest: 3.5.0<br>
pip: 9.0.3<br>
setuptools: 39.0.1<br>
Cython: 0.28.2<br>
numpy: 1.14.2<br>
scipy: 1.0.1<br>
pyarrow: 0.9.0<br>
xarray: 0.10.2<br>
IPython: 5.6.0<br>
sphinx: 1.7.2<br>
patsy: 0.5.0<br>
dateutil: 2.7.2<br>
pytz: 2018.4<br>
blosc: None<br>
bottleneck: 1.2.1<br>
tables: 3.4.2<br>
numexpr: 2.6.4<br>
feather: None<br>
matplotlib: 2.2.2<br>
openpyxl: 2.5.2<br>
xlrd: 1.1.0<br>
xlwt: 1.3.0<br>
xlsxwriter: 1.0.2<br>
lxml: 4.2.1<br>
bs4: 4.3.2<br>
html5lib: 0.999<br>
sqlalchemy: 1.2.6<br>
pymysql: None<br>
psycopg2: 2.7.4 (dt dec pq3 ext lo64)<br>
jinja2: 2.10<br>
s3fs: None<br>
fastparquet: None<br>
pandas_gbq: None<br>
pandas_datareader: None</p>
</details> | 1 |
<p dir="auto"><strong>Symfony version(s) affected</strong>: 4.2.1</p>
<p dir="auto"><strong>Description</strong><br>
I wrote a simple test to check whether user authorization is working. After entering "php bin / phpunit" gets the error: Filter 'softdeleteable' does not exist.<br>
My custom doctrine filters working in dev/prod mode.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16528176/50682324-c3148800-100e-11e9-8f1a-74a73487ce4e.png"><img src="https://user-images.githubusercontent.com/16528176/50682324-c3148800-100e-11e9-8f1a-74a73487ce4e.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16528176/50682341-d1fb3a80-100e-11e9-8a68-73bd9f788751.png"><img src="https://user-images.githubusercontent.com/16528176/50682341-d1fb3a80-100e-11e9-8a68-73bd9f788751.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Symfony\Component\Security\Core\Exception\AuthenticationServiceException {#521
-token: Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken {#309
-credentials: "123456789"
-providerKey: "login"
-user: "[email protected]"
-roles: []
-authenticated: false
-attributes: []
}
#message: "Filter 'softdeleteable' does not exist."
#code: 0
#file: "./vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php"
#line: 85
-previous: InvalidArgumentException {#490
#message: "Filter 'softdeleteable' does not exist."
#code: 0
#file: "./vendor/doctrine/orm/lib/Doctrine/ORM/Query/FilterCollection.php"
#line: 107
trace: {
./vendor/doctrine/orm/lib/Doctrine/ORM/Query/FilterCollection.php:107 { โฆ}
./vendor/doctrine/doctrine-bundle/ManagerConfigurator.php:48 { โฆ}
./vendor/doctrine/doctrine-bundle/ManagerConfigurator.php:34 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:677 {
โบ
โบ ($this->privates['doctrine.orm.default_manager_configurator'] ?? ($this->privates['doctrine.orm.default_manager_configurator'] = new \Doctrine\Bundle\DoctrineBundle\ManagerConfigurator(array(0 => 'softdeleteable', 1 => 'creditexpiration'), array())))-
>configure($instance);
โบ
arguments: {
$entityManager: Doctrine\ORM\EntityManager {#577 โฆ}
}
}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:3059 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:654 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:1947 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:669 { โฆ}
./vendor/symfony/dependency-injection/Container.php:245 { โฆ}
./vendor/symfony/dependency-injection/Container.php:225 { โฆ}
./vendor/symfony/doctrine-bridge/ManagerRegistry.php:35 { โฆ}
./vendor/doctrine/persistence/lib/Doctrine/Common/Persistence/AbstractManagerRegistry.php:152 { โฆ}
./vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:112 { โฆ}
./vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:117 { โฆ}
./vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:49 { โฆ}
./vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:74 { โฆ}
./vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:64 { โฆ}
./vendor/symfony/security-core/Authentication/AuthenticationProviderManager.php:76 { โฆ}
./vendor/symfony/security-http/Firewall/UsernamePasswordJsonAuthenticationListener.php:121 { โฆ}
./vendor/symfony/security-bundle/Debug/WrappedListener.php:46 { โฆ}
./vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:35 { โฆ}
./vendor/symfony/security-http/Firewall.php:90 { โฆ}
./vendor/symfony/security-bundle/EventListener/FirewallListener.php:48 { โฆ}
./vendor/symfony/event-dispatcher/Debug/WrappedListener.php:111 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:212 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:44 { โฆ}
./vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:142 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:126 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:67 { โฆ}
./vendor/symfony/http-kernel/Kernel.php:198 { โฆ}
./vendor/symfony/http-kernel/Client.php:68 { โฆ}
./vendor/symfony/framework-bundle/Client.php:131 { โฆ}
./vendor/symfony/browser-kit/Client.php:405 { โฆ}
./tests/Controller/ApiControllerTest.php:167 { โฆ}
./tests/Controller/ApiControllerTest.php:72 { โฆ}
./tests/Controller/User/MyselfControllerTest.php:12 { โฆ}
App\Tests\Controller\User\MyselfControllerTest->testShow() {}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:1071 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:939 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestResult.php:698 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:894 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/TestRunner.php:545 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:195 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:148 { โฆ}
./bin/.phpunit/phpunit-6.5/phpunit:17 { โฆ}
./vendor/symfony/phpunit-bridge/bin/simple-phpunit:242 { โฆ}
./bin/phpunit:18 { โฆ}
}
}
trace: {
./vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:85 { โฆ}
./vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:64 { โฆ}
./vendor/symfony/security-core/Authentication/AuthenticationProviderManager.php:76 { โฆ}
./vendor/symfony/security-http/Firewall/UsernamePasswordJsonAuthenticationListener.php:121 { โฆ}
./vendor/symfony/security-bundle/Debug/WrappedListener.php:46 { โฆ}
./vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:35 { โฆ}
./vendor/symfony/security-http/Firewall.php:90 { โฆ}
./vendor/symfony/security-bundle/EventListener/FirewallListener.php:48 { โฆ}
./vendor/symfony/event-dispatcher/Debug/WrappedListener.php:111 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:212 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:44 { โฆ}
./vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:142 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:126 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:67 { โฆ}
./vendor/symfony/http-kernel/Kernel.php:198 { โฆ}
./vendor/symfony/http-kernel/Client.php:68 { โฆ}
./vendor/symfony/framework-bundle/Client.php:131 { โฆ}
./vendor/symfony/browser-kit/Client.php:405 { โฆ}
./tests/Controller/ApiControllerTest.php:167 {
โบ ],\r
โบ json_encode($body)\r
โบ );\r
arguments: {
$method: "POST"
$uri: "http://localhost/auth/login"
$parameters: []
$files: []
$server: array:4 [ โฆ4]
$content: "{"email":"[email protected]","password":"123456789"}"
}
}
./tests/Controller/ApiControllerTest.php:72 { โฆ}
./tests/Controller/User/MyselfControllerTest.php:12 { โฆ}
App\Tests\Controller\User\MyselfControllerTest->testShow() {}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:1071 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:939 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestResult.php:698 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:894 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/TestRunner.php:545 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:195 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:148 { โฆ}
./bin/.phpunit/phpunit-6.5/phpunit:17 { โฆ}
./vendor/symfony/phpunit-bridge/bin/simple-phpunit:242 { โฆ}
./bin/phpunit:18 { โฆ}
}"><pre class="notranslate"><code class="notranslate"> Symfony\Component\Security\Core\Exception\AuthenticationServiceException {#521
-token: Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken {#309
-credentials: "123456789"
-providerKey: "login"
-user: "[email protected]"
-roles: []
-authenticated: false
-attributes: []
}
#message: "Filter 'softdeleteable' does not exist."
#code: 0
#file: "./vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php"
#line: 85
-previous: InvalidArgumentException {#490
#message: "Filter 'softdeleteable' does not exist."
#code: 0
#file: "./vendor/doctrine/orm/lib/Doctrine/ORM/Query/FilterCollection.php"
#line: 107
trace: {
./vendor/doctrine/orm/lib/Doctrine/ORM/Query/FilterCollection.php:107 { โฆ}
./vendor/doctrine/doctrine-bundle/ManagerConfigurator.php:48 { โฆ}
./vendor/doctrine/doctrine-bundle/ManagerConfigurator.php:34 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:677 {
โบ
โบ ($this->privates['doctrine.orm.default_manager_configurator'] ?? ($this->privates['doctrine.orm.default_manager_configurator'] = new \Doctrine\Bundle\DoctrineBundle\ManagerConfigurator(array(0 => 'softdeleteable', 1 => 'creditexpiration'), array())))-
>configure($instance);
โบ
arguments: {
$entityManager: Doctrine\ORM\EntityManager {#577 โฆ}
}
}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:3059 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:654 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:1947 { โฆ}
./var/cache/test/ContainerSdbfk4U/srcApp_KernelTestDebugContainer.php:669 { โฆ}
./vendor/symfony/dependency-injection/Container.php:245 { โฆ}
./vendor/symfony/dependency-injection/Container.php:225 { โฆ}
./vendor/symfony/doctrine-bridge/ManagerRegistry.php:35 { โฆ}
./vendor/doctrine/persistence/lib/Doctrine/Common/Persistence/AbstractManagerRegistry.php:152 { โฆ}
./vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:112 { โฆ}
./vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:117 { โฆ}
./vendor/symfony/doctrine-bridge/Security/User/EntityUserProvider.php:49 { โฆ}
./vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:74 { โฆ}
./vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:64 { โฆ}
./vendor/symfony/security-core/Authentication/AuthenticationProviderManager.php:76 { โฆ}
./vendor/symfony/security-http/Firewall/UsernamePasswordJsonAuthenticationListener.php:121 { โฆ}
./vendor/symfony/security-bundle/Debug/WrappedListener.php:46 { โฆ}
./vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:35 { โฆ}
./vendor/symfony/security-http/Firewall.php:90 { โฆ}
./vendor/symfony/security-bundle/EventListener/FirewallListener.php:48 { โฆ}
./vendor/symfony/event-dispatcher/Debug/WrappedListener.php:111 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:212 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:44 { โฆ}
./vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:142 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:126 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:67 { โฆ}
./vendor/symfony/http-kernel/Kernel.php:198 { โฆ}
./vendor/symfony/http-kernel/Client.php:68 { โฆ}
./vendor/symfony/framework-bundle/Client.php:131 { โฆ}
./vendor/symfony/browser-kit/Client.php:405 { โฆ}
./tests/Controller/ApiControllerTest.php:167 { โฆ}
./tests/Controller/ApiControllerTest.php:72 { โฆ}
./tests/Controller/User/MyselfControllerTest.php:12 { โฆ}
App\Tests\Controller\User\MyselfControllerTest->testShow() {}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:1071 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:939 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestResult.php:698 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:894 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/TestRunner.php:545 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:195 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:148 { โฆ}
./bin/.phpunit/phpunit-6.5/phpunit:17 { โฆ}
./vendor/symfony/phpunit-bridge/bin/simple-phpunit:242 { โฆ}
./bin/phpunit:18 { โฆ}
}
}
trace: {
./vendor/symfony/security-core/Authentication/Provider/DaoAuthenticationProvider.php:85 { โฆ}
./vendor/symfony/security-core/Authentication/Provider/UserAuthenticationProvider.php:64 { โฆ}
./vendor/symfony/security-core/Authentication/AuthenticationProviderManager.php:76 { โฆ}
./vendor/symfony/security-http/Firewall/UsernamePasswordJsonAuthenticationListener.php:121 { โฆ}
./vendor/symfony/security-bundle/Debug/WrappedListener.php:46 { โฆ}
./vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:35 { โฆ}
./vendor/symfony/security-http/Firewall.php:90 { โฆ}
./vendor/symfony/security-bundle/EventListener/FirewallListener.php:48 { โฆ}
./vendor/symfony/event-dispatcher/Debug/WrappedListener.php:111 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:212 { โฆ}
./vendor/symfony/event-dispatcher/EventDispatcher.php:44 { โฆ}
./vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:142 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:126 { โฆ}
./vendor/symfony/http-kernel/HttpKernel.php:67 { โฆ}
./vendor/symfony/http-kernel/Kernel.php:198 { โฆ}
./vendor/symfony/http-kernel/Client.php:68 { โฆ}
./vendor/symfony/framework-bundle/Client.php:131 { โฆ}
./vendor/symfony/browser-kit/Client.php:405 { โฆ}
./tests/Controller/ApiControllerTest.php:167 {
โบ ],\r
โบ json_encode($body)\r
โบ );\r
arguments: {
$method: "POST"
$uri: "http://localhost/auth/login"
$parameters: []
$files: []
$server: array:4 [ โฆ4]
$content: "{"email":"[email protected]","password":"123456789"}"
}
}
./tests/Controller/ApiControllerTest.php:72 { โฆ}
./tests/Controller/User/MyselfControllerTest.php:12 { โฆ}
App\Tests\Controller\User\MyselfControllerTest->testShow() {}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:1071 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:939 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestResult.php:698 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestCase.php:894 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/Framework/TestSuite.php:755 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/TestRunner.php:545 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:195 { โฆ}
./bin/.phpunit/phpunit-6.5/src/TextUI/Command.php:148 { โฆ}
./bin/.phpunit/phpunit-6.5/phpunit:17 { โฆ}
./vendor/symfony/phpunit-bridge/bin/simple-phpunit:242 { โฆ}
./bin/phpunit:18 { โฆ}
}
</code></pre></div> | <p dir="auto">Hi,</p>
<p dir="auto">I am using the Email constraint (Symfony\Component\Validator\Constraints\Email) as part of validating e-mail addresses. Now we had the case of an e-mail address containing a dot right before the @ sign such as:</p>
<p dir="auto"><a href="mailto:[email protected]">[email protected]</a></p>
<p dir="auto">This is a totally valid e-mail address and as such the Email constraint should accept it and not refuse it as it does right now (tested with Symfony 2.3.3).</p>
<p dir="auto">Let me know if you need more details.</p>
<p dir="auto">Cheers!</p> | 0 |
<p dir="auto">related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3072615" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/739" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/739/hovercard" href="https://github.com/pandas-dev/pandas/issues/739">#739</a></p>
<p dir="auto">Have a look at this example:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
import numpy as np
from StringIO import StringIO
print "Pandas version %s\n\n" % pd.__version__
data1 = """idx,metric
0,2.1
1,2.5
2,3"""
data2 = """idx,metric
0,2.7
1,2.2
2,2.8"""
df1 = pd.read_csv(StringIO(data1))
df2 = pd.read_csv(StringIO(data2))
concatenated = pd.concat([df1, df2], ignore_index=True)
merged = concatenated.groupby("idx").agg([np.mean, np.std])
print merged
print merged.sort('metric')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">from</span> <span class="pl-v">StringIO</span> <span class="pl-k">import</span> <span class="pl-v">StringIO</span>
<span class="pl-k">print</span> <span class="pl-s">"Pandas version %s<span class="pl-cce">\n</span><span class="pl-cce">\n</span>"</span> <span class="pl-c1">%</span> <span class="pl-s1">pd</span>.<span class="pl-s1">__version__</span>
<span class="pl-s1">data1</span> <span class="pl-c1">=</span> <span class="pl-s">"""idx,metric</span>
<span class="pl-s">0,2.1</span>
<span class="pl-s">1,2.5</span>
<span class="pl-s">2,3"""</span>
<span class="pl-s1">data2</span> <span class="pl-c1">=</span> <span class="pl-s">"""idx,metric</span>
<span class="pl-s">0,2.7</span>
<span class="pl-s">1,2.2</span>
<span class="pl-s">2,2.8"""</span>
<span class="pl-s1">df1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-v">StringIO</span>(<span class="pl-s1">data1</span>))
<span class="pl-s1">df2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-v">StringIO</span>(<span class="pl-s1">data2</span>))
<span class="pl-s1">concatenated</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">concat</span>([<span class="pl-s1">df1</span>, <span class="pl-s1">df2</span>], <span class="pl-s1">ignore_index</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">merged</span> <span class="pl-c1">=</span> <span class="pl-s1">concatenated</span>.<span class="pl-en">groupby</span>(<span class="pl-s">"idx"</span>).<span class="pl-en">agg</span>([<span class="pl-s1">np</span>.<span class="pl-s1">mean</span>, <span class="pl-s1">np</span>.<span class="pl-s1">std</span>])
<span class="pl-k">print</span> <span class="pl-s1">merged</span>
<span class="pl-k">print</span> <span class="pl-s1">merged</span>.<span class="pl-en">sort</span>(<span class="pl-s">'metric'</span>)</pre></div>
<p dir="auto">and its output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python test.py
Pandas version 0.11.0
metric
mean std
idx
0 2.40 0.424264
1 2.35 0.212132
2 2.90 0.141421
Traceback (most recent call last):
File "test.py", line 22, in <module>
print merged.sort('metric')
File "/***/Python-2.7.3/lib/python2.7/site-packages/pandas/core/frame.py", line 3098, in sort
inplace=inplace)
File "/***/Python-2.7.3/lib/python2.7/site-packages/pandas/core/frame.py", line 3153, in sort_index
% str(by))
ValueError: Cannot sort by duplicate column metric"><pre class="notranslate"><code class="notranslate">$ python test.py
Pandas version 0.11.0
metric
mean std
idx
0 2.40 0.424264
1 2.35 0.212132
2 2.90 0.141421
Traceback (most recent call last):
File "test.py", line 22, in <module>
print merged.sort('metric')
File "/***/Python-2.7.3/lib/python2.7/site-packages/pandas/core/frame.py", line 3098, in sort
inplace=inplace)
File "/***/Python-2.7.3/lib/python2.7/site-packages/pandas/core/frame.py", line 3153, in sort_index
% str(by))
ValueError: Cannot sort by duplicate column metric
</code></pre></div>
<p dir="auto">The problem here is not that there is a duplicate column <code class="notranslate">metric</code> as stated by the error message. The problem is that there are still two sub-levels. The solution in this case is to use</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="merged.sort([('metric', 'mean')])"><pre class="notranslate"><span class="pl-s1">merged</span>.<span class="pl-en">sort</span>([(<span class="pl-s">'metric'</span>, <span class="pl-s">'mean'</span>)])</pre></div>
<p dir="auto">for sorting by the mean of the metric. It took myself quite a while to figure this out. First of all, the error message should be more clear in this case. Then, maybe I was too stupid, but I could not find the solution in the docs, but within a thread on StackOverflow. Looks like the error message above is the result of an over-generalized condition around <a href="https://github.com/pydata/pandas/blob/v0.12.0rc1/pandas/core/frame.py#L3269">https://github.com/pydata/pandas/blob/v0.12.0rc1/pandas/core/frame.py#L3269</a></p> | <p dir="auto">When iterating through several dimension columns and doing a groupby function, it often works. However, for certain columns it will not and instead I get an error. The error is:</p>
<p dir="auto">ValueError: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().</p>
<p dir="auto">The only thing different about these specific columns is that they are unique. However, we won't often be aware if they are unique. I'm hoping this isn't the issue and if it is, is there a work around?</p>
<p dir="auto">Thanks!</p>
<p dir="auto">Below is the full traceback.</p>
<hr>
<p dir="auto">ValueError Traceback (most recent call last)<br>
in ()<br>
----> 1 df_grp = df.groupby('post_id').sum()</p>
<p dir="auto">/Users/Dev/anaconda/lib/python2.7/site-packages/pandas/core/generic.pyc in groupby(self, by, axis, level, as_index, sort, group_keys, squeeze)<br>
3157 axis = self._get_axis_number(axis)<br>
3158 return groupby(self, by=by, axis=axis, level=level, as_index=as_index,<br>
-> 3159 sort=sort, group_keys=group_keys, squeeze=squeeze)<br>
3160<br>
3161 def asfreq(self, freq, method=None, how=None, normalize=False):</p>
<p dir="auto">/Users/Dev/anaconda/lib/python2.7/site-packages/pandas/core/groupby.pyc in groupby(obj, by, *_kwds)<br>
1197 raise TypeError('invalid type: %s' % type(obj))<br>
1198<br>
-> 1199 return klass(obj, by, *_kwds)<br>
1200<br>
1201</p>
<p dir="auto">/Users/Dev/anaconda/lib/python2.7/site-packages/pandas/core/groupby.pyc in <strong>init</strong>(self, obj, keys, axis, level, grouper, exclusions, selection, as_index, sort, group_keys, squeeze)<br>
386 if grouper is None:<br>
387 grouper, exclusions, obj = _get_grouper(obj, keys, axis=axis,<br>
--> 388 level=level, sort=sort)<br>
389<br>
390 self.obj = obj</p>
<p dir="auto">/Users/Dev/anaconda/lib/python2.7/site-packages/pandas/core/groupby.pyc in _get_grouper(obj, key, axis, level, sort)<br>
2152 in_axis, name = False, None<br>
2153<br>
-> 2154 if is_categorical_dtype(gpr) and len(gpr) != len(obj):<br>
2155 raise ValueError("Categorical dtype grouper must have len(grouper) == len(data)")<br>
2156</p>
<p dir="auto">/Users/Dev/anaconda/lib/python2.7/site-packages/pandas/core/generic.pyc in <strong>nonzero</strong>(self)<br>
712 raise ValueError("The truth value of a {0} is ambiguous. "<br>
713 "Use a.empty, a.bool(), a.item(), a.any() or a.all()."<br>
--> 714 .format(self.<strong>class</strong>.<strong>name</strong>))<br>
715<br>
716 <strong>bool</strong> = <strong>nonzero</strong></p>
<p dir="auto">ValueError: The truth value of a DataFrame is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--- FAIL: TestTransportHeadChunkedResponse (0.01s)
transport_test.go:611: ip/ports differed between head requests: "127.0.0.1:47607" vs "127.0.0.1:47608"
FAIL
FAIL net/http 12.768s"><pre class="notranslate"><code class="notranslate">--- FAIL: TestTransportHeadChunkedResponse (0.01s)
transport_test.go:611: ip/ports differed between head requests: "127.0.0.1:47607" vs "127.0.0.1:47608"
FAIL
FAIL net/http 12.768s
</code></pre></div>
<p dir="auto"><a href="http://build.golang.org/log/5f8b7215370338c03fbb75d43befedcbd95ed2c3" rel="nofollow">http://build.golang.org/log/5f8b7215370338c03fbb75d43befedcbd95ed2c3</a></p>
<p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bradfitz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bradfitz">@bradfitz</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mikioh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mikioh">@mikioh</a></p> | <p dir="auto">Noticed at <a href="http://build.golang.org/log/c4295893036b8f63339f2fdcfa6a7f052edbdfa4" rel="nofollow">http://build.golang.org/log/c4295893036b8f63339f2fdcfa6a7f052edbdfa4</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--- FAIL: TestTransportHeadChunkedResponse-4 (0.02s)
transport_test.go:611: ip/ports differed between head requests: "127.0.0.1:54643" vs "127.0.0.1:54644"
FAIL
FAIL net/http 10.889s"><pre class="notranslate"><code class="notranslate">--- FAIL: TestTransportHeadChunkedResponse-4 (0.02s)
transport_test.go:611: ip/ports differed between head requests: "127.0.0.1:54643" vs "127.0.0.1:54644"
FAIL
FAIL net/http 10.889s
</code></pre></div>
<p dir="auto">The test is simply:</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" defer afterTest(t)
ts := httptest.NewServer(HandlerFunc(func(w ResponseWriter, r *Request) {
if r.Method != "HEAD" {
panic("expected HEAD; got " + r.Method)
}
w.Header().Set("Transfer-Encoding", "chunked") // client should ignore
w.Header().Set("x-client-ipport", r.RemoteAddr)
w.WriteHeader(200)
}))
defer ts.Close()
tr := &Transport{DisableKeepAlives: false}
c := &Client{Transport: tr}
res1, err := c.Head(ts.URL)
if err != nil {
t.Fatalf("request 1 error: %v", err)
}
res2, err := c.Head(ts.URL)
if err != nil {
t.Fatalf("request 2 error: %v", err)
}
if v1, v2 := res1.Header.Get("x-client-ipport"), res2.Header.Get("x-client-ipport"); v1 != v2 {
t.Errorf("ip/ports differed between head requests: %q vs %q", v1, v2)
}
}"><pre class="notranslate"> <span class="pl-k">defer</span> <span class="pl-en">afterTest</span>(<span class="pl-s1">t</span>)
<span class="pl-s1">ts</span> <span class="pl-c1">:=</span> <span class="pl-s1">httptest</span>.<span class="pl-en">NewServer</span>(<span class="pl-en">HandlerFunc</span>(<span class="pl-k">func</span>(<span class="pl-s1">w</span> <span class="pl-smi">ResponseWriter</span>, <span class="pl-s1">r</span> <span class="pl-c1">*</span><span class="pl-smi">Request</span>) {
<span class="pl-k">if</span> <span class="pl-s1">r</span>.<span class="pl-c1">Method</span> <span class="pl-c1">!=</span> <span class="pl-s">"HEAD"</span> {
<span class="pl-en">panic</span>(<span class="pl-s">"expected HEAD; got "</span> <span class="pl-c1">+</span> <span class="pl-s1">r</span>.<span class="pl-c1">Method</span>)
}
<span class="pl-s1">w</span>.<span class="pl-en">Header</span>().<span class="pl-en">Set</span>(<span class="pl-s">"Transfer-Encoding"</span>, <span class="pl-s">"chunked"</span>) <span class="pl-c">// client should ignore </span>
<span class="pl-s1">w</span>.<span class="pl-en">Header</span>().<span class="pl-en">Set</span>(<span class="pl-s">"x-client-ipport"</span>, <span class="pl-s1">r</span>.<span class="pl-c1">RemoteAddr</span>)
<span class="pl-s1">w</span>.<span class="pl-en">WriteHeader</span>(<span class="pl-c1">200</span>)
}))
<span class="pl-k">defer</span> <span class="pl-s1">ts</span>.<span class="pl-en">Close</span>()
<span class="pl-s1">tr</span> <span class="pl-c1">:=</span> <span class="pl-c1">&</span><span class="pl-smi">Transport</span>{<span class="pl-c1">DisableKeepAlives</span>: <span class="pl-c1">false</span>}
<span class="pl-s1">c</span> <span class="pl-c1">:=</span> <span class="pl-c1">&</span><span class="pl-smi">Client</span>{<span class="pl-c1">Transport</span>: <span class="pl-s1">tr</span>}
<span class="pl-s1">res1</span>, <span class="pl-s1">err</span> <span class="pl-c1">:=</span> <span class="pl-s1">c</span>.<span class="pl-en">Head</span>(<span class="pl-s1">ts</span>.<span class="pl-c1">URL</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-s1">t</span>.<span class="pl-en">Fatalf</span>(<span class="pl-s">"request 1 error: %v"</span>, <span class="pl-s1">err</span>)
}
<span class="pl-s1">res2</span>, <span class="pl-s1">err</span> <span class="pl-c1">:=</span> <span class="pl-s1">c</span>.<span class="pl-en">Head</span>(<span class="pl-s1">ts</span>.<span class="pl-c1">URL</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-s1">t</span>.<span class="pl-en">Fatalf</span>(<span class="pl-s">"request 2 error: %v"</span>, <span class="pl-s1">err</span>)
}
<span class="pl-k">if</span> <span class="pl-s1">v1</span>, <span class="pl-s1">v2</span> <span class="pl-c1">:=</span> <span class="pl-s1">res1</span>.<span class="pl-c1">Header</span>.<span class="pl-en">Get</span>(<span class="pl-s">"x-client-ipport"</span>), <span class="pl-s1">res2</span>.<span class="pl-c1">Header</span>.<span class="pl-en">Get</span>(<span class="pl-s">"x-client-ipport"</span>); <span class="pl-s1">v1</span> <span class="pl-c1">!=</span> <span class="pl-s1">v2</span> {
<span class="pl-s1">t</span>.<span class="pl-en">Errorf</span>(<span class="pl-s">"ip/ports differed between head requests: %q vs %q"</span>, <span class="pl-s1">v1</span>, <span class="pl-s1">v2</span>)
}
}</pre></div>
<p dir="auto">Perhaps the first Head returns but the second Head call starts before the background Transport goroutines get scheduled and register that the connection is idle.</p> | 1 |
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">I installed git and flutter onto my windows 10 computer. I followed the tutorial and entered the command:</p>
<p dir="auto">flutter doctor</p>
<p dir="auto">Then it looks like it tries to update the flutter tool but it fails every time and then tries to update again in an infinite loop of updating and failing.</p>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PS C:\WINDOWS\system32> flutter doctor
Updating flutter tool...
%1 is not a valid Win32 application.
Command: C:\Users\[username]\flutter\bin\cache\dart-sdk\lib\_internal\pub\asset\7zip\7za.exe e data.tar.gz
Unhandled exception:
Could not import "package:flutter_tools/executable.dart" from "file:///C:/Users/[username]/flutter/packages/flut
ter_tools/bin/flutter_tools.dart": Packages file 'file:///C:/Users/[username]/flutter/packages/flutter_tools/.pa
ckages' not found.
null
Updating flutter tool...
%1 is not a valid Win32 application.
Command: C:\Users\[username]\flutter\bin\cache\dart-sdk\lib\_internal\pub\asset\7zip\7za.exe e data.tar.gz
Unhandled exception:
Could not import "package:flutter_tools/executable.dart" from "file:///C:/Users/[username]/flutter/packages/flut
ter_tools/bin/flutter_tools.dart": Packages file 'file:///C:/Users/[username]/flutter/packages/flutter_tools/.pa
ckages' not found.
null
Updating flutter tool...
%1 is not a valid Win32 application."><pre class="notranslate"><code class="notranslate">PS C:\WINDOWS\system32> flutter doctor
Updating flutter tool...
%1 is not a valid Win32 application.
Command: C:\Users\[username]\flutter\bin\cache\dart-sdk\lib\_internal\pub\asset\7zip\7za.exe e data.tar.gz
Unhandled exception:
Could not import "package:flutter_tools/executable.dart" from "file:///C:/Users/[username]/flutter/packages/flut
ter_tools/bin/flutter_tools.dart": Packages file 'file:///C:/Users/[username]/flutter/packages/flutter_tools/.pa
ckages' not found.
null
Updating flutter tool...
%1 is not a valid Win32 application.
Command: C:\Users\[username]\flutter\bin\cache\dart-sdk\lib\_internal\pub\asset\7zip\7za.exe e data.tar.gz
Unhandled exception:
Could not import "package:flutter_tools/executable.dart" from "file:///C:/Users/[username]/flutter/packages/flut
ter_tools/bin/flutter_tools.dart": Packages file 'file:///C:/Users/[username]/flutter/packages/flutter_tools/.pa
ckages' not found.
null
Updating flutter tool...
%1 is not a valid Win32 application.
</code></pre></div>
<p dir="auto">This just keeps going on forever. What am I doing wrong?</p> | <p dir="auto">I want to do a server side authentication, so I need a refresh token to request an access token on server side. How can I get that?</p> | 0 |
<h3 dir="auto">System Info</h3>
<ul dir="auto">
<li><code class="notranslate">transformers</code> version: 4.9.1</li>
<li>Platform: Linux-4.15.0-210-generic-x86_64-with-debian-buster-sid</li>
<li>Python version: 3.7.10</li>
<li>PyTorch version (GPU?): 1.9.0 (True)</li>
<li>Tensorflow version (GPU?): not installed (NA)</li>
<li>Flax version (CPU?/GPU?/TPU?): not installed (NA)</li>
<li>Jax version: not installed</li>
<li>JaxLib version: not installed</li>
<li>Using GPU in script?: Yes</li>
<li>Using distributed or parallel set-up in script?: No</li>
</ul>
<h3 dir="auto">Who can help?</h3>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ArthurZucker/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ArthurZucker">@ArthurZucker</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/younesbelkada/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/younesbelkada">@younesbelkada</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Narsil/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Narsil">@Narsil</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sgugger/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sgugger">@sgugger</a></p>
<h3 dir="auto">Information</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> The official example scripts</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> My own modified scripts</li>
</ul>
<h3 dir="auto">Tasks</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> An officially supported task in the <code class="notranslate">examples</code> folder (such as GLUE/SQuAD, ...)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> My own task or dataset (give details below)</li>
</ul>
<h3 dir="auto">Reproduction</h3>
<ol dir="auto">
<li><code class="notranslate">from transformers import BertTokenizer, BertModel</code></li>
<li><code class="notranslate">tokenizer = BertTokenizer.from_pretrained('bert-large-cased')</code></li>
</ol>
<p dir="auto">As discussed <a href="https://huggingface.co/bert-large-cased#:~:text=from%20transformers%20import%20BertTokenizer%2C%20BertModel%0Atokenizer%20%3D%20BertTokenizer.from_pretrained(%27bert%2Dlarge%2Dcased%27)" rel="nofollow">here</a></p>
<p dir="auto">Leads to the following <code class="notranslate">HTTPError</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="HTTPError Traceback (most recent call last)
<ipython-input-6-5c580443a1ad> in <module>
----> 1 tokenizer = BertTokenizer.from_pretrained('bert-large-cased')
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/transformers/tokenization_utils_base.py in from_pretrained(cls, pretrained_model_name_or_path, *init_inputs, **kwargs)
1646 # At this point pretrained_model_name_or_path is either a directory or a model identifier name
1647 fast_tokenizer_file = get_fast_tokenizer_file(
-> 1648 pretrained_model_name_or_path, revision=revision, use_auth_token=use_auth_token
1649 )
1650 additional_files_names = {
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/transformers/tokenization_utils_base.py in get_fast_tokenizer_file(path_or_repo, revision, use_auth_token)
3406 """
3407 # Inspect all files from the repo/folder.
-> 3408 all_files = get_list_of_files(path_or_repo, revision=revision, use_auth_token=use_auth_token)
3409 tokenizer_files_map = {}
3410 for file_name in all_files:
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/transformers/file_utils.py in get_list_of_files(path_or_repo, revision, use_auth_token)
1685 token = None
1686 model_info = HfApi(endpoint=HUGGINGFACE_CO_RESOLVE_ENDPOINT).model_info(
-> 1687 path_or_repo, revision=revision, token=token
1688 )
1689 return [f.rfilename for f in model_info.siblings]
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/huggingface_hub/hf_api.py in model_info(self, repo_id, revision, token)
246 )
247 r = requests.get(path, headers=headers)
--> 248 r.raise_for_status()
249 d = r.json()
250 return ModelInfo(**d)
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/requests/models.py in raise_for_status(self)
951
952 if http_error_msg:
--> 953 raise HTTPError(http_error_msg, response=self)
954
955 def close(self):
HTTPError: 404 Client Error: Not Found for url: https://huggingface.co/api/models/bert-large-cased"><pre class="notranslate"><code class="notranslate">HTTPError Traceback (most recent call last)
<ipython-input-6-5c580443a1ad> in <module>
----> 1 tokenizer = BertTokenizer.from_pretrained('bert-large-cased')
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/transformers/tokenization_utils_base.py in from_pretrained(cls, pretrained_model_name_or_path, *init_inputs, **kwargs)
1646 # At this point pretrained_model_name_or_path is either a directory or a model identifier name
1647 fast_tokenizer_file = get_fast_tokenizer_file(
-> 1648 pretrained_model_name_or_path, revision=revision, use_auth_token=use_auth_token
1649 )
1650 additional_files_names = {
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/transformers/tokenization_utils_base.py in get_fast_tokenizer_file(path_or_repo, revision, use_auth_token)
3406 """
3407 # Inspect all files from the repo/folder.
-> 3408 all_files = get_list_of_files(path_or_repo, revision=revision, use_auth_token=use_auth_token)
3409 tokenizer_files_map = {}
3410 for file_name in all_files:
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/transformers/file_utils.py in get_list_of_files(path_or_repo, revision, use_auth_token)
1685 token = None
1686 model_info = HfApi(endpoint=HUGGINGFACE_CO_RESOLVE_ENDPOINT).model_info(
-> 1687 path_or_repo, revision=revision, token=token
1688 )
1689 return [f.rfilename for f in model_info.siblings]
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/huggingface_hub/hf_api.py in model_info(self, repo_id, revision, token)
246 )
247 r = requests.get(path, headers=headers)
--> 248 r.raise_for_status()
249 d = r.json()
250 return ModelInfo(**d)
~/miniconda3/envs/cmd-chall/lib/python3.7/site-packages/requests/models.py in raise_for_status(self)
951
952 if http_error_msg:
--> 953 raise HTTPError(http_error_msg, response=self)
954
955 def close(self):
HTTPError: 404 Client Error: Not Found for url: https://huggingface.co/api/models/bert-large-cased
</code></pre></div>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Should run without <code class="notranslate">HTTPError</code></p> | <p dir="auto">`File /usr/local/lib/python3.9/dist-packages/huggingface_hub/utils/_errors.py:259, in hf_raise_for_status(response, endpoint_name)<br>
258 try:<br>
--> 259 response.raise_for_status()<br>
260 except HTTPError as e:</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/requests/models.py:1021, in Response.raise_for_status(self)<br>
1020 if http_error_msg:<br>
-> 1021 raise HTTPError(http_error_msg, response=self)</p>
<p dir="auto">HTTPError: 504 Server Error: Gateway Time-out for url: <a href="https://huggingface.co/api/models/bert-base-uncased/tree/main?recursive=True" rel="nofollow">https://huggingface.co/api/models/bert-base-uncased/tree/main?recursive=True</a></p>
<p dir="auto">The above exception was the direct cause of the following exception:</p>
<p dir="auto">HfHubHTTPError Traceback (most recent call last)<br>
Cell In[6], line 2<br>
1 from transformers import BertTokenizer<br>
----> 2 tokenizer = BertTokenizer.from_pretrained('bert-base-uncased')</p>
<p dir="auto">File ~/.local/lib/python3.9/site-packages/transformers/tokenization_utils_base.py:1654, in PreTrainedTokenizerBase.from_pretrained(cls, pretrained_model_name_or_path, *init_inputs, **kwargs)<br>
1651 vocab_files[file_id] = pretrained_model_name_or_path<br>
1652 else:<br>
1653 # At this point pretrained_model_name_or_path is either a directory or a model identifier name<br>
-> 1654 fast_tokenizer_file = get_fast_tokenizer_file(<br>
1655 pretrained_model_name_or_path,<br>
1656 revision=revision,<br>
1657 use_auth_token=use_auth_token,<br>
1658 local_files_only=local_files_only,<br>
1659 )<br>
1660 additional_files_names = {<br>
1661 "added_tokens_file": ADDED_TOKENS_FILE,<br>
1662 "special_tokens_map_file": SPECIAL_TOKENS_MAP_FILE,<br>
1663 "tokenizer_config_file": TOKENIZER_CONFIG_FILE,<br>
1664 "tokenizer_file": fast_tokenizer_file,<br>
1665 }<br>
1666 # Look for the tokenizer files</p>
<p dir="auto">File ~/.local/lib/python3.9/site-packages/transformers/tokenization_utils_base.py:3486, in get_fast_tokenizer_file(path_or_repo, revision, use_auth_token, local_files_only)<br>
3466 """<br>
3467 Get the tokenizer file to use for this version of transformers.<br>
3468<br>
(...)<br>
3483 <code class="notranslate">str</code>: The tokenizer file to use.<br>
3484 """<br>
3485 # Inspect all files from the repo/folder.<br>
-> 3486 all_files = get_list_of_files(<br>
3487 path_or_repo, revision=revision, use_auth_token=use_auth_token, local_files_only=local_files_only<br>
3488 )<br>
3489 tokenizer_files_map = {}<br>
3490 for file_name in all_files:</p>
<p dir="auto">File ~/.local/lib/python3.9/site-packages/transformers/file_utils.py:2103, in get_list_of_files(path_or_repo, revision, use_auth_token, local_files_only)<br>
2101 else:<br>
2102 token = None<br>
-> 2103 return list_repo_files(path_or_repo, revision=revision, token=token)</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/utils/_deprecation.py:103, in _deprecate_arguments.._inner_deprecate_positional_args..inner_f(*args, **kwargs)<br>
101 message += "\n\n" + custom_message<br>
102 warnings.warn(message, FutureWarning)<br>
--> 103 return f(*args, **kwargs)</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/utils/_validators.py:120, in validate_hf_hub_args.._inner_fn(*args, **kwargs)<br>
117 if check_use_auth_token:<br>
118 kwargs = smoothly_deprecate_use_auth_token(fn_name=fn.<strong>name</strong>, has_token=has_token, kwargs=kwargs)<br>
--> 120 return fn(*args, **kwargs)</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/hf_api.py:1966, in HfApi.list_repo_files(self, repo_id, revision, repo_type, timeout, token)<br>
1936 @_deprecate_arguments(version="0.17", deprecated_args=["timeout"], custom_message="timeout is not used anymore.")<br>
1937 @validate_hf_hub_args<br>
1938 def list_repo_files(<br>
(...)<br>
1945 token: Optional[Union[bool, str]] = None,<br>
1946 ) -> List[str]:<br>
1947 """<br>
1948 Get the list of files in a given repo.<br>
1949<br>
(...)<br>
1964 <code class="notranslate">List[str]</code>: the list of files in a given repository.<br>
1965 """<br>
-> 1966 return [<br>
1967 f.rfilename<br>
1968 for f in self.list_files_info(<br>
1969 repo_id=repo_id, paths=None, revision=revision, repo_type=repo_type, token=token<br>
1970 )<br>
1971 ]</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/hf_api.py:1966, in (.0)<br>
1936 @_deprecate_arguments(version="0.17", deprecated_args=["timeout"], custom_message="timeout is not used anymore.")<br>
1937 @validate_hf_hub_args<br>
1938 def list_repo_files(<br>
(...)<br>
1945 token: Optional[Union[bool, str]] = None,<br>
1946 ) -> List[str]:<br>
1947 """<br>
1948 Get the list of files in a given repo.<br>
1949<br>
(...)<br>
1964 <code class="notranslate">List[str]</code>: the list of files in a given repository.<br>
1965 """<br>
-> 1966 return [<br>
1967 f.rfilename<br>
1968 for f in self.list_files_info(<br>
1969 repo_id=repo_id, paths=None, revision=revision, repo_type=repo_type, token=token<br>
1970 )<br>
1971 ]</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/hf_api.py:1932, in HfApi.list_files_info(self, repo_id, paths, revision, repo_type, token)<br>
1930 encoded_path = "/" + quote(path, safe="") if path else ""<br>
1931 tree_url = f"{self.endpoint}/api/{repo_type}s/{repo_id}/tree/{revision}{encoded_path}"<br>
-> 1932 for subpath_info in paginate(path=tree_url, headers=headers, params={"recursive": True}):<br>
1933 if subpath_info["type"] == "file":<br>
1934 yield _format_as_repo_file(subpath_info)</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/utils/_pagination.py:36, in paginate(path, params, headers)<br>
34 session = get_session()<br>
35 r = session.get(path, params=params, headers=headers)<br>
---> 36 hf_raise_for_status(r)<br>
37 yield from r.json()<br>
39 # Follow pages<br>
40 # Next link already contains query params</p>
<p dir="auto">File /usr/local/lib/python3.9/dist-packages/huggingface_hub/utils/_errors.py:301, in hf_raise_for_status(response, endpoint_name)<br>
297 raise BadRequestError(message, response=response) from e<br>
299 # Convert <code class="notranslate">HTTPError</code> into a <code class="notranslate">HfHubHTTPError</code> to display request information<br>
300 # as well (request id and/or server error message)<br>
--> 301 raise HfHubHTTPError(str(e), response=response) from e</p>
<p dir="auto">HfHubHTTPError: 504 Server Error: Gateway Time-out for url: <a href="https://huggingface.co/api/models/bert-base-uncased/tree/main?recursive=True%60" rel="nofollow">https://huggingface.co/api/models/bert-base-uncased/tree/main?recursive=True`</a></p> | 1 |
<p dir="auto">After cloning the repo, and updating my path variable, the instructions says to <code class="notranslate">flutter doctor</code> and gives me this error<br>
` Checking Dart SDK version...<br>
Downloading Dart SDK from Flutter engine <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/ead227f118077d1f2b57842a32abaf105b573b8a/hovercard" href="https://github.com/flutter/flutter/commit/ead227f118077d1f2b57842a32abaf105b573b8a"><tt>ead227f</tt></a>...<br>
Start-BitsTransfer : The service cannot be started, either because it is disabled or because it has no enabled devices<br>
associated with it. (Exception from HRESULT: 0x80070422)<br>
At C:\Users\Carlos\Documents\flutter\bin\internal\update_dart_sdk.ps1:47 char:1</p>
<ul dir="auto">
<li>Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip</li>
<li>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" + CategoryInfo : InvalidOperation: (:) [Start-BitsTransfer], COMException
+ FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBits
TransferCommand
"><pre class="notranslate"><code class="notranslate"> + CategoryInfo : InvalidOperation: (:) [Start-BitsTransfer], COMException
+ FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBits
TransferCommand
</code></pre></div>
</li>
</ul>
<p dir="auto">Error: Unable to update Dart SDK. Retrying...</p>
<p dir="auto">Waiting for 2 seconds, press CTRL+C to quit ... `</p> | <p dir="auto">I am facing this error while updating SDK for Dart!</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users>flutter doctor
Checking Dart SDK version...
Downloading Dart SDK 1.25.0-dev.11.0...
Start-BitsTransfer : The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. (Exception from HRESULT: 0x80070422)
At C:\Users\git\flutter\bin\internal\update_dart_sdk.ps1:44 char:19
+ Start-BitsTransfer <<<< -Source $dartSdkUrl -Destination $dartSdkZip
+ CategoryInfo : InvalidOperation: (:) [Start-BitsTransfer], COMException
+ FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBitsTransferCommand
Error: Unable to update Dart SDK. Retrying...
Waiting for 3 seconds, press CTRL+C to quit ...
Terminate batch job (Y/N)?"><pre class="notranslate"><code class="notranslate">C:\Users>flutter doctor
Checking Dart SDK version...
Downloading Dart SDK 1.25.0-dev.11.0...
Start-BitsTransfer : The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. (Exception from HRESULT: 0x80070422)
At C:\Users\git\flutter\bin\internal\update_dart_sdk.ps1:44 char:19
+ Start-BitsTransfer <<<< -Source $dartSdkUrl -Destination $dartSdkZip
+ CategoryInfo : InvalidOperation: (:) [Start-BitsTransfer], COMException
+ FullyQualifiedErrorId : StartBitsTransferCOMException,Microsoft.BackgroundIntelligentTransfer.Management.NewBitsTransferCommand
Error: Unable to update Dart SDK. Retrying...
Waiting for 3 seconds, press CTRL+C to quit ...
Terminate batch job (Y/N)?
</code></pre></div>
<p dir="auto"><strong>Note:</strong></p>
<p dir="auto">Trusted Installer is running in my PC :</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16036641/31850719-ddea5f78-b674-11e7-9aa2-1116b52bb9ea.png"><img src="https://user-images.githubusercontent.com/16036641/31850719-ddea5f78-b674-11e7-9aa2-1116b52bb9ea.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Help me plz!</p> | 1 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.8.6 visual studio extension</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...

i installed ### Typesript v1.8.6 visual studio extension from visual studio extension gallery

In my visual studio 2015 Typescript Project Template **## NOT AVAILABLE**

and new Typescript file ## **NOT AVAILABLE**
Other Information:

Visual Studio 2015 Professional Version

Window 10 Home
# Please Help"><pre class="notranslate"><span class="pl-c">// A self-contained demonstration of the problem follows...</span>
<span class="pl-c1">!</span><span class="pl-kos">[</span><span class="pl-s1">gfgfg</span><span class="pl-kos">]</span><span class="pl-kos">(</span><span class="pl-s1">https</span>:<span class="pl-c">//cloud.githubusercontent.com/assets/7469181/15927007/b6d77ee4-2e5c-11e6-89bd-78472b0e3bd3.PNG)</span>
<span class="pl-s1">i</span> <span class="pl-s1">installed</span> ### <span class="pl-smi">Typesript</span> <span class="pl-s1">v1</span><span class="pl-c1">.8</span><span class="pl-c1">.6</span> <span class="pl-s1">visual</span> <span class="pl-s1">studio</span> <span class="pl-s1">extension</span> <span class="pl-s1">from</span> <span class="pl-s1">visual</span> <span class="pl-s1">studio</span> <span class="pl-s1">extension</span> <span class="pl-s1">gallery</span>
<span class="pl-c1">!</span><span class="pl-kos">[</span><span class="pl-s1">hgffh</span><span class="pl-kos">]</span><span class="pl-kos">(</span><span class="pl-s1">https</span>:<span class="pl-c">//cloud.githubusercontent.com/assets/7469181/15926931/38961ce8-2e5c-11e6-9335-be6f48a2f91e.PNG)</span>
<span class="pl-smi">In</span> <span class="pl-s1">my</span> <span class="pl-s1">visual</span> <span class="pl-s1">studio</span> <span class="pl-c1">2015</span> <span class="pl-smi">Typescript</span> <span class="pl-smi">Project</span> <span class="pl-smi">Template</span> <span class="pl-c1">**</span>## <span class="pl-smi">NOT</span> <span class="pl-smi">AVAILABLE</span><span class="pl-c1">**</span>
<span class="pl-c1">!</span><span class="pl-kos">[</span><span class="pl-s1">uyyuyfhgf</span><span class="pl-kos">]</span><span class="pl-kos">(</span><span class="pl-s1">https</span>:<span class="pl-c">//cloud.githubusercontent.com/assets/7469181/15926945/4b3a73bc-2e5c-11e6-9ef9-211753d94d17.PNG) </span>
<span class="pl-s1">and</span> <span class="pl-k">new</span> <span class="pl-smi">Typescript</span> <span class="pl-s1">file</span> ## <span class="pl-c1">**</span><span class="pl-smi">NOT</span> <span class="pl-smi">AVAILABLE</span><span class="pl-c1">**</span>
<span class="pl-smi">Other</span> <span class="pl-smi">Information</span>:
<span class="pl-c1">!</span><span class="pl-kos">[</span><span class="pl-s1">capture</span><span class="pl-kos">]</span><span class="pl-kos">(</span><span class="pl-s1">https</span>:<span class="pl-c">//cloud.githubusercontent.com/assets/7469181/15927147/6723057a-2e5d-11e6-9562-5a068e6c4350.PNG)</span>
<span class="pl-smi">Visual</span> <span class="pl-smi">Studio</span> <span class="pl-c1">2015</span> <span class="pl-smi">Professional</span> <span class="pl-smi">Version</span>
<span class="pl-c1">!</span><span class="pl-kos">[</span><span class="pl-s1">hffhgf</span><span class="pl-kos">]</span><span class="pl-kos">(</span><span class="pl-s1">https</span>:<span class="pl-c">//cloud.githubusercontent.com/assets/7469181/15927159/74f71f6a-2e5d-11e6-88bb-b3ac6cb1ae24.PNG)</span>
<span class="pl-smi">Window</span> <span class="pl-c1">10</span> <span class="pl-smi">Home</span>
# <span class="pl-smi">Please</span> <span class="pl-smi">Help</span></pre></div> | <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="declare module "fs" {
var x: string;
}
declare module "fs" {
var y: number;
}"><pre class="notranslate"><span class="pl-k">declare</span> module <span class="pl-s">"fs"</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">x</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">declare</span> module <span class="pl-s">"fs"</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">y</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Expected:<br>
!!! Duplicate identifier ''fs''.<br>
!!! Ambient external module declaration cannot be reopened.<br>
Actual: no error</p> | 0 |
<p dir="auto">Hello, I got a bug when formatting a date object with DatePipe. The format is correct but the hours are displayed incorrectly, actually it display with 2 hours less.</p>
<p dir="auto">Ex.: 17/01/2017 14:45:26 is displayed as 17/01/2017 12:45:26</p>
<p dir="auto">First image is from Ionic 2 app demo<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/15070719/22032102/2fa4845e-dcca-11e6-9d57-3502c70dcc96.png"><img src="https://cloud.githubusercontent.com/assets/15070719/22032102/2fa4845e-dcca-11e6-9d57-3502c70dcc96.png" alt="ionic" style="max-width: 100%;"></a></p>
<p dir="auto">Second one is from Sql table showing the data<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/15070719/22032103/2fa6ec80-dcca-11e6-9159-0af158db7115.png"><img src="https://cloud.githubusercontent.com/assets/15070719/22032103/2fa6ec80-dcca-11e6-9159-0af158db7115.png" alt="sql" style="max-width: 100%;"></a></p> | <p dir="auto">DatePipe of Angular 2.0.0 RC2 doesn't allow to interpret date with timezone like AngularJS 1.5 does (<a href="https://docs.angularjs.org/api/ng/filter/date" rel="nofollow">https://docs.angularjs.org/api/ng/filter/date</a>) as the second argument (timezone)</p>
<p dir="auto">Angular 1 template api:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{{ date_expression | date : format : timezone}}"><pre class="notranslate"><code class="notranslate">{{ date_expression | date : format : timezone}}
</code></pre></div> | 1 |
<p dir="auto">Been looking at modernizing/formalizing the ThreeJS animation framework to be more similar to Unity/Unreal Engine 4. There is a lot of great code in ThreeJS but there is a bit of missing top level organization of animation structures, rather there is a lot of duplication.</p>
<p dir="auto">Here are the classes I've been studying today:</p>
<ul dir="auto">
<li>SkinnedMesh - derived from Mesh, adds support for array of Bone and Skeleton</li>
</ul>
<p dir="auto">The AnimationHandler/Animation pair:</p>
<ul dir="auto">
<li>AnimationHandler - a global object for creating and advancing playing Animation</li>
<li>Animation - a hierarchy of keyframe animation tracks usually used for bones on a skinned mesh, closely linked to AnimationHandler.</li>
</ul>
<p dir="auto">The following is not compatible with the Animation/AnimationHandler framework:</p>
<ul dir="auto">
<li>KeyframeAnimation - AnimationHandler independent Keyframe track, only used by Collada example.</li>
<li>MorphAnimation - AnimationHandler independent MorphTarget animation, only used by *morphtargets_horse.html examples.</li>
</ul>
<p dir="auto">The following combine scheduling of animations with meshes/mesh hierarchies:</p>
<ul dir="auto">
<li>BlendCharacter - SkinnedMesh + Animation Scheduler (sometimes used with manually animated morph targets, such as in webgl_animation_skinning_morph.html)</li>
<li>MorphAnimMesh - single Morph Target animation (for simple repeating things.)</li>
<li>MorphBlendMesh - multiple Morph Target animation blending (meshes that change between morph target animations.)</li>
<li>UCSCharacter - SkinnedMesh + Animation (only used in webgl_morphtargets_human.html)</li>
<li>MD2Character - A bunch of MorphAnimMeshes (used only in webgl_morphtargets_md2.html)</li>
<li>MD2Charactercomplex - A bunch of MorphBlendMeshes (used only in webgl_morphtargets_md2_control.html)</li>
</ul>
<p dir="auto">I'm trying to think of a way of reducing all of these classes into a clearer structure.</p>
<p dir="auto">I think a structure similar to this might be the way forward:</p>
<ul dir="auto">
<li>Track - a keyframe animation that contains a name, a set of keys that are composed of times and values. Keys can be weights, or pos/rot/scale. The name of the track can refer to morphTargets or bones/nodes or possibly other values within a node. (We could even abstract Track to not be keyframed, it could be equation based as well if we get the interface right.)</li>
<li>Clip - a set of tracks with a name, duration. An animation sequence, such as blink, walk, jump, etc. Can be a morph or a keyframe or maybe both. Similar to <a href="http://docs.unity3d.com/ScriptReference/AnimationClip.html" rel="nofollow">Unity's AnimationClip class</a></li>
<li>Action - a clip that is being played. Would be associated with a root node to which the Track names would be relative. Would have a blend weight associated with it and can be queued into animation system. Could optionally loop and have a play speed. (Will likely require more parameters for various edge cases.) Similar to <a href="http://docs.unity3d.com/ScriptReference/AnimationState.html" rel="nofollow">Unity's AnimationState class</a></li>
<li>Mixer - a container for a number of actions. Would be responsible for applying the actions to the hierarchy -- it would be sort of like AnimationHandler, it could be global or there could be multiple -- I'm open on this case. It would be responsible for blending between actions.</li>
<li>Animator - a higher level structure on top of Mixer that would contain the logic to do things like walk, run, jump, it would do that by managing what actions are queued up and how they are blended between in order to create a smooth result. (Will have to be easy to extend to support new entity behaviors.) Similar to <a href="http://docs.unity3d.com/ScriptReference/Animator.html" rel="nofollow">Unity's Animator class</a></li>
</ul>
<p dir="auto">I would get rid of AnimationHandler, Animation (replaced by Clip/Track), KeyframeAnimation (replaced by Track), MorphAnimation (replaced by Track), BlendCharacter (replaced by Mixer/Clip/Track), MorphAnimMesh (replaced by Mixer/Clip/Track), MorphBlendMesh (replaced by Animator/Mixer/Clip/Track), USCCharacter, MD2Character, MD2CharacterComplex (replaced by Animator/Mixer/Clip/Track), or at least deprecate them in favor for the Track/Clip/Action/Mixer/Animator design, and this design could drive any objects in ThreeJS, including Materials, Lights and Cameras, if you so desired.</p>
<p dir="auto">Basically this is a more flexible and actually simpler design.</p>
<p dir="auto">The above is very similar to Unity/Unreal Engine.</p> | <h5 dir="auto">Description of the problem</h5>
<ul dir="auto">
<li>Open <a href="https://xr-spinosaurus.glitch.me/" rel="nofollow">https://xr-spinosaurus.glitch.me/</a> using Chrome on an ARCore-enabled device, with "WebXR AR Module" enabled in chrome://flags</li>
<li>Press "VR" button</li>
<li>exit VR session</li>
<li>Press "AR" button</li>
</ul>
<p dir="auto">The dinosaur is now rendered twice, with an unexpected duplicate second smaller copy that's also animated and intersects the intended content:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1392351/73582765-813d5780-4443-11ea-9314-6568d5ddb909.png"><img src="https://user-images.githubusercontent.com/1392351/73582765-813d5780-4443-11ea-9314-6568d5ddb909.png" alt="screen-duplicate-render" style="max-width: 100%;"></a></p>
<p dir="auto">I examined this in Inspector, and the issue seems to be <a href="https://github.com/mrdoob/three.js/blob/52c39e457a45192b9505e4cb490b3f98eb9a12c4/src/renderers/webxr/WebXRManager.js#L438">WebXRManager's onAnimationFrame</a> that loops over the WebXR views array and updates the cameraVR viewports. In VR mode, there were two views, but in AR mode, there's only one view, so the second camera's viewport never gets updated.</p>
<p dir="auto">As a result, if VR mode was used before AR mode, but the WebXRManager is reused, cameras[1] still has stale viewport information from the previous VR session, and rendering its output into an area that overlaps with the intended AR viewport:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="_.cameras[0].viewport
sย {x: 0, y: 0, z: 2880, w: 1440}
_.cameras[1].viewport
sย {x: 1377, y: 0, z: 1377, w: 1357}"><pre class="notranslate"><code class="notranslate">_.cameras[0].viewport
sย {x: 0, y: 0, z: 2880, w: 1440}
_.cameras[1].viewport
sย {x: 1377, y: 0, z: 1377, w: 1357}
</code></pre></div>
<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=""> "111dev", but likely also current dev since the WebXRManager code still looks the same</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=""> Chrome</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=""> Android</li>
</ul>
<h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5>
<p dir="auto">ARCore-capable Android phone</p> | 0 |
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: master branch</li>
<li>Operating System version: maxOS Catalina</li>
<li>Java version: 1.8.0_101</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>clone the project , master branch</li>
<li>mvn clean package -Dmaven.test.skip=true</li>
</ol>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">Got Error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ERROR] The build could not read 4 projects -> [Help 1]
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-demo-xml-consumer:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-demo/dubbo-demo-xml/dubbo-demo-xml-consumer/pom.xml) has 1 error
[ERROR] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.dubbo:dubbo-metadata-report-zookeeper:jar -> duplicate declaration of version (?) @ org.apache.dubbo:dubbo-demo-xml-consumer:[unknown-version], /Users/xiang/open_source/dubbo/dubbo/dubbo-demo/dubbo-demo-xml/dubbo-demo-xml-consumer/pom.xml, line 70, column 21
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-dependencies-bom:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-dependencies-bom/pom.xml) has 1 error
[ERROR] 'dependencyManagement.dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: io.etcd:jetcd-launcher:jar -> version ${jetcd_version} vs ${etcd_launcher_version} @ org.apache.dubbo:dubbo-dependencies-bom:${revision}, /Users/xiang/open_source/dubbo/dubbo/dubbo-dependencies-bom/pom.xml, line 628, column 25
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-bom:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-bom/pom.xml) has 1 error
[ERROR] 'dependencyManagement.dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.dubbo:dubbo-metadata-api:jar -> duplicate declaration of version ${project.version} @ org.apache.dubbo:dubbo-bom:[unknown-version], /Users/xiang/open_source/dubbo/dubbo/dubbo-bom/pom.xml, line 377, column 25
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-bootstrap-api:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-bootstrap/dubbo-bootstrap-api/pom.xml) has 1 error
[ERROR] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.dubbo:dubbo-registry-nacos:jar -> duplicate declaration of version ${project.parent.version} @ org.apache.dubbo:dubbo-bootstrap-api:[unknown-version], /Users/xiang/open_source/dubbo/dubbo/dubbo-bootstrap/dubbo-bootstrap-api/pom.xml, line 132, column 21
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException"><pre class="notranslate"><code class="notranslate">[ERROR] The build could not read 4 projects -> [Help 1]
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-demo-xml-consumer:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-demo/dubbo-demo-xml/dubbo-demo-xml-consumer/pom.xml) has 1 error
[ERROR] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.dubbo:dubbo-metadata-report-zookeeper:jar -> duplicate declaration of version (?) @ org.apache.dubbo:dubbo-demo-xml-consumer:[unknown-version], /Users/xiang/open_source/dubbo/dubbo/dubbo-demo/dubbo-demo-xml/dubbo-demo-xml-consumer/pom.xml, line 70, column 21
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-dependencies-bom:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-dependencies-bom/pom.xml) has 1 error
[ERROR] 'dependencyManagement.dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: io.etcd:jetcd-launcher:jar -> version ${jetcd_version} vs ${etcd_launcher_version} @ org.apache.dubbo:dubbo-dependencies-bom:${revision}, /Users/xiang/open_source/dubbo/dubbo/dubbo-dependencies-bom/pom.xml, line 628, column 25
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-bom:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-bom/pom.xml) has 1 error
[ERROR] 'dependencyManagement.dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.dubbo:dubbo-metadata-api:jar -> duplicate declaration of version ${project.version} @ org.apache.dubbo:dubbo-bom:[unknown-version], /Users/xiang/open_source/dubbo/dubbo/dubbo-bom/pom.xml, line 377, column 25
[ERROR]
[ERROR] The project org.apache.dubbo:dubbo-bootstrap-api:2.7.5-SNAPSHOT (/Users/xiang/open_source/dubbo/dubbo/dubbo-bootstrap/dubbo-bootstrap-api/pom.xml) has 1 error
[ERROR] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.dubbo:dubbo-registry-nacos:jar -> duplicate declaration of version ${project.parent.version} @ org.apache.dubbo:dubbo-bootstrap-api:[unknown-version], /Users/xiang/open_source/dubbo/dubbo/dubbo-bootstrap/dubbo-bootstrap-api/pom.xml, line 132, column 21
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.0</li>
<li>Operating System version: windows</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>ๅ่dubboๅฎ็ฝ็restๅ่ฎฎไฝฟ็จไพๅญๆฅๆจกๆ<br>
<a href="http://dubbo.apache.org/zh-cn/docs/user/references/protocol/rest.html" rel="nofollow">http://dubbo.apache.org/zh-cn/docs/user/references/protocol/rest.html</a></li>
<li>ๆ็
งไธ้ข้พๆฅไธญ่ฏด็ๅๆณ๏ผๅๅซๅฐ่ฏ2.6.5็ๅ2.7.0็ๅฐฑ่ฝ็ๅบๅทฎๅซใ2.6.5็ๅๅธ็restๆๅก่ฝๆญฃๅธธ่ขซ่ฎฟ้ฎ๏ผ่2.7.0็็restๆๅกไธ่ฝ่ขซ่ฎฟ้ฎใ</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">What do you expected from the above steps๏ผ</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?<br>
2.7.0็็restๅ่ฎฎ๏ผๆ ่ฎบๆฏๅ
ๅตๅผ(jettyๆ่
tomcat)ๆ่
ๅค้จ้ๆๅผ๏ผ้่ฟweb.xml้
็ฝฎ๏ผ้ฝไธ่ตทไฝ็จใ2.6.5็ๅดๆฒก้ฎ้ขใ่ฟๆฏ2.7.0็็ไธไธชbug.</p>
<p dir="auto">่ฟไธชbugไผๅฏผ่ดrestfulๆฅๅฃๆ ๆณๆญฃๅธธ่ฎฟ้ฎใ</p> | 0 |
<p dir="auto">SLSQP minimization fails to correctly solve a constrained minimization problem in v1.5.2, which it is able to solve in v1.1.0.</p>
<p dir="auto">Sample code with the problem explanation, followed by outputs with the two scipy versions</p>
<h1 dir="auto">Code</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#
# find (Nx1) w that minimizes w'Qw, subject to:
# - non-negative elements in w
# - third element of w = 0.2
# - elements of w sum to one
# - w'r = 0.05862
# correct answer is w = [0, 0, 0.2, 0, 0.8]
import numpy as np
import scipy as sc
from scipy.optimize import minimize
from scipy.optimize import Bounds
Q = np.array([[0.00463, 0.00407, 0.00102, 0.00212, 0.00272],
[0.00407, 0.00412, 0.00079, 0.00185, 0.00289],
[0.00102, 0.00079, 0.00039, 0.00061, 0.00054],
[0.00212, 0.00185, 0.00061, 0.00134, 0.00129],
[0.00272, 0.00289, 0.00054, 0.00129, 0.00214]])
r = np.array([0.12964, 0.11086, 0.03439, 0.11594, 0.06468])
wInit = np.ones((5,1)) * 0.2
bounds = Bounds([0,0,0.2,0,0],
[1,1,0.2,1,1])
objective = lambda w: np.sqrt(w.dot(Q).dot(w.T))
constraints = ({'type': 'eq', 'fun': lambda w: w.sum() - 1},
{'type': 'eq', 'fun': lambda w: w.dot(r.T) - 0.05862})
res = minimize(objective, wInit, method='SLSQP', bounds=bounds,
constraints=constraints)`
print ("Scipy version " + sc.__version__)
print ("Condition number of Q is %.1f" % np.linalg.cond(Q))
print (res)"><pre class="notranslate"><code class="notranslate">#
# find (Nx1) w that minimizes w'Qw, subject to:
# - non-negative elements in w
# - third element of w = 0.2
# - elements of w sum to one
# - w'r = 0.05862
# correct answer is w = [0, 0, 0.2, 0, 0.8]
import numpy as np
import scipy as sc
from scipy.optimize import minimize
from scipy.optimize import Bounds
Q = np.array([[0.00463, 0.00407, 0.00102, 0.00212, 0.00272],
[0.00407, 0.00412, 0.00079, 0.00185, 0.00289],
[0.00102, 0.00079, 0.00039, 0.00061, 0.00054],
[0.00212, 0.00185, 0.00061, 0.00134, 0.00129],
[0.00272, 0.00289, 0.00054, 0.00129, 0.00214]])
r = np.array([0.12964, 0.11086, 0.03439, 0.11594, 0.06468])
wInit = np.ones((5,1)) * 0.2
bounds = Bounds([0,0,0.2,0,0],
[1,1,0.2,1,1])
objective = lambda w: np.sqrt(w.dot(Q).dot(w.T))
constraints = ({'type': 'eq', 'fun': lambda w: w.sum() - 1},
{'type': 'eq', 'fun': lambda w: w.dot(r.T) - 0.05862})
res = minimize(objective, wInit, method='SLSQP', bounds=bounds,
constraints=constraints)`
print ("Scipy version " + sc.__version__)
print ("Condition number of Q is %.1f" % np.linalg.cond(Q))
print (res)
</code></pre></div>
<h1 dir="auto">Output with v1.1.0</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Scipy version 1.1.0
Condition number of Q is 373.2
fun: 0.039471508711981115
jac: array([0.0603 , 0.06258, 0.01292, 0.02924, 0.04611])
message: 'Optimization terminated successfully.'
nfev: 300
nit: 23
njev: 19
status: 0
success: True
x: array([3.34781e-17, 1.54010e-16, 2.00000e-01, 9.75493e-17, 8.00000e-01])"><pre class="notranslate"><code class="notranslate">Scipy version 1.1.0
Condition number of Q is 373.2
fun: 0.039471508711981115
jac: array([0.0603 , 0.06258, 0.01292, 0.02924, 0.04611])
message: 'Optimization terminated successfully.'
nfev: 300
nit: 23
njev: 19
status: 0
success: True
x: array([3.34781e-17, 1.54010e-16, 2.00000e-01, 9.75493e-17, 8.00000e-01])
</code></pre></div>
<h1 dir="auto">Output with v1.5.2</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Scipy version 1.5.2
Condition number of Q is 373.2
fun: 0.0440090899701414
jac: array([0.06616815, 0.06235076, nan, 0.03276596, 0.04353646])
message: 'Inequality constraints incompatible'
nfev: 6
nit: 1
njev: 1
status: 4
success: False
x: array([0.2, 0.2, 0.2, 0.2, 0.2])
C:\ProgramData\Anaconda3\lib\site-packages\scipy\optimize\_numdiff.py:519: RuntimeWarning: invalid value encountered in true_divide
J_transposed[i] = df / dx"><pre class="notranslate"><code class="notranslate">Scipy version 1.5.2
Condition number of Q is 373.2
fun: 0.0440090899701414
jac: array([0.06616815, 0.06235076, nan, 0.03276596, 0.04353646])
message: 'Inequality constraints incompatible'
nfev: 6
nit: 1
njev: 1
status: 4
success: False
x: array([0.2, 0.2, 0.2, 0.2, 0.2])
C:\ProgramData\Anaconda3\lib\site-packages\scipy\optimize\_numdiff.py:519: RuntimeWarning: invalid value encountered in true_divide
J_transposed[i] = df / dx
</code></pre></div> | <p dir="auto">In scipy-0.18.0, scipy.sparse.coo_matrix.tocsr() modifies the row, col, and data attributes of the original matrix. This is not the case in scipy-0.17.0. Consider the following example:</p>
<hr>
<p dir="auto">import numpy as np<br>
import scipy.sparse as sp<br>
import scipy.sparse.linalg</p>
<p dir="auto">row = [0, 1, 2, 0, 0, 1, 2, 3, 4, 5, 3, 4, 5, 6, 7, 6, 7, 6, 7]<br>
col =[3, 4, 5, 7, 6, 7, 6, 0, 1, 2, 3, 4, 5, 2, 0, 0, 1, 6, 7]<br>
data = [-1, -1, -1, -1, 1, 1, -1, 0, 0, 1, 1, 1, 0, -1, -1, 1, 1, 0.491, 0.491]</p>
<p dir="auto">A = scipy.sparse.coo_matrix((data, (row,col)), shape=(8,8))<br>
print A.toarray()</p>
<p dir="auto">print A.row<br>
print A.col<br>
print A.data</p>
<p dir="auto">B = A.tocsr()</p>
<p dir="auto">print A.row<br>
print A.col<br>
print A.data</p>
<p dir="auto">print A.toarray()</p>
<hr>
<p dir="auto">In both 0.17.0 and 0.18.0, the matrix A does not change. However in 0.18.0, A.row, A.col, and A.data chage after A.tocsr() is called. This is problematic when, for example, I need to create A, convert to csr, solve a linear system, update only the data of A, repeat.</p>
<p dir="auto">Scipy has been a tremendous asset to my work, so I'd like to thank the development team. Also, thanks for help with this issue.</p> | 0 |
<p dir="auto">Hi all, I'm running Gentoo Linux x86_64. I installed the Julia v0.5.0 Generic Linux binary 64-bit (X86). Calling Julia gives the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ julia
fatal: error thrown and no exception handler available.
Base.InitError(mod=:LibGit2, error=ErrorException("could not load library "libgit2"
libgssapi_krb5.so.2: cannot open shared object file: No such file or directory"))
rec_backtrace at /home/centos/buildbot/slave/package_tarball64/build/src/stackwalk.c:84
record_backtrace at /home/centos/buildbot/slave/package_tarball64/build/src/task.c:232
jl_throw at /home/centos/buildbot/slave/package_tarball64/build/src/task.c:550
jl_errorf at /home/centos/buildbot/slave/package_tarball64/build/src/builtins.c:78
jl_dlerror at /home/centos/buildbot/slave/package_tarball64/build/src/dlload.c:69 [inlined]
jl_load_dynamic_library_ at /home/centos/buildbot/slave/package_tarball64/build/src/dlload.c:209
jl_get_library at /home/centos/buildbot/slave/package_tarball64/build/src/runtime_ccall.cpp:152
jl_load_and_lookup at /home/centos/buildbot/slave/package_tarball64/build/src/runtime_ccall.cpp:163
unknown function (ip: 0x7f4c5fed6346)
**init** at ./libgit2/libgit2.jl:538
unknown function (ip: 0x7f4c5fed6b58)
jl_call_method_internal at /home/centos/buildbot/slave/package_tarball64/build/src/julia_internal.h:189 [inlined]
jl_apply_generic at /home/centos/buildbot/slave/package_tarball64/build/src/gf.c:1942
jl_apply at /home/centos/buildbot/slave/package_tarball64/build/src/julia.h:1392 [inlined]
jl_module_run_initializer at /home/centos/buildbot/slave/package_tarball64/build/src/toplevel.c:83
_julia_init at /home/centos/buildbot/slave/package_tarball64/build/src/init.c:742
julia_init at /home/centos/buildbot/slave/package_tarball64/build/src/task.c:283
unknown function (ip: 0x4013aa)
__libc_start_main at /lib64/libc.so.6 (unknown line)
unknown function (ip: 0x4013fc)"><pre class="notranslate"><code class="notranslate">$ julia
fatal: error thrown and no exception handler available.
Base.InitError(mod=:LibGit2, error=ErrorException("could not load library "libgit2"
libgssapi_krb5.so.2: cannot open shared object file: No such file or directory"))
rec_backtrace at /home/centos/buildbot/slave/package_tarball64/build/src/stackwalk.c:84
record_backtrace at /home/centos/buildbot/slave/package_tarball64/build/src/task.c:232
jl_throw at /home/centos/buildbot/slave/package_tarball64/build/src/task.c:550
jl_errorf at /home/centos/buildbot/slave/package_tarball64/build/src/builtins.c:78
jl_dlerror at /home/centos/buildbot/slave/package_tarball64/build/src/dlload.c:69 [inlined]
jl_load_dynamic_library_ at /home/centos/buildbot/slave/package_tarball64/build/src/dlload.c:209
jl_get_library at /home/centos/buildbot/slave/package_tarball64/build/src/runtime_ccall.cpp:152
jl_load_and_lookup at /home/centos/buildbot/slave/package_tarball64/build/src/runtime_ccall.cpp:163
unknown function (ip: 0x7f4c5fed6346)
**init** at ./libgit2/libgit2.jl:538
unknown function (ip: 0x7f4c5fed6b58)
jl_call_method_internal at /home/centos/buildbot/slave/package_tarball64/build/src/julia_internal.h:189 [inlined]
jl_apply_generic at /home/centos/buildbot/slave/package_tarball64/build/src/gf.c:1942
jl_apply at /home/centos/buildbot/slave/package_tarball64/build/src/julia.h:1392 [inlined]
jl_module_run_initializer at /home/centos/buildbot/slave/package_tarball64/build/src/toplevel.c:83
_julia_init at /home/centos/buildbot/slave/package_tarball64/build/src/init.c:742
julia_init at /home/centos/buildbot/slave/package_tarball64/build/src/task.c:283
unknown function (ip: 0x4013aa)
__libc_start_main at /lib64/libc.so.6 (unknown line)
unknown function (ip: 0x4013fc)
</code></pre></div>
<p dir="auto">Does anybody have an idea?</p> | <p dir="auto">Using openSUSE Leap 42.1:<br>
24 hours ago a git pull followed by a <code class="notranslate">make && make testall</code> ran fine. This morning I had an error in make:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="...
patching file tests/online/badssl.c
CMake Error: The current CMakeCache.txt directory /home/colin/Downloads/julia6/deps/scratch/libgit2-211e117a0590583a720c53172406f34186c543bd/CMakeCache.txt is different than the directory /home/colin/Downloads/julia/deps/scratch/libgit2-211e117a0590583a720c53172406f34186c543bd where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
CMake Error: The source "/home/colin/Downloads/julia6/deps/srccache/libgit2-211e117a0590583a720c53172406f34186c543bd/CMakeLists.txt" does not match the source "/home/colin/Downloads/julia/deps/srccache/libgit2-211e117a0590583a720c53172406f34186c543bd/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory.
/home/colin/Downloads/julia6/deps/libgit2.mk:66: recipe for target 'scratch/libgit2-211e117a0590583a720c53172406f34186c543bd/build-configured' failed
make[1]: *** [scratch/libgit2-211e117a0590583a720c53172406f34186c543bd/build-configured] Error 1
Makefile:81: recipe for target 'julia-deps' failed
make: *** [julia-deps] Error 2"><pre class="notranslate"><code class="notranslate">...
patching file tests/online/badssl.c
CMake Error: The current CMakeCache.txt directory /home/colin/Downloads/julia6/deps/scratch/libgit2-211e117a0590583a720c53172406f34186c543bd/CMakeCache.txt is different than the directory /home/colin/Downloads/julia/deps/scratch/libgit2-211e117a0590583a720c53172406f34186c543bd where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt
CMake Error: The source "/home/colin/Downloads/julia6/deps/srccache/libgit2-211e117a0590583a720c53172406f34186c543bd/CMakeLists.txt" does not match the source "/home/colin/Downloads/julia/deps/srccache/libgit2-211e117a0590583a720c53172406f34186c543bd/CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory.
/home/colin/Downloads/julia6/deps/libgit2.mk:66: recipe for target 'scratch/libgit2-211e117a0590583a720c53172406f34186c543bd/build-configured' failed
make[1]: *** [scratch/libgit2-211e117a0590583a720c53172406f34186c543bd/build-configured] Error 1
Makefile:81: recipe for target 'julia-deps' failed
make: *** [julia-deps] Error 2
</code></pre></div>
<p dir="auto">I thought I had fixed this with <code class="notranslate">make -C deps distclean-libgit2 distclean-mbedtls distclean-libssh2</code> which allowed <code class="notranslate">make</code> to run to the end. However now Julia 0.6 fails to launch with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> julia6
fatal: error thrown and no exception handler available.
Base.InitError(mod=:LibGit2, error=ErrorException("error initializing LibGit2 module"))
rec_backtrace at /home/colin/Downloads/julia6/src/stackwalk.c:84
record_backtrace at /home/colin/Downloads/julia6/src/task.c:238
jl_throw at /home/colin/Downloads/julia6/src/task.c:560
__init__ at ./libgit2/libgit2.jl:539
unknown function (ip: 0x7f60d03e3e08)
jl_call_method_internal at /home/colin/Downloads/julia6/src/julia_internal.h:218 [inlined]
jl_apply_generic at /home/colin/Downloads/julia6/src/gf.c:1852
jl_apply at /home/colin/Downloads/julia6/src/julia.h:1376 [inlined]
jl_module_run_initializer at /home/colin/Downloads/julia6/src/toplevel.c:83
_julia_init at /home/colin/Downloads/julia6/src/init.c:702
julia_init at /home/colin/Downloads/julia6/src/task.c:289
unknown function (ip: 0x4014cd)
__libc_start_main at /lib64/libc.so.6 (unknown line)
unknown function (ip: 0x40151f)
"><pre class="notranslate"><code class="notranslate">> julia6
fatal: error thrown and no exception handler available.
Base.InitError(mod=:LibGit2, error=ErrorException("error initializing LibGit2 module"))
rec_backtrace at /home/colin/Downloads/julia6/src/stackwalk.c:84
record_backtrace at /home/colin/Downloads/julia6/src/task.c:238
jl_throw at /home/colin/Downloads/julia6/src/task.c:560
__init__ at ./libgit2/libgit2.jl:539
unknown function (ip: 0x7f60d03e3e08)
jl_call_method_internal at /home/colin/Downloads/julia6/src/julia_internal.h:218 [inlined]
jl_apply_generic at /home/colin/Downloads/julia6/src/gf.c:1852
jl_apply at /home/colin/Downloads/julia6/src/julia.h:1376 [inlined]
jl_module_run_initializer at /home/colin/Downloads/julia6/src/toplevel.c:83
_julia_init at /home/colin/Downloads/julia6/src/init.c:702
julia_init at /home/colin/Downloads/julia6/src/task.c:289
unknown function (ip: 0x4014cd)
__libc_start_main at /lib64/libc.so.6 (unknown line)
unknown function (ip: 0x40151f)
</code></pre></div>
<p dir="auto">Prebuilt Julia 0.5 works fine.</p> | 1 |
<p dir="auto">I've been using Druid to ingest data from Kafka. The messages in Kafka are thrift-serialized versions of custom records. In order to parse these serialized messages, I've written a custom Druid extension, which extends the ByteBufferInputRowParser class in Druid.</p>
<p dir="auto">This has been working fine. However, one issue I've encountered is that the parse(T input) method of ByteBufferInputRowParser lets me convert one input to only on Druid row. I</p>
<p dir="auto"><strong>Question:</strong><br>
Is there a way for me to map a given input into multiple InputRow objects? Each of my Kafka messages has a list of items and I need to store each item as a separate Druid row.</p> | <p dir="auto">It would benefit some users if kafka-indexing service supported the capability to let users put multiple druid InputRow inside single kafka record.<br>
This allows users to do batching while still using kafka sync producer which allows only one kafka record at a time.</p>
<p dir="auto">I would imagine adding following method to <code class="notranslate">InputRowParser</code> interface.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" default List<InputRow> parseBatch(T input)
{
return ImmutableList.of(parse(input));
}"><pre class="notranslate"><code class="notranslate"> default List<InputRow> parseBatch(T input)
{
return ImmutableList.of(parse(input));
}
</code></pre></div>
<p dir="auto">current <code class="notranslate">InputRow parse(T input)</code> method would be deprecated and all of druid code would be adjusted to use <code class="notranslate">parseBatch(input)</code> instead.</p>
<p dir="auto">kafka-indexing service will need to persist <offset,row-number-in-record> pair instead of just offset to support exactly once. I believe, this will end up being the biggest change really.</p>
<p dir="auto">This approach would add batching support in general and not just for kafka-indexing .</p> | 1 |
<p dir="auto">In the es6 spec, various DataView functions have an <em>optional</em> littleEndian argument: <a href="http://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getuint32" rel="nofollow">http://www.ecma-international.org/ecma-262/6.0/#sec-dataview.prototype.getuint32</a>, however the es6 typings included with typescript have these arguments as mandatory: <a href="https://github.com/Microsoft/TypeScript/blob/master/bin/lib.es6.d.ts#L2046">https://github.com/Microsoft/TypeScript/blob/master/bin/lib.es6.d.ts#L2046</a></p>
<p dir="auto">This causes problems when trying to compile code where the littleEndian argument is not specified.</p> | <p dir="auto">Hi there,</p>
<p dir="auto">I upgraded recently to TypeScript 1.5 and I got complains from the compiler because the methods "getInt32", "getFloat32", etc... which take "byteOffset" and "littleEndian" as parameters, have the latest one, "littleEndian", mantadatory. I went throw the documentation about these methods and this parameter, "littleEndian", should be optional.</p>
<p dir="auto">Is this a mistake?</p>
<p dir="auto">Thanks,<br>
Fran</p> | 1 |
<p dir="auto">If you toggle a pop-over from an element, and resize the browser window, the popover is no longer at the side of the element you requested. Is this the desired/ expected default behaviour?</p> | <p dir="auto">Chrome for Mac. Taken from the docs.</p>
<p dir="auto">Open the popovers. Resize. Boom.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/5f33627dbe6e5c824fa49762f54ecfab403442cbd35042878c0021f4c5482e9e/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733313734332f3936333632322f39313365353636632d303530362d313165332d396262392d6236653464653935626239392e706e67"><img src="https://camo.githubusercontent.com/5f33627dbe6e5c824fa49762f54ecfab403442cbd35042878c0021f4c5482e9e/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3733313734332f3936333632322f39313365353636632d303530362d313165332d396262392d6236653464653935626239392e706e67" alt="screen shot 2013-08-14 at 18 25 04" data-canonical-src="https://f.cloud.github.com/assets/731743/963622/913e566c-0506-11e3-9bb9-b6e4de95bb99.png" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Looping through and reading 50k Nodes & their properties using the Java API leaks badly when read-_only mode is set on the source.</p>
<p dir="auto">Below is my code (apologies for being ugly - I've been trying to find this for hours). Un-comment the ".setConfig( GraphDatabaseSettings.read_only, "true" )" to watch it leak. Eclipse MAT had 400k NeoStoreTransactions occupying 1.1GB.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
public class Main {
static GraphDatabaseService graphSrc ;
static BatchInserter graphDest ;
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook( new Thread() {
@Override
public void run() {
if (graphDest!=null)
graphDest.shutdown();
if (graphSrc!=null)
graphSrc.shutdown();
}
});
String src = args[0] ;
graphSrc = new GraphDatabaseFactory()
.newEmbeddedDatabaseBuilder( src )
.loadPropertiesFromFile("neo4j.properties" )
// .setConfig( GraphDatabaseSettings.read_only, "true" )
// .setConfig( GraphDatabaseSettings.cache_type, "none" )
.newGraphDatabase();
//graphDest = BatchInserters.inserter(src+".copy");
copyNodes() ;
}
static final Label[] labels = new Label[0] ;
static List<Label> alLabels = new ArrayList<Label>() ;
static Label[] labels(Node n) {
alLabels.clear();
for (Label x:n.getLabels()) {
alLabels.add(x) ;
}
return alLabels.toArray(labels) ;
}
static Map<String,Object> getProps(PropertyContainer src) {
HashMap<String,Object> props = new HashMap<String,Object>() ;
try (Transaction txInner = graphSrc.beginTx()) {
for (String key:src.getPropertyKeys()) {
props.put(key, src.getProperty(key));
}
txInner.success();
txInner.close();
}
return props ;
}
static void copyNodes() {
int nodes = 0 ;
ArrayList<Long> ids = new ArrayList<Long>() ;
Iterable<Node> srcNodes ;
try (Transaction tx = graphSrc.beginTx()) {
srcNodes = GlobalGraphOperations.at(graphSrc).getAllNodes() ;
for (Node src:srcNodes) {
Map<String,Object> props = getProps(src) ;
//graphDest.createNode(src.getId(), props, labels(src));
ids.add(src.getId()) ;
if ((nodes%1000)==0) {
System.out.print("\r"+nodes+" nodes copied. "+Runtime.getRuntime().freeMemory());
System.gc() ;
}
nodes += 1 ;
}
tx.success();
tx.close();
}
}
}
"><pre class="notranslate"><code class="notranslate">
public class Main {
static GraphDatabaseService graphSrc ;
static BatchInserter graphDest ;
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook( new Thread() {
@Override
public void run() {
if (graphDest!=null)
graphDest.shutdown();
if (graphSrc!=null)
graphSrc.shutdown();
}
});
String src = args[0] ;
graphSrc = new GraphDatabaseFactory()
.newEmbeddedDatabaseBuilder( src )
.loadPropertiesFromFile("neo4j.properties" )
// .setConfig( GraphDatabaseSettings.read_only, "true" )
// .setConfig( GraphDatabaseSettings.cache_type, "none" )
.newGraphDatabase();
//graphDest = BatchInserters.inserter(src+".copy");
copyNodes() ;
}
static final Label[] labels = new Label[0] ;
static List<Label> alLabels = new ArrayList<Label>() ;
static Label[] labels(Node n) {
alLabels.clear();
for (Label x:n.getLabels()) {
alLabels.add(x) ;
}
return alLabels.toArray(labels) ;
}
static Map<String,Object> getProps(PropertyContainer src) {
HashMap<String,Object> props = new HashMap<String,Object>() ;
try (Transaction txInner = graphSrc.beginTx()) {
for (String key:src.getPropertyKeys()) {
props.put(key, src.getProperty(key));
}
txInner.success();
txInner.close();
}
return props ;
}
static void copyNodes() {
int nodes = 0 ;
ArrayList<Long> ids = new ArrayList<Long>() ;
Iterable<Node> srcNodes ;
try (Transaction tx = graphSrc.beginTx()) {
srcNodes = GlobalGraphOperations.at(graphSrc).getAllNodes() ;
for (Node src:srcNodes) {
Map<String,Object> props = getProps(src) ;
//graphDest.createNode(src.getId(), props, labels(src));
ids.add(src.getId()) ;
if ((nodes%1000)==0) {
System.out.print("\r"+nodes+" nodes copied. "+Runtime.getRuntime().freeMemory());
System.gc() ;
}
nodes += 1 ;
}
tx.success();
tx.close();
}
}
}
</code></pre></div>
<p dir="auto">Output with read_only = false ;</p>
<p dir="auto">0 nodes copied. 953752000<br>
1000 nodes copied. 987284312<br>
2000 nodes copied. 1002276640<br>
3000 nodes copied. 1012237096<br>
4000 nodes copied. 1011354664<br>
5000 nodes copied. 1010389912<br>
6000 nodes copied. 1009443688</p>
<p dir="auto">Output with read_only = true ;</p>
<p dir="auto">0 nodes copied. 975316912<br>
1000 nodes copied. 903150600<br>
2000 nodes copied. 861072744<br>
3000 nodes copied. 818662472<br>
4000 nodes copied. 767496136<br>
5000 nodes copied. 715829648<br>
6000 nodes copied. 667054608</p> | <p dir="auto">I'm running the neo4j rest server on small ARM systems, as described here:<br>
<a href="https://github.com/cjdaly/napkin/wiki/Server-on-BeagleBone-black">https://github.com/cjdaly/napkin/wiki/Server-on-BeagleBone-black</a></p>
<p dir="auto">I recently moved from 1.9.x to 2.0M6. Initially I just got things to work by updating my cypher usage to stop using the old ? and ! syntax. Was able to run like this for several days with no issues. Then I added an index like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CREATE INDEX ON :NAPKIN(`napkin.segment`)"><pre class="notranslate"><code class="notranslate">CREATE INDEX ON :NAPKIN(`napkin.segment`)
</code></pre></div>
<p dir="auto">and reworked my cypher to use the :NAPKIN label. With this change, neo4j becomes unstable in less than a day.</p>
<p dir="auto">I'm using values in neo4j-wrapper.conf that correspond to -Xmx96m -Xms96m. The neo4j linux process seems to consume increasing (VmPeak) memory over time.</p>
<p dir="auto">I have more details and a link to the Neo4j log with exception stacks here: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="21805679" data-permission-text="Title is private" data-url="https://github.com/cjdaly/napkin/issues/2" data-hovercard-type="issue" data-hovercard-url="/cjdaly/napkin/issues/2/hovercard" href="https://github.com/cjdaly/napkin/issues/2">cjdaly/napkin#2</a></p> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.5+ (master)</li>
<li>Operating System / Platform => Mac Catalina (10.15.6)</li>
<li>Compiler => Cmake 3.19, build_framework.py</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">OpenCV iOS framework built with Xcode12.1 <strong>(swift5.3)</strong> is not working on Xcode12.2 <strong>(swift5.3.1)</strong><br>
Error message is below.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Failed to build module 'OpenCV' from its module interface; the compiler that produced it, 'Apple Swift version 5.3 (swiftlang-1200.0.29.2 clang-1200.0.30.1)', may have used features that aren't supported by this compiler, 'Apple Swift version 5.3.1 (swiftlang-1200.0.41 clang-1200.0.32.8)'"><pre class="notranslate"><code class="notranslate">Failed to build module 'OpenCV' from its module interface; the compiler that produced it, 'Apple Swift version 5.3 (swiftlang-1200.0.29.2 clang-1200.0.30.1)', may have used features that aren't supported by this compiler, 'Apple Swift version 5.3.1 (swiftlang-1200.0.41 clang-1200.0.32.8)'
</code></pre></div>
<p dir="auto">I think this <a href="https://github.com/opencv/opencv/pull/18637" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv/pull/18637/hovercard">PR</a> was supposed to deal with this problem.</p>
<h5 dir="auto">Steps to reproduce</h5>
<ol dir="auto">
<li>Build opencv framework with Xcode12.1</li>
<li>Use the built framework in with Xcode12.2</li>
</ol>
<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
</li>
</ul> | <p dir="auto">The binary release for iOS is not built for distribution, this causes the new Swift compile (5.3) from XCode 12 unable to import the released binary (which was compiled with Swift 5.1.2)</p>
<p dir="auto">To fix it please refer to the following StackOverflow question.</p>
<p dir="auto"><a href="https://stackoverflow.com/questions/58654714/module-compiled-with-swift-5-1-cannot-be-imported-by-the-swift-5-1-2-compiler/58656323#58656323" rel="nofollow">https://stackoverflow.com/questions/58654714/module-compiled-with-swift-5-1-cannot-be-imported-by-the-swift-5-1-2-compiler/58656323#58656323</a></p> | 1 |
<pre class="notranslate">What steps will reproduce the problem?
Make a package foo. Make a test in foo that imports a package bar. Add a compile error
to bar.
In your editor, make your build step:
go test -i -c foo
When this works, you know that your test is ready to run.
What is the expected output?
+ go test -i -c foo
# bar
src/bar/bar.go:3: undefined: net
What do you see instead?
+ go test -i -c foo
# bar
src/bar/bar.go:3: undefined: net
warning: building out-of-date packages:
bar
installing these packages with 'go test -i foo' will speed future tests.
# bar
src/bar/bar.go:3: undefined: net
Which compiler are you using (5g, 6g, 8g, gccgo)?
6g
Which operating system are you using?
linux
Which version are you using? (run 'go version')
go version devel +02e5cb24c95a Tue May 28 17:59:10 2013 -0700 linux/amd64
Please provide any additional information below.
Related to <a href="https://golang.org/issue/3104" rel="nofollow">issue #3104</a> maybe.</pre> | <p dir="auto">by <strong>rounin.urashima</strong>:</p>
<pre class="notranslate">What steps will reproduce the problem?
1. hg clone -u release <a href="https://code.google.com/p/go" rel="nofollow">https://code.google.com/p/go</a>
2. cd go/src
3. ./all.bash This gave an issue which I have logged as <a href="https://golang.org/issue/6952" rel="nofollow">issue #6952</a>
4. hg pull
5. hg update
6. hg update tip
7. time ./all.bash
What is the expected output?
ALL TESTS PASSED
---
What do you see instead?
rounin@LKG:~/go/src$ time ./all.bash
# Building C bootstrap tool.
cmd/dist
# Building compilers and Go bootstrap tool for host, linux/arm.
lib9
libbio
libmach
liblink
misc/pprof
cmd/addr2line
cmd/nm
cmd/objdump
cmd/pack
cmd/prof
cmd/cc
cmd/gc
cmd/5l
.
.
.
pkg/go/token
pkg/go/scanner
pkg/go/ast
pkg/go/parser
pkg/os/exec
pkg/os/signal
pkg/net/url
pkg/text/template/parse
pkg/text/template
pkg/go/doc
pkg/go/build
cmd/go
./make.bash: line 151: 5646 Illegal instruction "$GOTOOLDIR"/go_bootstrap
clean -i std
real 161m16.413s
user 48m2.840s
sys 10m21.530s
rounin@LKG80B859:~/go/src$
Which compiler are you using (5g, 6g, 8g, gccgo)?
Which operating system are you using?
Debian
Which version are you using? (run 'go version')
go not built on system
hg identify
24bc2c8febe3 tip
Please provide any additional information below.
This is a Debian Linux system running on an LINKSYS NSLU2 ARM device
Linux LKG 3.2.0-4-ixp4xx #1 Debian 3.2.41-2 armv5tel GNU/Linux
more /etc/issue
Debian GNU/Linux 7.0 \n \l</pre> | 0 |
<p dir="auto">When writing a JS string like, <code class="notranslate">"foo\</code><br>
<code class="notranslate">bar"</code><br>
VS Code will only highlight the first line.<br>
This only seems to happen in the latest version, 0.10.5<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1965320/11910479/61aa63e8-a5ac-11e5-9d36-887197a70c00.png"><img src="https://cloud.githubusercontent.com/assets/1965320/11910479/61aa63e8-a5ac-11e5-9d36-887197a70c00.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto"><em>From @KevinSCreative on December 30, 2015 18:13</em></p>
<p dir="auto">After the first line, multi-line strings in JavaScript don't get string color. In the following example, only "Hello World" has the string color, and the obj variable declaration is all one color. In the default theme, 'var' is supposed to be blue. I would also expect the rest of the string to be orange in the default theme, not just the first line.</p>
<p dir="auto">I am running VSC 0.10.6 and I have no extensions installed.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var test = 'Hello World!\
<div>\
<p>Testing</p>\
</div>\
';
var obj = $(test);
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">test</span> <span class="pl-c1">=</span> <span class="pl-s">'Hello World!\</span>
<span class="pl-s"><div>\</span>
<span class="pl-s"><p>Testing</p>\</span>
<span class="pl-s"></div>\</span>
<span class="pl-s"> '</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">obj</span> <span class="pl-c1">=</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s1">test</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="124381843" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/1716" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/1716/hovercard" href="https://github.com/microsoft/vscode/issues/1716">microsoft/vscode#1716</a></em></p> | 1 |
<p dir="auto">Hi, I'm using the experimental-allure-playwright reporter, I can change the location of the "allure-report" folder by command line. However, it seems like the "allure-results" folder is always saved in the main project directory ora by setting it like an environmnet variable before launching the playwright script. Since I'm running the playwright runner programmatically, what if I wanted to programmatically set that path or by the playwright.config field? Is there a way to do that? Thank you!</p> | <p dir="auto">Hi, I'm using allure reporter with playwright, I can change the location of the "allure-results" folder. However, it seems like the "allure-report" folder is always saved in the main project directory and not in the folder I'd like to (the allure-result one). Is there a way to set it as well? Thank you!</p> | 1 |
<p dir="auto">A clear and concise description of what the bug is.<br>
Can not connect to dremio via sqlalchemy_dremio</p>
<h3 dir="auto">Expected results</h3>
<p dir="auto">what you expected to happen.<br>
Success connection</p>
<h3 dir="auto">Actual results</h3>
<p dir="auto">Error</p>
<p dir="auto">what actually happens.</p>
<h4 dir="auto">Screenshots</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/22811935/79972935-e5127200-84c0-11ea-8fcd-4d2a11ef74a9.png"><img src="https://user-images.githubusercontent.com/22811935/79972935-e5127200-84c0-11ea-8fcd-4d2a11ef74a9.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">If applicable, add screenshots to help explain your problem.</p>
<h4 dir="auto">How to reproduce the bug</h4>
<ol dir="auto">
<li>Go to '...'</li>
<li>Click on '....'</li>
<li>Scroll down to '....'</li>
<li>See error</li>
</ol>
<h3 dir="auto">Environment</h3>
<p dir="auto">(please complete the following information):</p>
<ul dir="auto">
<li>superset version: <code class="notranslate">0.36.0</code></li>
<li>python version: <code class="notranslate">python --version</code></li>
<li>node.js version: <code class="notranslate">node -v</code></li>
<li>npm version: <code class="notranslate">npm -v</code></li>
</ul>
<h3 dir="auto">Checklist</h3>
<p dir="auto">Make sure these boxes are checked before submitting your issue - thank you!</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the superset logs for python stacktraces and included it here as text if there are any.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have reproduced the issue with at least the latest released version of superset.</li>
<li>[x ] I have checked the issue tracker for the same issue and I haven't found one similar.</li>
</ul>
<h3 dir="auto">Additional context</h3>
<p dir="auto">Add any other context about the problem here.</p>
<p dir="auto">We used dremio+pyodbc://admin:<a href="mailto:[email protected]">[email protected]</a>:31010/k8s-postgres-operator-airflow</p> | <p dir="auto"><a href="https://github.com/apache/superset/files/6823868/Test.Excel.xlsx">Test Excel.xlsx</a><br>
<a href="https://github.com/apache/superset/files/6823869/Test.Data.csv">Test Data.csv</a></p>
<p dir="auto">Hi Team,</p>
<p dir="auto">I am very new to Apache superset and trying to learn basic functionality which critical to learn for upcoming opportunity in my project but I am getting below error while using CSV or Excel using a datasource and getting below error :</p>
<p dir="auto">Error :</p>
<p dir="auto">{"errors": [{"message": "can only concatenate str (not "list") to str", "error_type": "GENERIC_BACKEND_ERROR", "level": "error", "extra": {"issue_codes": [{"code": 1011, "message": "Issue 1011 - Superset encountered an unexpected error."}]}}]}</p>
<p dir="auto">Also I am getting this ERROR when I select "Upload a CSV option": Failed to fetch schemas allowed for csv upload in this database! Please contact your Superset Admin!</p>
<p dir="auto"><strong>Fix I tried :</strong> Superset has its own DB name "examples" which is postgresql and I enabled CSV upload from there. Also its not even uploading very clean excel with just 5 to 6 records. I have attached sample csv and excel file for reference.</p>
<p dir="auto">I have installed Apache Superset on my MAC using below steps :</p>
<p dir="auto">1.Mac OSX</p>
<p dir="auto">Install Docker for Mac, which includes the Docker engine and a recent version of docker-compose out of the box.</p>
<p dir="auto">Once you have Docker for Mac installed, open up the preferences pane for Docker, go to the "Resources" section and increase the allocated memory to 6GB. With only the 2GB of RAM allocated by default, Superset will fail to start.</p>
<ol start="2" dir="auto">
<li>I2. Clone Superset's Github repository(Using GitHub)</li>
</ol>
<p dir="auto">Clone Superset's repo in your terminal with the following command:</p>
<p dir="auto">$ git clone <a href="https://github.com/apache/superset.git">https://github.com/apache/superset.git</a><br>
Once that command completes successfully, you should see a new superset folder in your current directory.</p>
<p dir="auto">Any quick help will be highly appreciated!!!!</p>
<p dir="auto">Warm Regards,<br>
Gary<br>
email id : <a href="mailto:[email protected]">[email protected]</a></p> | 0 |
<p dir="auto">Not a major bug, but can be confusing.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">Open <a href="https://codelabs.developers.google.com/codelabs/flutter/#4" rel="nofollow">https://codelabs.developers.google.com/codelabs/flutter/#4</a><br>
Scroll down until you see two code listings. The first one starts with the comment:<br>
<code class="notranslate">// Modify the ChatScreen class definition to extend StatefulWidget.</code><br>
The second one starts with the comment:<br>
<code class="notranslate">// Add the ChatScreenState class definition in main.dart.</code></p>
<p dir="auto">The confusing part is that, other than two comments, these code listings are exactly the same.</p> | <p dir="auto">From an email: "Trying to create an emulator with Android Studio. Your instructions say to use Tools > Android > AVD Manager. But, there is no Android sub-menu in the Tools menu. (Actually, the only way I could get a Tools menu was by creating a vestigial Android project.) The Tools sub-menu items are, 1) Tasks & Contexts, 2) New Scratch File..., 3) IDE Scripting Console and 4) Create Command-line Launcher...."</p>
<p dir="auto">(I haven't confirmed this yet, but wanted to track it)</p> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV: 3.4.5</li>
<li>Operating System / Platform: Ubuntu 16.04</li>
<li>Compiler: GCC/G++ & CMake</li>
<li>Cuda: 9.2</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">According to the Official sample by <a href="https://github.com/opencv/opencv/blob/master/samples/gpu/video_reader.cpp">#video_reader.cpp</a>, I have been tried to run this example with the version range OpenCV 3.4.5 to 4.0.1, but all of the version seem not to be work perfectly. I am using AWS EC2 instance which provided Tesla K80 GPU with CUDA 9.2/9.1 support. I don't know whatever this problem is bugging by OpenCV or AWS EC2 Instance, but I have researched any related issues like <a href="https://github.com/opencv/opencv/issues/6231" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv/issues/6231/hovercard">#6231</a> also not yet fixed.</p>
<p dir="auto">Since this <a href="https://github.com/opencv/opencv/blob/master/samples/gpu/video_reader.cpp">#sample</a> are demonstrate CPU and CUDA methods, the CPU method is working perfectly (I just change the "cv::imshow("CPU", frame)" to "cv::imwrite(name, frame)"), but not CUDA.</p>
<p dir="auto">Also, I can confirm the CUDA and NVCUVID are enabled with CMake. Sorry for my stupid question.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">OpenCV Build Information:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="-- Video I/O:
-- DC1394: YES (ver 2.2.4)
-- FFMPEG: YES
-- avcodec: YES (ver 56.60.100)
-- avformat: YES (ver 56.40.101)
-- avutil: YES (ver 54.31.100)
-- swscale: YES (ver 3.1.101)
-- avresample: YES (ver 2.1.0)
-- GStreamer:
-- base: YES (ver 1.8.3)
-- video: YES (ver 1.8.3)
-- app: YES (ver 1.8.3)
-- riff: YES (ver 1.8.3)
-- pbutils: YES (ver 1.8.3)
-- libv4l/libv4l2: 1.10.0 / 1.10.0
-- v4l/v4l2: linux/videodev2.h
--
-- Parallel framework: pthreads
--
-- Trace: YES (with Intel ITT)
--
-- Other third-party libraries:
-- Intel IPP: 2019.0.0 Gold [2019.0.0]
-- at: /home/ubuntu/opencv/opencv-3.4.5/release/3rdparty/ippicv/ippicv_lnx/icv
-- Intel IPP IW: sources (2019.0.0)
-- at: /home/ubuntu/opencv/opencv-3.4.5/release/3rdparty/ippicv/ippicv_lnx/iw
-- Eigen: NO
-- Custom HAL: NO
-- Protobuf: build (3.5.1)
--
-- NVIDIA CUDA: YES (ver 9.0, CUFFT CUBLAS NVCUVID FAST_MATH)
-- NVIDIA GPU arch: 30 35 37 50 52 60 61 70
-- NVIDIA PTX archs:
--
-- OpenCL: YES (no extra features)
-- Include path: /home/ubuntu/opencv/opencv-3.4.5/3rdparty/include/opencl/1.2
-- Link libraries: Dynamic load
--
-- Python 3:
-- Interpreter: /usr/bin/python3 (ver 3.5.2)
-- Libraries: /usr/lib/x86_64-linux-gnu/libpython3.5m.so (ver 3.5.2)
-- numpy: /usr/local/lib/python3.5/dist-packages/numpy/core/include (ver 1.15.4)
-- install path: /usr/lib/python3/dist-packages/cv2/python-3.5
--
-- Python (for build): /usr/bin/python2.7"><pre class="notranslate"><code class="notranslate">-- Video I/O:
-- DC1394: YES (ver 2.2.4)
-- FFMPEG: YES
-- avcodec: YES (ver 56.60.100)
-- avformat: YES (ver 56.40.101)
-- avutil: YES (ver 54.31.100)
-- swscale: YES (ver 3.1.101)
-- avresample: YES (ver 2.1.0)
-- GStreamer:
-- base: YES (ver 1.8.3)
-- video: YES (ver 1.8.3)
-- app: YES (ver 1.8.3)
-- riff: YES (ver 1.8.3)
-- pbutils: YES (ver 1.8.3)
-- libv4l/libv4l2: 1.10.0 / 1.10.0
-- v4l/v4l2: linux/videodev2.h
--
-- Parallel framework: pthreads
--
-- Trace: YES (with Intel ITT)
--
-- Other third-party libraries:
-- Intel IPP: 2019.0.0 Gold [2019.0.0]
-- at: /home/ubuntu/opencv/opencv-3.4.5/release/3rdparty/ippicv/ippicv_lnx/icv
-- Intel IPP IW: sources (2019.0.0)
-- at: /home/ubuntu/opencv/opencv-3.4.5/release/3rdparty/ippicv/ippicv_lnx/iw
-- Eigen: NO
-- Custom HAL: NO
-- Protobuf: build (3.5.1)
--
-- NVIDIA CUDA: YES (ver 9.0, CUFFT CUBLAS NVCUVID FAST_MATH)
-- NVIDIA GPU arch: 30 35 37 50 52 60 61 70
-- NVIDIA PTX archs:
--
-- OpenCL: YES (no extra features)
-- Include path: /home/ubuntu/opencv/opencv-3.4.5/3rdparty/include/opencl/1.2
-- Link libraries: Dynamic load
--
-- Python 3:
-- Interpreter: /usr/bin/python3 (ver 3.5.2)
-- Libraries: /usr/lib/x86_64-linux-gnu/libpython3.5m.so (ver 3.5.2)
-- numpy: /usr/local/lib/python3.5/dist-packages/numpy/core/include (ver 1.15.4)
-- install path: /usr/lib/python3/dist-packages/cv2/python-3.5
--
-- Python (for build): /usr/bin/python2.7
</code></pre></div>
<p dir="auto">Trigger problem:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cv::Mat frame;
cv::VideoCapture reader(fname);
cv::cuda::GpuMat d_frame;
cv::Ptr<cv::cudacodec::VideoReader> d_reader = cv::cudacodec::createVideoReader(fname);
.........................................................................
for (;;)
{
tm.reset(); tm.start();
if (!reader.read(frame))
break;
tm.stop();
cpu_times.push_back(tm.getTimeMilli());
cpu_frame_count++;
const std::string name("./test.jpg");
cv::imwrite(name, frame);
if (cv::waitKey(3) > 0)
break;
}
for (;;) {
tm.reset(); tm.start();
if (!d_reader->nextFrame(d_frame))
break;
tm.stop();
gpu_times.push_back(tm.getTimeMilli());
gpu_frame_count++;
const std::string name("./test_cuda.jpg");
cv::imwrite(name, d_frame); // This line trigger the getMat_ problem.
if (cv::waitKey(3) >= 0)
break;
}"><pre class="notranslate"><code class="notranslate">cv::Mat frame;
cv::VideoCapture reader(fname);
cv::cuda::GpuMat d_frame;
cv::Ptr<cv::cudacodec::VideoReader> d_reader = cv::cudacodec::createVideoReader(fname);
.........................................................................
for (;;)
{
tm.reset(); tm.start();
if (!reader.read(frame))
break;
tm.stop();
cpu_times.push_back(tm.getTimeMilli());
cpu_frame_count++;
const std::string name("./test.jpg");
cv::imwrite(name, frame);
if (cv::waitKey(3) > 0)
break;
}
for (;;) {
tm.reset(); tm.start();
if (!d_reader->nextFrame(d_frame))
break;
tm.stop();
gpu_times.push_back(tm.getTimeMilli());
gpu_frame_count++;
const std::string name("./test_cuda.jpg");
cv::imwrite(name, d_frame); // This line trigger the getMat_ problem.
if (cv::waitKey(3) >= 0)
break;
}
</code></pre></div>
<p dir="auto">Error log:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="terminate called after throwing an instance of 'cv::Exception'
what(): OpenCV(3.4.5) /home/ubuntu/opencv/opencv-3.4.5/modules/core/src/matrix_wrap.cpp:118: error: (-213:The function/feature is not implemented) You should explicitly call download method for cuda::GpuMat object in function 'getMat_'
Aborted (core dumped)"><pre class="notranslate"><code class="notranslate">terminate called after throwing an instance of 'cv::Exception'
what(): OpenCV(3.4.5) /home/ubuntu/opencv/opencv-3.4.5/modules/core/src/matrix_wrap.cpp:118: error: (-213:The function/feature is not implemented) You should explicitly call download method for cuda::GpuMat object in function 'getMat_'
Aborted (core dumped)
</code></pre></div> | <p dir="auto">Transferred from <a href="http://code.opencv.org/issues/3571" rel="nofollow">http://code.opencv.org/issues/3571</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="|| Goncalo Lopes on 2014-02-25 13:52
|| Priority: Normal
|| Affected: None
|| Category: build/install
|| Tracker: Feature
|| Difficulty:
|| PR:
|| Platform: None / None"><pre class="notranslate"><code class="notranslate">|| Goncalo Lopes on 2014-02-25 13:52
|| Priority: Normal
|| Affected: None
|| Category: build/install
|| Tracker: Feature
|| Difficulty:
|| PR:
|| Platform: None / None
</code></pre></div>
<h2 dir="auto">Automatically generate C interface to replace legacy API</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="OpenCV now provides automatically generated wrappers for a number of languages: Python, Java, Matlab. However, there are many other environments that benefit from interfacing with OpenCV.
Up to now, an easy solution to interoperate with OpenCV was to use the C API. The reason for this is that C still has a more standard ABI than C++ from a cross-platform point of view and many more languages support interoping with C than they do with C++.
Now that the C interface to OpenCV will be deprecated, this option will no longer be available. However, it seems that it would not be so hard to automatically generate a new C interface from C++ headers in exactly the same way as other wrappers are generated. This would provide a standard native C interface that other environments could easily interop with and would be automatically kept up to date with latest C++ features."><pre class="notranslate"><code class="notranslate">OpenCV now provides automatically generated wrappers for a number of languages: Python, Java, Matlab. However, there are many other environments that benefit from interfacing with OpenCV.
Up to now, an easy solution to interoperate with OpenCV was to use the C API. The reason for this is that C still has a more standard ABI than C++ from a cross-platform point of view and many more languages support interoping with C than they do with C++.
Now that the C interface to OpenCV will be deprecated, this option will no longer be available. However, it seems that it would not be so hard to automatically generate a new C interface from C++ headers in exactly the same way as other wrappers are generated. This would provide a standard native C interface that other environments could easily interop with and would be automatically kept up to date with latest C++ features.
</code></pre></div>
<h2 dir="auto">History</h2>
<h5 dir="auto">Dinar Ahmatnurov on 2014-03-04 10:49</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Roman, what do you think?
- Assignee set to Roman Donchenko
- Category set to build/install"><pre class="notranslate"><code class="notranslate">Roman, what do you think?
- Assignee set to Roman Donchenko
- Category set to build/install
</code></pre></div>
<h5 dir="auto">Dinar Ahmatnurov on 2014-03-05 17:23</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- Status changed from New to Open"><pre class="notranslate"><code class="notranslate">- Status changed from New to Open
</code></pre></div>
<h5 dir="auto">Alexander Duda on 2014-11-03 23:14</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="I am not sure if this is very helpful because an automated generated C API would be very cumbersome to use. Think of all the constructors, deconstructors, overloaded methods, templates etc. Nevertheless, I believe this C-Layer would be very beneficial for additional language bindings (have a look at https://github.com/Itseez/opencv_contrib/pull/116)."><pre class="notranslate"><code class="notranslate">I am not sure if this is very helpful because an automated generated C API would be very cumbersome to use. Think of all the constructors, deconstructors, overloaded methods, templates etc. Nevertheless, I believe this C-Layer would be very beneficial for additional language bindings (have a look at https://github.com/Itseez/opencv_contrib/pull/116).
</code></pre></div>
<h5 dir="auto">Goncalo Lopes on 2015-03-06 17:52</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="As you point out with the Ruby bindings example, most language bindings already have to generate this intermediate C interface anyway. Why not simply make it standard so that people can avoid duplicating this step over and over again (with possible errors cropping up?).
It's true that C can be extremely cumbersome, but often its the only way to make interop possible at all...
(Ruby, D, many others... as stated in http://queue.acm.org/detail.cfm?id=2543971 - "The industry has spent the past 30 years building CPUs optimized for running languages such as C, because people who needed fast code used C (because people who designed processors optimized them for C, because...")"><pre class="notranslate"><code class="notranslate">As you point out with the Ruby bindings example, most language bindings already have to generate this intermediate C interface anyway. Why not simply make it standard so that people can avoid duplicating this step over and over again (with possible errors cropping up?).
It's true that C can be extremely cumbersome, but often its the only way to make interop possible at all...
(Ruby, D, many others... as stated in http://queue.acm.org/detail.cfm?id=2543971 - "The industry has spent the past 30 years building CPUs optimized for running languages such as C, because people who needed fast code used C (because people who designed processors optimized them for C, because...")
</code></pre></div> | 0 |
<p dir="auto">This is a feature request.</p>
<p dir="auto">Let's consider a scenario where one trains multiple models and uses them in combination (like it is done in GANs).</p>
<p dir="auto">To simplify the process of saving and restoring variables that are partly shared across the models (Pretraining Model, Training Model, Evaluation Model, Infer Model) one could instantiate the whole graph, containing all operations and variables, and save it.</p>
<p dir="auto">Then in order to do pre-training only the subset of graph elements that is required for pretraining is used.</p>
<p dir="auto">This results in the overhead of having to build the whole model (which might consist of multiple sub models) the first time the model is run even though only a smaller part (e.g. Pretraining Model) is required.</p>
<p dir="auto">Another issue arises when using different optimizers in different training stages (e.g. SGD first then Adam). As Adam creates additional variables Adam has to be instantiated during the first training stage so restoring from a checkpoint does not fail when restoring with Adam instead of SGD.</p>
<p dir="auto">This restriction of having to build everything despite parts not being required results in more complicated code. If it would be possible to silently fail when a variable is not found in a checkpoint, so it can be initialized with <code class="notranslate">tf.global_variables_initializer()</code> instead, would allow better structuring of code.</p>
<p dir="auto">I have looked through all current issues regarding this problem and I have found a couple that face a similar problem and where a <code class="notranslate">QuietlyFailRestoringSaver</code> could solve this problem:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="247946712" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/12032" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/12032/hovercard" href="https://github.com/tensorflow/tensorflow/issues/12032">#12032</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="294537159" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/16781" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/16781/hovercard" href="https://github.com/tensorflow/tensorflow/issues/16781">#16781</a></p>
<p dir="auto">I might consider building this if there is enough support for it. I am open for feedback.</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</li>
<li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 18.04</li>
<li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: NA</li>
<li>TensorFlow installed from (source or binary): 1.13.1 from conda</li>
<li>TensorFlow version (use command below): 1.13.1</li>
<li>Python version: 3.7.3</li>
<li>Bazel version (if compiling from source):</li>
<li>GCC/Compiler version (if compiling from source):</li>
<li>CUDA/cuDNN version:</li>
<li>GPU model and memory:</li>
</ul>
<p dir="auto">You can collect some of this information using our environment capture <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<br>
python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</p>
<p dir="auto"><strong>Code to reproduce the issue</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import tensorflow as tf
def foo(x):
array = tf.Variable(lambda: tf.zeros(20, dtype=tf.float32),
trainable=False, use_resource=True)
ind = tf.reshape(x, [-1, 1])
val = tf.reshape(tf.cast(x, tf.float32), [-1])
array_assign = array.assign(tf.zeros_like(array))
with tf.control_dependencies([array_assign]):
array = array.scatter_nd_update(ind, tf.cast(val, dtype=tf.float32))
return array
dataset = tf.data.Dataset.range(20)
# dataset = dataset.map(foo)
# dataset = dataset.batch(5)
dataset = dataset.apply(
tf.data.experimental.map_and_batch(foo, 5, num_parallel_batches=1))
iterator = dataset.make_initializable_iterator()
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
sess.run(iterator.initializer)
next_element = iterator.get_next()
fetches = sess.run(next_element)
print(fetches)"><pre class="notranslate"><code class="notranslate">import tensorflow as tf
def foo(x):
array = tf.Variable(lambda: tf.zeros(20, dtype=tf.float32),
trainable=False, use_resource=True)
ind = tf.reshape(x, [-1, 1])
val = tf.reshape(tf.cast(x, tf.float32), [-1])
array_assign = array.assign(tf.zeros_like(array))
with tf.control_dependencies([array_assign]):
array = array.scatter_nd_update(ind, tf.cast(val, dtype=tf.float32))
return array
dataset = tf.data.Dataset.range(20)
# dataset = dataset.map(foo)
# dataset = dataset.batch(5)
dataset = dataset.apply(
tf.data.experimental.map_and_batch(foo, 5, num_parallel_batches=1))
iterator = dataset.make_initializable_iterator()
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
sess.run(iterator.initializer)
next_element = iterator.get_next()
fetches = sess.run(next_element)
print(fetches)
</code></pre></div>
<p dir="auto"><strong>Describe the current behavior</strong></p>
<p dir="auto">If using normal <code class="notranslate">map</code> and <code class="notranslate">batch</code>, one get</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[[0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 0. 2. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 0. 0. 3. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 0. 0. 0. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]]"><pre class="notranslate"><code class="notranslate">[[0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 0. 2. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 0. 0. 3. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 0. 0. 0. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]]
</code></pre></div>
<p dir="auto"><strong>Describe the expected behavior</strong></p>
<p dir="auto">If using <code class="notranslate">map_and_batch</code>, one get changing results like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[[0. 1. 2. 3. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 0. 0. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 2. 3. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 2. 3. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 0. 0. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]]"><pre class="notranslate"><code class="notranslate">[[0. 1. 2. 3. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 0. 0. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 2. 3. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 2. 3. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
[0. 1. 0. 0. 4. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]]
</code></pre></div>
<p dir="auto">There should be always only one and non-duplicate non-zeros per-line.</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">Not sure if this is related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="429263088" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/27507" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/27507/hovercard" href="https://github.com/tensorflow/tensorflow/issues/27507">#27507</a> . On a <a href="https://colab.research.google.com/drive/1DzTvOJRXYUk0CSjvGa11ewmjTP7VJ1kF" rel="nofollow">Colab with tf-nightly</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="429263088" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/27507" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/27507/hovercard" href="https://github.com/tensorflow/tensorflow/issues/27507">#27507</a> seems fixed but this issue still reproduces.</p> | 0 |
<p dir="auto">I want to run a background service that can read certain events, process and possibly record the data, and if appropriate create a notification which will launch the main app if pressed. Some examples of the events would be: new Bluetooth device in range, incoming data on a socket, incoming data from a USB device, SMS received, GPS location changed, Bluetooth device connection attempt, a certain physical button is pressed, accelerometer data exceeds a specified value, if the main app is terminated, and a lot of other things I'm not thinking of.</p>
<p dir="auto">Can someone make a comprehensive plugin (with a free or open source license) for this that works on iOS and Android? I know that iOS is more restrictive about background execution, but the plugin could include events associated with <a href="https://developer.apple.com/library/archive/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html#//apple_ref/doc/uid/TP40007072-CH4-SW23" rel="nofollow">these</a> and their Android equivalents.</p>
<p dir="auto">**edit: I'm aware of the new background execution feature. The problem is it's only for plugin developers, and requires a lot of platform specific code. I think there needs to be a higher level, platform independent plugin that is accessible to normal developers, not just plugin developers with experience in Android and iOS programming.</p>
<p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="152639518" data-permission-text="Title is private" data-url="https://github.com/flutter/flutter/issues/3671" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter/issues/3671/hovercard?comment_id=423782376&comment_type=issue_comment" href="https://github.com/flutter/flutter/issues/3671#issuecomment-423782376">#3671 (comment)</a> and the responses.**</p> | <p dir="auto">Since we have background execution of dart code now, would it be possible to receive data notifications while the app is terminated?</p> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">I've tried to install Scikits-Learn both from sources and using easy_install on a Mac OS X 10.6.8 system, however the installation seems to be broken as when I load the sklearn module in Python, the sklearn.cluster and other core modules are not available.</p>
<p dir="auto">When running the test routine, sklearn.test() the test procedure produces an exception with the output listed below, are there any particular steps to the installation on a Mac, other than the ones listes in the project's website. Thank's in advance for the support.</p>
<p dir="auto">Regards,<br>
Hugo</p>
<p dir="auto">setup numpy_pickle</p>
<hr>
<p dir="auto">.....................................Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.<strong>del</strong> of memmap(1.5e-323)> ignored<br>
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.<strong>del</strong> of memmap(1.5e-323)> ignored<br>
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.<strong>del</strong> of memmap(1.5e-323)> ignored<br>
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.6-intel.egg/sklearn/externals/joblib/test/test_numpy_pickle.py:179: Warning: file "/var/folders/bF/bFAV1CtXGqWadLXrHkrQVk+++TI/-Tmp-/tmpReSj2S/test.pkl437" appears to be a zip, ignoring mmap_mode "r" flag passed<br>
numpy_pickle.load(this_filename, mmap_mode='r')<br>
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.<strong>del</strong> of memmap(1.5e-323)> ignored<br>
....________________________________________________________________________________<br>
teardown numpy_pickle</p>
<hr>
<p dir="auto">............An unexpected error occurred while tokenizing input<br>
The following traceback may be corrupted or invalid<br>
The error message is: ('EOF in multi-line statement', (38, 0))</p>
<h1 dir="auto">.........................................................................................S.........................................................................................................................................................................................................FEFEFE............................................................................EEE...................................................................................................................................................................EE</h1>
<h2 dir="auto">ERROR: Doctest: sklearn.datasets.base.load_sample_images</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose-1.1.2-py2.7.egg/nose/plugins/doctests.py", line 395, in tearDown<br>
delattr(builtin_mod, self._result_var)<br>
AttributeError: _</p>
<h1 dir="auto"></h1>
<p dir="auto">ERROR: An unexpected error occurred while tokenizing input<br>
The following traceback may be corrupted or invalid<br>
The error message is: ('EOF in multi-line statement', (47, 0))</p> | <p dir="auto">OS - Mac OS X 10.6.8</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python -c "import sklearn; sklearn.test()"
Running unit tests and doctests for sklearn
NumPy version 1.5.1
NumPy is installed in /Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/numpy
Python version 2.7.1 |EPD 7.0-2 (32-bit)| (r271:86832, Dec 3 2010, 15:41:32) [GCC 4.0.1 (Apple Inc. build 5488)]
nose version 1.0.0
/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/cross_val.py:2: UserWarning: sklearn.cross_val namespace is deprecated in version 0.9 and will be removed in version 0.11. Please use sklearn.cross_validation instead.
warnings.warn('sklearn.cross_val namespace is deprecated in version 0.9'
/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/hmm.py:24: UserWarning: sklearn.hmm is orphaned, undocumented and has known numerical stability issues. If nobody volunteers to write documentation and make it more stable, this module will be removed in version 0.11.
warnings.warn('sklearn.hmm is orphaned, undocumented and has known numerical'
.........../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/neighbors/base.py:23: UserWarning: kneighbors: neighbor k+1 and neighbor k have the same distance: results will be dependent on data order.
warnings.warn(msg)
................................/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/cluster/spectral.py:77: UserWarning: pyamg not available, using scipy.sparse
warnings.warn('pyamg not available, using scipy.sparse')
.S...................E..SS...................................../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/decomposition/dict_learning.py:262: UserWarning: Please note: the interface of sparse_encode has changed: It now follows the dictionary learning API and it also handles parallelization. Please read the docstring for more information.
warnings.warn("Please note: the interface of sparse_encode has changed: "
.........S........................./Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/decomposition/nmf.py:237: UserWarning: Iteration limit reached in nls subproblem.
warnings.warn("Iteration limit reached in nls subproblem.")
.................../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/decomposition/sparse_pca.py:147: RuntimeWarning: invalid value encountered in divide
U /= np.sqrt((U ** 2).sum(axis=0))
.....S...../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/ensemble/forest.py:309: RuntimeWarning: divide by zero encountered in log
return np.log(self.predict_proba(X))
....................../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/externals/joblib/test/test_func_inspect.py:111: UserWarning: Cannot inspect object <functools.partial object at 0x1a8a76c0>, ignore list will not work.
nose.tools.assert_equal(filter_args(ff, ['y'], 1),
........................................................................................________________________________________________________________________________
test_memory setup
________________________________________________________________________________
________________________________________________________________________________
test_memory teardown
________________________________________________________________________________
..________________________________________________________________________________
test_memory setup
________________________________________________________________________________
.........................................................................................................................________________________________________________________________________________
test_memory teardown
________________________________________________________________________________
.________________________________________________________________________________
setup numpy_pickle
________________________________________________________________________________
.....................................Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap(2.8286046898131197e-183)> ignored
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap(2.20861708294445e-183)> ignored
/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/externals/joblib/test/test_numpy_pickle.py:179: Warning: file "/var/folders/AL/ALAqpXbxHs44xCiaqcTiZk+++TI/-Tmp-/tmpJXhrg2/test.pkl577" appears to be a zip, ignoring mmap_mode "r" flag passed
numpy_pickle.load(this_filename, mmap_mode='r')
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap(5.563520520564929e-185)> ignored
....________________________________________________________________________________
teardown numpy_pickle
________________________________________________________________________________
............An unexpected error occurred while tokenizing input
The following traceback may be corrupted or invalid
The error message is: ('EOF in multi-line statement', (39, 0))
.........................................................................................S.........................................................................................................................................................................................................FEFEFE............................................................................EEE...................................................................................................................................................................EE
======================================================================
ERROR: Doctest: sklearn.datasets.base.load_sample_images
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/nose/plugins/doctests.py", line 395, in tearDown
delattr(__builtin__, self._result_var)
AttributeError: _
======================================================================"><pre class="notranslate"><code class="notranslate">python -c "import sklearn; sklearn.test()"
Running unit tests and doctests for sklearn
NumPy version 1.5.1
NumPy is installed in /Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/numpy
Python version 2.7.1 |EPD 7.0-2 (32-bit)| (r271:86832, Dec 3 2010, 15:41:32) [GCC 4.0.1 (Apple Inc. build 5488)]
nose version 1.0.0
/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/cross_val.py:2: UserWarning: sklearn.cross_val namespace is deprecated in version 0.9 and will be removed in version 0.11. Please use sklearn.cross_validation instead.
warnings.warn('sklearn.cross_val namespace is deprecated in version 0.9'
/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/hmm.py:24: UserWarning: sklearn.hmm is orphaned, undocumented and has known numerical stability issues. If nobody volunteers to write documentation and make it more stable, this module will be removed in version 0.11.
warnings.warn('sklearn.hmm is orphaned, undocumented and has known numerical'
.........../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/neighbors/base.py:23: UserWarning: kneighbors: neighbor k+1 and neighbor k have the same distance: results will be dependent on data order.
warnings.warn(msg)
................................/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/cluster/spectral.py:77: UserWarning: pyamg not available, using scipy.sparse
warnings.warn('pyamg not available, using scipy.sparse')
.S...................E..SS...................................../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/decomposition/dict_learning.py:262: UserWarning: Please note: the interface of sparse_encode has changed: It now follows the dictionary learning API and it also handles parallelization. Please read the docstring for more information.
warnings.warn("Please note: the interface of sparse_encode has changed: "
.........S........................./Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/decomposition/nmf.py:237: UserWarning: Iteration limit reached in nls subproblem.
warnings.warn("Iteration limit reached in nls subproblem.")
.................../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/decomposition/sparse_pca.py:147: RuntimeWarning: invalid value encountered in divide
U /= np.sqrt((U ** 2).sum(axis=0))
.....S...../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/ensemble/forest.py:309: RuntimeWarning: divide by zero encountered in log
return np.log(self.predict_proba(X))
....................../Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/externals/joblib/test/test_func_inspect.py:111: UserWarning: Cannot inspect object <functools.partial object at 0x1a8a76c0>, ignore list will not work.
nose.tools.assert_equal(filter_args(ff, ['y'], 1),
........................................................................................________________________________________________________________________________
test_memory setup
________________________________________________________________________________
________________________________________________________________________________
test_memory teardown
________________________________________________________________________________
..________________________________________________________________________________
test_memory setup
________________________________________________________________________________
.........................................................................................................................________________________________________________________________________________
test_memory teardown
________________________________________________________________________________
.________________________________________________________________________________
setup numpy_pickle
________________________________________________________________________________
.....................................Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap(2.8286046898131197e-183)> ignored
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap(2.20861708294445e-183)> ignored
/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/scikit_learn-0.10-py2.7-macosx-10.5-i386.egg/sklearn/externals/joblib/test/test_numpy_pickle.py:179: Warning: file "/var/folders/AL/ALAqpXbxHs44xCiaqcTiZk+++TI/-Tmp-/tmpJXhrg2/test.pkl577" appears to be a zip, ignoring mmap_mode "r" flag passed
numpy_pickle.load(this_filename, mmap_mode='r')
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap(5.563520520564929e-185)> ignored
....________________________________________________________________________________
teardown numpy_pickle
________________________________________________________________________________
............An unexpected error occurred while tokenizing input
The following traceback may be corrupted or invalid
The error message is: ('EOF in multi-line statement', (39, 0))
.........................................................................................S.........................................................................................................................................................................................................FEFEFE............................................................................EEE...................................................................................................................................................................EE
======================================================================
ERROR: Doctest: sklearn.datasets.base.load_sample_images
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/nose/plugins/doctests.py", line 395, in tearDown
delattr(__builtin__, self._result_var)
AttributeError: _
======================================================================
</code></pre></div> | 1 |
<h1 dir="auto">Environment</h1>
<p dir="auto">Windows build number: Windows 10 1903<br>
Windows Terminal version (if applicable): 0.2.1715.0</p>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">you can only drag the window when clicking on the window title that is actually colored in Windows 10 color style ([1]marked green)<br>
click on the window title ([1]marked red) you cannot move the window</p>
<p dir="auto">![windows terminal drag window]<br>
![1]<br>
(<a href="https://user-images.githubusercontent.com/45657752/59983328-9258f700-961e-11e9-9522-357b93c911b0.png" rel="nofollow">https://user-images.githubusercontent.com/45657752/59983328-9258f700-961e-11e9-9522-357b93c911b0.png</a>)</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">I expect that left mouse click and hold on the complete window title should allow dragging of the Windows Terminal window.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The left space this is reserved ([1]marked red) for new tabs or existing tabs (black) cannot be used to move the window</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows 10.0.18362.175
Terminal version 0.2.1715.0"><pre class="notranslate"><code class="notranslate">Windows 10.0.18362.175
Terminal version 0.2.1715.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Just run the application. Happens to all instances.</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Can move the window! :)</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Every window is locked to it's starting position. Can be resized however. Not sure what else I can provide, I have a triple screen setup on a 1080Ti, configuration 1920x1920 - 3440x1400 - 1920x1920 (the square monitors are the unusual Eizo ones). I'm not running any special display tools other than the LG screen split which is set to off. Setting it on (enables window snapping to various configurations to manage the desktop) other windows start snapping when moved, except terminal which still can't be moved.</p> | 1 |
<blockquote>
<p dir="auto">ERROR: /home/fesun/.cache/bazel/_bazel_fesun/c44abb322eef8ca1d3dd1c34fcda8c3a/external/io_bazel_rules_closure/closure/private/defs.bzl:27:16: The <code class="notranslate">set</code> constructor for depsets is deprecated and will be removed. Please use the <code class="notranslate">depset</code> constructor instead. You can temporarily enable the deprecated <code class="notranslate">set</code> constructor by passing the flag --incompatible_disallow_set_constructor=false<br>
ERROR: error loading package '': Extension file 'closure/private/defs.bzl' has errors<br>
ERROR: error loading package '': Extension file 'closure/private/defs.bzl' has errors</p>
</blockquote>
<p dir="auto">I added the flag --incompatible_disallow_set_constructor=false for all bazel command call, then:</p>
<blockquote>
<p dir="auto">DEBUG: /home/fesun/.cache/bazel/_bazel_fesun/c44abb322eef8ca1d3dd1c34fcda8c3a/external/bazel_tools/tools/build_defs/pkg/pkg.bzl:197:9: @//tensorflow/tools/lib_package:libtensorflow_jni: you provided a non dictionary to the pkg_tar <code class="notranslate">files</code> attribute. This attribute was renamed to <code class="notranslate">srcs</code>. Consider renaming it in your BUILD file.<br>
DEBUG: /home/fesun/.cache/bazel/_bazel_fesun/c44abb322eef8ca1d3dd1c34fcda8c3a/external/bazel_tools/tools/build_defs/pkg/pkg.bzl:197:9: @//tensorflow/tools/lib_package:cheaders: you provided a non dictionary to the pkg_tar <code class="notranslate">files</code> attribute. This attribute was renamed to <code class="notranslate">srcs</code>. Consider renaming it in your BUILD file.<br>
DEBUG: /home/fesun/.cache/bazel/_bazel_fesun/c44abb322eef8ca1d3dd1c34fcda8c3a/external/bazel_tools/tools/build_defs/pkg/pkg.bzl:197:9: @//tensorflow/tools/lib_package:clib: you provided a non dictionary to the pkg_tar <code class="notranslate">files</code> attribute. This attribute was renamed to <code class="notranslate">srcs</code>. Consider renaming it in your BUILD file.<br>
DEBUG: /home/fesun/.cache/bazel/_bazel_fesun/c44abb322eef8ca1d3dd1c34fcda8c3a/external/bazel_tools/tools/build_defs/pkg/pkg.bzl:197:9: @//tensorflow/tools/lib_package:clicenses: you provided a non dictionary to the pkg_tar <code class="notranslate">files</code> attribute. This attribute was renamed to <code class="notranslate">srcs</code>. Consider renaming it in your BUILD file.<br>
ERROR: /home/fesun/tensorflow/tensorflow/core/kernels/BUILD:59:14: Traceback (most recent call last):<br>
File "/home/fesun/tensorflow/tensorflow/core/kernels/BUILD", line 54<br>
config_setting(name = "xsmm_backward", values = {..."})<br>
File "/home/fesun/tensorflow/tensorflow/core/kernels/BUILD", line 59, in config_setting<br>
{"define": "tensorflow_xsmm=1", "define": "tensorflow_xsmm_backward=1"}<br>
Duplicated key "define" when creating dictionary<br>
ERROR: package contains errors: tensorflow/core/kernels<br>
ERROR: error loading package 'tensorflow/core/kernels': Package 'tensorflow/core/kernels' contains errors</p>
</blockquote>
<p dir="auto">Any solution for this?</p> | <p dir="auto">This is a possible duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="144958009" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/1727" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/1727/hovercard" href="https://github.com/tensorflow/tensorflow/issues/1727">#1727</a>. Posting here as there is no way to re-open or comment on the previous bug.<br>
The comments suggests that the updating the driver would most probably fix the issue but its not the case.</p>
<p dir="auto"><strong>Environment info</strong><br>
Distributor ID: Ubuntu<br>
Description: Ubuntu 16.04.2 LTS<br>
Release: 16.04<br>
Codename: xenial</p>
<blockquote>
<p dir="auto"><code class="notranslate">python3 -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</code><br>
<code class="notranslate">v1.1.0-rc0-61-g1ec6ed5 1.1.0</code></p>
</blockquote>
<blockquote>
<p dir="auto"><code class="notranslate">nvidia-smi</code><br>
<code class="notranslate">NVIDIA-SMI 375.51 Driver Version: 375.51</code></p>
</blockquote>
<p dir="auto"><strong>Before starting the service</strong><br>
0 27825 C /usr/bin/python3 35MiB</p>
<p dir="auto"><strong>After deleting the session</strong><br>
Note that I am creating the session and loading a checkpoint, running the session and then closing it explicitly with <code class="notranslate">session.close()</code>. I am also resetting the graph by calling <code class="notranslate">tf.reset_default_graph()</code> after closing the session.<br>
0 27825 C /usr/bin/python3 1435MiB</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="device_t='/gpu:0'
graph = tf.Graph()
soft_config = tf.ConfigProto(allow_soft_placement=True)
soft_config.gpu_options.allow_growth = True . #tried both True and False and doesn't seem to help
with graph.as_default(), graph.device(device_t), tf.Session(config=soft_config) as sess:
batch_shape = (batch_size,) + img.shape
img_placeholder = tf.placeholder(tf.float32, shape=batch_shape,
name="img_placeholder")
preds = transform.net(img_placeholder)
saver = tf.train.Saver()
saver.restore(sess, checkpoint_dir)
content = np.zeros(batch_shape, dtype=np.float32)
content[0] = img
_preds = sess.run(preds, feed_dict={img_placeholder: content})
result = crop_img(_preds[0].astype(data_in.dtype))
sess.close() #Explicitly closing the session and deleting does not help as well.
del sess
tf.reset_default_graph()
return result"><pre class="notranslate"><code class="notranslate">device_t='/gpu:0'
graph = tf.Graph()
soft_config = tf.ConfigProto(allow_soft_placement=True)
soft_config.gpu_options.allow_growth = True . #tried both True and False and doesn't seem to help
with graph.as_default(), graph.device(device_t), tf.Session(config=soft_config) as sess:
batch_shape = (batch_size,) + img.shape
img_placeholder = tf.placeholder(tf.float32, shape=batch_shape,
name="img_placeholder")
preds = transform.net(img_placeholder)
saver = tf.train.Saver()
saver.restore(sess, checkpoint_dir)
content = np.zeros(batch_shape, dtype=np.float32)
content[0] = img
_preds = sess.run(preds, feed_dict={img_placeholder: content})
result = crop_img(_preds[0].astype(data_in.dtype))
sess.close() #Explicitly closing the session and deleting does not help as well.
del sess
tf.reset_default_graph()
return result
</code></pre></div>
<p dir="auto">Here are some of the relevant logs.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2017-05-18 18:49:16.556719: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
2017-05-18 18:49:16.556757: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
2017-05-18 18:49:16.556775: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
2017-05-18 18:49:16.584028: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:901] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2017-05-18 18:49:16.584295: I tensorflow/core/common_runtime/gpu/gpu_device.cc:887] Found device 0 with properties:
name: GRID K520
major: 3 minor: 0 memoryClockRate (GHz) 0.797
pciBusID 0000:00:03.0
Total memory: 3.94GiB
Free memory: 3.87GiB
2017-05-18 18:49:16.584326: I tensorflow/core/common_runtime/gpu/gpu_device.cc:908] DMA: 0
2017-05-18 18:49:16.584344: I tensorflow/core/common_runtime/gpu/gpu_device.cc:918] 0: Y
2017-05-18 18:49:16.584368: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] Creating TensorFlow device (/gpu:0) -> (device: 0, name: GRID K520, pci bus id: 0000:00:03.0)
2017-05-18 18:49:16.585190: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] Creating TensorFlow device (/gpu:0) -> (device: 0, name: GRID K520, pci bus id: 0000:00:03.0)
"><pre class="notranslate"><code class="notranslate">2017-05-18 18:49:16.556719: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.1 instructions, but these are available on your machine and could speed up CPU computations.
2017-05-18 18:49:16.556757: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use SSE4.2 instructions, but these are available on your machine and could speed up CPU computations.
2017-05-18 18:49:16.556775: W tensorflow/core/platform/cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations.
2017-05-18 18:49:16.584028: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:901] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2017-05-18 18:49:16.584295: I tensorflow/core/common_runtime/gpu/gpu_device.cc:887] Found device 0 with properties:
name: GRID K520
major: 3 minor: 0 memoryClockRate (GHz) 0.797
pciBusID 0000:00:03.0
Total memory: 3.94GiB
Free memory: 3.87GiB
2017-05-18 18:49:16.584326: I tensorflow/core/common_runtime/gpu/gpu_device.cc:908] DMA: 0
2017-05-18 18:49:16.584344: I tensorflow/core/common_runtime/gpu/gpu_device.cc:918] 0: Y
2017-05-18 18:49:16.584368: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] Creating TensorFlow device (/gpu:0) -> (device: 0, name: GRID K520, pci bus id: 0000:00:03.0)
2017-05-18 18:49:16.585190: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] Creating TensorFlow device (/gpu:0) -> (device: 0, name: GRID K520, pci bus id: 0000:00:03.0)
</code></pre></div> | 0 |
<p dir="auto">Please add a titled panel component to Twitter Bootstrap.</p>
<p dir="auto">Many off-the-shelf themes have these and I find they're useful.</p>
<p dir="auto">To see a sample, go the following link and go to the bottom.</p>
<p dir="auto"><a href="http://themes.vivantdesigns.com/xtremeadmin/forms.html" rel="nofollow">http://themes.vivantdesigns.com/xtremeadmin/forms.html</a></p>
<p dir="auto">The "panel widget" is basically a bootstrap well. What I'm asking for is the "widget".</p> | <p dir="auto">Would you consider adding a component that is not a well, thumbnail, or modal, but something in between? Especially with Modal dropping the .hide class in v3 I see a great need. For example, take a look here on GitHub at the ReadMe box. It has similarities to a modal in that it has a heading and sits "above" the page a bit. Another example is the "example" boxes here in the v2 docs.</p>
<p dir="auto">Of course, thumbnail is inappropriate, and well loses importance to some degree. The generic term "widget" is the best name I can come up with, but there's probably a better term without quite the stigma.</p>
<p dir="auto">I'd be more than happy to add a pull request if that helps.</p>
<p dir="auto">Thanks for all the hard work!</p> | 1 |
<p dir="auto">Prior to yesterday's update, VS code coloring in XML files (specifically web.config) had more variation between various tags and values than the screenshot included.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/355561/11273523/b88f74ea-8ea1-11e5-9c5c-9e8eede4c42d.PNG"><img src="https://cloud.githubusercontent.com/assets/355561/11273523/b88f74ea-8ea1-11e5-9c5c-9e8eede4c42d.PNG" alt="capture" style="max-width: 100%;"></a></p>
<p dir="auto">as a comparison, the syntax highlighting in XML under a light themed notepad++ window</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/355561/11273814/5d758502-8ea3-11e5-916a-f422c90adea0.PNG"><img src="https://cloud.githubusercontent.com/assets/355561/11273814/5d758502-8ea3-11e5-916a-f422c90adea0.PNG" alt="capture" style="max-width: 100%;"></a></p>
<p dir="auto">Is a lot closer to the level of highlighting we used to have in XML files. DEFAULT TAGS were one color, attributes another, values a third.</p>
<p dir="auto">Perhaps something broke in XML language parsing?</p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/900690/11178547/cc7e3a50-8c4d-11e5-8e58-fdaeee133c7f.png"><img src="https://cloud.githubusercontent.com/assets/900690/11178547/cc7e3a50-8c4d-11e5-8e58-fdaeee133c7f.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto"><strong>I'm submitting a ...</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">Component's and directive's initialization occur in declaration order. This can lead to the loss of a directives specific host binding such as <code class="notranslate">@HostBinding('class.specific') classSpecific = true;</code>, when a component "blanket" binds the same parent attribute such as <code class="notranslate">@HostBinding('class') classList = '';</code>.</p>
<p dir="auto"><em>Component overwrites directive specified attributes</em></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@NgModule({
declarations: [
MyDirective,
MyComponent,
],
})"><pre class="notranslate">@<span class="pl-smi">NgModule</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">declarations</span>: <span class="pl-kos">[</span>
<span class="pl-smi">MyDirective</span><span class="pl-kos">,</span>
<span class="pl-smi">MyComponent</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><em>Component writes blanket attributes and directive extends these attributes</em></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@NgModule({
declarations: [
MyComponent,
MyDirective,
],
})"><pre class="notranslate">@<span class="pl-smi">NgModule</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">declarations</span>: <span class="pl-kos">[</span>
<span class="pl-smi">MyComponent</span><span class="pl-kos">,</span>
<span class="pl-smi">MyDirective</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>Expected behavior</strong></p>
<p dir="auto">In my opinion directives should be treated as an extensions of a component's functionallity and therefore initialize after said component. This should also take into account modules and their declaration/import order should not change behavior.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<p dir="auto"><a href="https://plnkr.co/edit/iOF42haUAv379suApgS4?p=preview" rel="nofollow">https://plnkr.co/edit/iOF42haUAv379suApgS4?p=preview</a></p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto">Consistency and by extension stability. In our use-case we recieve a list of classes from the back-end (or another source) which we want to bind to the component host container's class list to avoid uneccessary nesting. In addition we also want to have directives that specifically affect the component without being overwritten.</p>
<ul dir="auto">
<li><strong>Angular version:</strong> 4.0.1</li>
</ul>
<ul dir="auto">
<li><strong>Browser:</strong> all</li>
</ul>
<ul dir="auto">
<li><strong>Language:</strong> all</li>
</ul> | <p dir="auto">Say a user wants to add margin around a component:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<cool-thing class="extra-margin"> ... "><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">cool-thing</span> <span class="pl-c1">class</span>="<span class="pl-s">extra-margin</span>"<span class="pl-kos">></span> ... </pre></div>
<p dir="auto">But the component itself has need to set a dynamic CSS class to the host element:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Component({
...
host: { '[class]': 'myCustomStyle' }
})
class CoolThing {
myCustomStyle: string = figureOutWhichClassToUse();
}"><pre class="notranslate">@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
...
<span class="pl-s1">host</span>: <span class="pl-kos">{</span> <span class="pl-s">'[class]'</span>: <span class="pl-s">'myCustomStyle'</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">CoolThing</span> <span class="pl-kos">{</span>
<span class="pl-c1">myCustomStyle</span>: <span class="pl-smi">string</span> <span class="pl-c1">=</span> <span class="pl-en">figureOutWhichClassToUse</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">Doing this in the component will completely overwrite the <code class="notranslate">class</code> property, wiping away the user's classes.</p>
<p dir="auto">In other situations, <code class="notranslate">NgClass</code> serves this purpose, but a component cannot apply a directive to its host element. Using the <code class="notranslate">[class.whatever]</code> syntax also doesn't solve this, as the <code class="notranslate">whatever</code> is the variable part.</p>
<h3 dir="auto">Proposal</h3>
<p dir="auto">Each component can, conceptually, have two distinct <code class="notranslate">class</code> lists: one that is from the user and one that comes from the component itself. These could be resolved independently with Angular rendering the union. Any time the user uses <code class="notranslate">ngClass</code> or the <code class="notranslate">[class.whatever]</code> syntax, it should override whatever is set to "class".</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mhevery/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mhevery">@mhevery</a></p> | 1 |
<p dir="auto">If you hover over an <code class="notranslate"><a></code> with a tooltip within a <code class="notranslate">.btn-group</code> the border-radius will be overwritten.</p>
<p dir="auto">Watch the right side of the second button when hovering it:<br>
<a href="http://jsfiddle.net/gpyPX/" rel="nofollow">http://jsfiddle.net/gpyPX/</a></p> | <p dir="auto"><a href="http://jsfiddle.net/JEBdk/5/" rel="nofollow">http://jsfiddle.net/JEBdk/5/</a></p>
<p dir="auto">tooltip or popover on btn-group. the btn-group is not display correctly!<br>
the last btn have not round corners and between the btn's is a space.</p>
<p dir="auto">my suggestion, by generating the tip or popover on the end of document .</p> | 1 |
<p dir="auto">Trying out styled-jsx-postcss with the plugin postcss-cssnext - when I nest, I get an erro: node.parent.after is not a function</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">The nested css should work</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">When I save I get this error:</p>
<blockquote>
<p dir="auto">Error in /home/nick/dev/Projects/FreeAdvancedMarketing/pages/index.js?entry<br>
Module build failed: TypeError: /home/nick/dev/Projects/FreeAdvancedMarketing/pages/index.js?entry: node.parent.after is not a function<br>
at module.exports (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/postcss-nesting/lib/transform-nesting-rule.js:18:29)<br>
at walk (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/postcss-nesting/index.js:25:3)<br>
at walk (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/postcss-nesting/index.js:33:4)<br>
at walk (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/postcss-nesting/index.js:33:4)<br>
at LazyResult.run (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/styled-jsx-postcss/node_modules/postcss/lib/lazy-result.es6:321:20)<br>
at LazyResult.asyncTick (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/styled-jsx-postcss/node_modules/postcss/lib/lazy-result.es6:248:32)<br>
at LazyResult.asyncTick (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/styled-jsx-postcss/node_modules/postcss/lib/lazy-result.es6:260:22)<br>
at LazyResult.asyncTick (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/styled-jsx-postcss/node_modules/postcss/lib/lazy-result.es6:260:22)<br>
at LazyResult.asyncTick (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/styled-jsx-postcss/node_modules/postcss/lib/lazy-result.es6:260:22)<br>
at LazyResult.asyncTick (/home/nick/dev/Projects/FreeAdvancedMarketing/node_modules/styled-jsx-postcss/node_modules/postcss/lib/lazy-result.es6:260:22)</p>
</blockquote>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto"><a href="https://github.com/Nick-vr/FreeAdvancedMarketing">https://github.com/Nick-vr/FreeAdvancedMarketing</a></p>
<ol dir="auto">
<li>clone</li>
<li>yarn</li>
<li>yarn dev</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">I am trying to nest css with styled-jsx-postcss -> cssnext</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>beta</td>
</tr>
<tr>
<td>node</td>
<td>v7.4.0</td>
</tr>
<tr>
<td>OS</td>
<td>Linux Mint</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | <p dir="auto">Currently attempting to deploy a next.js to production with dynamic imports (without using <code class="notranslate">next/dynamic</code> since we're importing a non-react library), and running into issues with 404s on the dynamically imported chunks.</p>
<p dir="auto">The built folder structure looks like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".next
- app.js
- BUILD_ID
- 0-cd29260af35981b4adfc.js
- ...etc
"><pre class="notranslate"><code class="notranslate">.next
- app.js
- BUILD_ID
- 0-cd29260af35981b4adfc.js
- ...etc
</code></pre></div>
<p dir="auto">While loading the page, a javascript file at <code class="notranslate">/_next/webpack/0-cd29260af35981b4adfc.js</code> is loaded, pointing to the file <code class="notranslate">0-cd29260af35981b4adfc.js</code> to be in the <code class="notranslate">.next/chunks</code> directory, which it's not. Moving that file manually to the <code class="notranslate">chunks</code> folder fixes it. Currently, the request <code class="notranslate">404s</code>.</p>
<ul dir="auto">
<li>[x ] 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">The request for the dynamically loaded javascript file should not 404.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">The request for the dynamically loaded javascript <code class="notranslate">404s</code>.</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>5.0.0</td>
</tr>
<tr>
<td>node</td>
<td>8.9.4</td>
</tr>
<tr>
<td>OS</td>
<td>MacOs</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">in VS2015 (beta and release) when editing a string, if I type an open parenthesis the intellisense function signature pop-up opens.</p>
<p dir="auto">e.g.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="console.log("hello"); "><pre class="notranslate"><code class="notranslate">console.log("hello");
</code></pre></div>
<p dir="auto">editing in <code class="notranslate">"hello("</code> causes <code class="notranslate">log([message: any)</code> to be displayed.</p> | <p dir="auto">Hi,</p>
<p dir="auto"><strong>VS</strong>: 2013 Update 4 RC<br>
<strong>TS</strong>: 1.3</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1106823/5028095/ddad465e-6b2e-11e4-9767-210984b40bb3.gif"><img src="https://cloud.githubusercontent.com/assets/1106823/5028095/ddad465e-6b2e-11e4-9767-210984b40bb3.gif" alt="commarepro" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">Also occurs with <code class="notranslate">(</code> and <code class="notranslate"><</code></p> | 1 |
<p dir="auto">I'm looking into customizing an installation of Bootstrap 2 for my color scheme, and the names are virtually worthless. My scheme is light-on-dark, and the default text color variable name is "gray". I can set this to white and it will work, but it's completely counter-intuitive.</p>
<p dir="auto">Variable names shouldn't be names of colors, unless you're defining those colors. For example, defining your particular shade of gray in "gray" so you can use it is fine, but then doing "color: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gray/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gray">@gray</a>" is bad design.</p>
<p dir="auto">I understand that it's rather a big change, but it would be much better if it were something like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@gray: #333;
@textColor: @gray;
body { color: @textColor; }"><pre class="notranslate"><code class="notranslate">@gray: #333;
@textColor: @gray;
body { color: @textColor; }
</code></pre></div>
<p dir="auto">This way is used in most places, but there are some places that use the color-named variables directly. Ideally, this shouldn't happen anywhere outside variables.less.</p> | <p dir="auto">border-radius and box-shadow are already supported by browsers without prefixes.</p>
<p dir="auto">Why do we need to duplicate these styles with -webkit- and -moz- vendor prefixes?</p> | 0 |
<p dir="auto">I have a package of reusable components that use styled-jsx that I import into my Next.js app (version 2.4.0).</p>
<p dir="auto">The styles of the components in the package do not get rendered on the server and results in a flash of unstyled content on page load.</p>
<p dir="auto">Is there an approach that's taken for cases like this?</p>
<p dir="auto">My only hack has been to import the styled-jsx files separately into my app and add the style to the render using <code class="notranslate"><styled-jsx>{style}</style></code> but that results in duplicate styles when the component's styles get attributed by the client.</p>
<p dir="auto">Any help would be greatly appreciated</p> | <p dir="auto">A solution for CSS-file-based styling and importing non-js files from webpack in server side rendering. I have made a package that allows us to import non-js files directly in server side code, without prebundling, and works just like <code class="notranslate">babel-register</code>. I just want to share it to improve other devs experience with SSR:<br>
<a href="https://github.com/namnm/webpack-register">https://github.com/namnm/webpack-register</a></p>
<p dir="auto">I also would like to create a PR and include a link in the section that warns users not to use webpack loaders to support for other non-js files.<br>
Hope this can help somewhere.</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">We can easily require non-js files from webpack bundle, like sass .scss, image .png .jpg, ... in our server rendering code.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Right now, we are not recommended to use CSS-file-based styling and importing non-js from webpack in SSR, due to <strong>a bunch of practical issues</strong>...</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
<h2 dir="auto">Context</h2>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td></td>
</tr>
<tr>
<td>node</td>
<td></td>
</tr>
<tr>
<td>OS</td>
<td></td>
</tr>
<tr>
<td>browser</td>
<td></td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">This is illegal construction, but rather than being an error, it creates a traceback.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> versioninfo()
Julia Version 1.6.1
Commit 6aaedecc44 (2021-04-23 05:59 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.1 (ORCJIT, goldmont)
julia> T = Vector{Tuple{:a, :b}}
Vector{Tuple{:a, :b}} (alias for Array{Tuple{:a, :b}, 1})
julia> T()
Internal error: encountered unexpected error in runtime:
MethodError(f=Core.Compiler.widenconst, args=(:a,), world=0x00000000000010a8)
jl_method_error_bare at /buildworker/worker/package_linux64/build/src/gf.c:1812
jl_method_error at /buildworker/worker/package_linux64/build/src/gf.c:1830
jl_lookup_generic_ at /buildworker/worker/package_linux64/build/src/gf.c:2400 [inlined]
jl_apply_generic at /buildworker/worker/package_linux64/build/src/gf.c:2415
..."><pre class="notranslate"><code class="notranslate">julia> versioninfo()
Julia Version 1.6.1
Commit 6aaedecc44 (2021-04-23 05:59 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.1 (ORCJIT, goldmont)
julia> T = Vector{Tuple{:a, :b}}
Vector{Tuple{:a, :b}} (alias for Array{Tuple{:a, :b}, 1})
julia> T()
Internal error: encountered unexpected error in runtime:
MethodError(f=Core.Compiler.widenconst, args=(:a,), world=0x00000000000010a8)
jl_method_error_bare at /buildworker/worker/package_linux64/build/src/gf.c:1812
jl_method_error at /buildworker/worker/package_linux64/build/src/gf.c:1830
jl_lookup_generic_ at /buildworker/worker/package_linux64/build/src/gf.c:2400 [inlined]
jl_apply_generic at /buildworker/worker/package_linux64/build/src/gf.c:2415
...
</code></pre></div> | <p dir="auto">I am working on package <a href="https://github.com/rryi/BitStructs.jl">BitStructs</a> and encounter a strange error running my benchmarks with julia 1.6.0-RC1.</p>
<h3 dir="auto">Environment:</h3>
<p dir="auto">System Ryzen 1700, 16 GB RAM, Windows 10 Pro, version 20H2<br>
Julia 64 bit 1.6.0-rc1 (2021-02-06)<br>
Package <a href="https://github.com/rryi/BitStructs.jl">https://github.com/rryi/BitStructs.jl</a>, commit 50ea2e46b77d098ba61ab65d15e31aa289848e24</p>
<h3 dir="auto">Steps to reproduce:</h3>
<ul dir="auto">
<li>use a Win10 machine</li>
<li>install julia 1.6.0 RC1 64 bit</li>
<li>download/clone package BitStructs.jl to a local directory</li>
<li>enter that directory in a CMD shell</li>
<li>start julia</li>
<li>activate package dir</li>
<li>add BenchmarkTools (I did it some days ago with v0.5.0. Retry with version 0.6.0 had the same result)</li>
<li>exit julia</li>
<li>execute in CMD shell: julia test\crash.jl</li>
</ul>
<p dir="auto">My log for that, showing the crash under 1.6.0RC1</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Microsoft Windows [Version 10.0.19042.867]
(c) 2020 Microsoft Corporation. Alle Rechte vorbehalten.
C:\Users\RR\julia\BitStructs>julia test\crash.jl
Activating environment at `C:\Users\RR\julia\BitStructs\Project.toml`
S(S_RUNNING, BIGMINUS, Float16(-1.0), true, false, false, true, 0, 'a', 'c', 0x0001, 0x0002, 3, 4)BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2), Tuple{ProcStatus, Strange, Sign, Bool, Bool, Bool, Bool, BInt{1}, AsciiChar, Latin1Char, BUInt{9}, BUInt{12}, BInt{9}, BInt{9}}}} 0x0200c00802c78531
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = true
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000001
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
struct/BitStruct simple field access ENTER:
2.700 ns (0 allocations: 0 bytes)
2.700 ns (0 allocations: 0 bytes)
struct/BitStruct field access in @noinline function ENTER:
2.600 ns (0 allocations: 0 bytes)
9.500 ns (0 allocations: 0 bytes)
set 2 fields on struct then BitStruct ENTER:
2.600 ns (0 allocations: 0 bytes)
358.571 ns (3 allocations: 48 bytes)
set 2 fields on struct then BitStruct (large struct) ENTER:
2.600 ns (0 allocations: 0 bytes)
the statements executed by set2fields run, if executed directly
BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2), Tuple{ProcStatus, Strange, Sign, Bool, Bool, Bool, Bool, BInt{1}, AsciiChar, Latin1Char, BUInt{9}, BUInt{12}, BInt{9}, BInt{9}}}} 0x0200c00804c78511
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = false
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000002
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
Calling set2fields(bs) causes a crash
Unreachable reached at 00000000610aa1b6
Please submit a bug report with steps to reproduce this fault, and any error messages that follow (in their entirety). Thanks.
Exception: EXCEPTION_ILLEGAL_INSTRUCTION at 0x610aa1b6 -- set2fields at C:\Users\RR\julia\BitStructs\test\benchmark.jl:293
in expression starting at C:\Users\RR\julia\BitStructs\test\benchmark.jl:316
set2fields at C:\Users\RR\julia\BitStructs\test\benchmark.jl:293
unknown function (ip: 00000000610aa1d9)
jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined]
do_call at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:115
eval_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:204
eval_stmt_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:155 [inlined]
eval_body at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:575
jl_interpret_toplevel_thunk at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:669
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:879
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:827
jl_toplevel_eval at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:888 [inlined]
jl_toplevel_eval_in at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:931
eval at .\boot.jl:360 [inlined]
include_string at .\loading.jl:1090
_include at .\loading.jl:1144
include at .\client.jl:444
jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined]
do_call at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:115
eval_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:204
eval_stmt_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:155 [inlined]
eval_body at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:575
jl_interpret_toplevel_thunk at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:669
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:879
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:827
jl_toplevel_eval at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:888 [inlined]
jl_toplevel_eval_in at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:931
eval at .\boot.jl:360 [inlined]
include_string at .\loading.jl:1090
_include at .\loading.jl:1144
include at .\Base.jl:386
exec_options at .\client.jl:285
_start at .\client.jl:485
jfptr__start_33914.clone_1 at C:\RRtool\julia-1.6.0-RC1\lib\julia\sys.dll (unknown line)
jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined]
true_main at /cygdrive/c/buildbot/worker/package_win64/build/src\jlapi.c:557
repl_entrypoint at /cygdrive/c/buildbot/worker/package_win64/build/src\jlapi.c:699
mainCRTStartup at /cygdrive/c/buildbot/worker/package_win64/build/cli\loader_exe.c:51
BaseThreadInitThunk at C:\WINDOWS\System32\KERNEL32.DLL (unknown line)
RtlUserThreadStart at C:\WINDOWS\SYSTEM32\ntdll.dll (unknown line)
Allocations: 19362754 (Pool: 19359441; Big: 3313); GC: 70
C:\Users\RR\julia\BitStructs>"><pre class="notranslate"><code class="notranslate">Microsoft Windows [Version 10.0.19042.867]
(c) 2020 Microsoft Corporation. Alle Rechte vorbehalten.
C:\Users\RR\julia\BitStructs>julia test\crash.jl
Activating environment at `C:\Users\RR\julia\BitStructs\Project.toml`
S(S_RUNNING, BIGMINUS, Float16(-1.0), true, false, false, true, 0, 'a', 'c', 0x0001, 0x0002, 3, 4)BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2), Tuple{ProcStatus, Strange, Sign, Bool, Bool, Bool, Bool, BInt{1}, AsciiChar, Latin1Char, BUInt{9}, BUInt{12}, BInt{9}, BInt{9}}}} 0x0200c00802c78531
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = true
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000001
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
struct/BitStruct simple field access ENTER:
2.700 ns (0 allocations: 0 bytes)
2.700 ns (0 allocations: 0 bytes)
struct/BitStruct field access in @noinline function ENTER:
2.600 ns (0 allocations: 0 bytes)
9.500 ns (0 allocations: 0 bytes)
set 2 fields on struct then BitStruct ENTER:
2.600 ns (0 allocations: 0 bytes)
358.571 ns (3 allocations: 48 bytes)
set 2 fields on struct then BitStruct (large struct) ENTER:
2.600 ns (0 allocations: 0 bytes)
the statements executed by set2fields run, if executed directly
BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2), Tuple{ProcStatus, Strange, Sign, Bool, Bool, Bool, Bool, BInt{1}, AsciiChar, Latin1Char, BUInt{9}, BUInt{12}, BInt{9}, BInt{9}}}} 0x0200c00804c78511
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = false
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000002
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
Calling set2fields(bs) causes a crash
Unreachable reached at 00000000610aa1b6
Please submit a bug report with steps to reproduce this fault, and any error messages that follow (in their entirety). Thanks.
Exception: EXCEPTION_ILLEGAL_INSTRUCTION at 0x610aa1b6 -- set2fields at C:\Users\RR\julia\BitStructs\test\benchmark.jl:293
in expression starting at C:\Users\RR\julia\BitStructs\test\benchmark.jl:316
set2fields at C:\Users\RR\julia\BitStructs\test\benchmark.jl:293
unknown function (ip: 00000000610aa1d9)
jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined]
do_call at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:115
eval_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:204
eval_stmt_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:155 [inlined]
eval_body at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:575
jl_interpret_toplevel_thunk at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:669
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:879
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:827
jl_toplevel_eval at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:888 [inlined]
jl_toplevel_eval_in at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:931
eval at .\boot.jl:360 [inlined]
include_string at .\loading.jl:1090
_include at .\loading.jl:1144
include at .\client.jl:444
jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined]
do_call at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:115
eval_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:204
eval_stmt_value at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:155 [inlined]
eval_body at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:575
jl_interpret_toplevel_thunk at /cygdrive/c/buildbot/worker/package_win64/build/src\interpreter.c:669
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:879
jl_toplevel_eval_flex at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:827
jl_toplevel_eval at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:888 [inlined]
jl_toplevel_eval_in at /cygdrive/c/buildbot/worker/package_win64/build/src\toplevel.c:931
eval at .\boot.jl:360 [inlined]
include_string at .\loading.jl:1090
_include at .\loading.jl:1144
include at .\Base.jl:386
exec_options at .\client.jl:285
_start at .\client.jl:485
jfptr__start_33914.clone_1 at C:\RRtool\julia-1.6.0-RC1\lib\julia\sys.dll (unknown line)
jl_apply at /cygdrive/c/buildbot/worker/package_win64/build/src\julia.h:1703 [inlined]
true_main at /cygdrive/c/buildbot/worker/package_win64/build/src\jlapi.c:557
repl_entrypoint at /cygdrive/c/buildbot/worker/package_win64/build/src\jlapi.c:699
mainCRTStartup at /cygdrive/c/buildbot/worker/package_win64/build/cli\loader_exe.c:51
BaseThreadInitThunk at C:\WINDOWS\System32\KERNEL32.DLL (unknown line)
RtlUserThreadStart at C:\WINDOWS\SYSTEM32\ntdll.dll (unknown line)
Allocations: 19362754 (Pool: 19359441; Big: 3313); GC: 70
C:\Users\RR\julia\BitStructs>
</code></pre></div>
<p dir="auto">here the run with julia 1.5.3, no crash:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\RR\julia\BitStructs>C:\RRtool\julia-1.5.3\bin\julia.exe test\crash.jl
Activating environment at `C:\Users\RR\julia\BitStructs\Project.toml`
S(S_RUNNING, BIGMINUS, Float16(-1.0), true, false, false, true, 0, 'a', 'c', 0x0001, 0x0002, 3, 4)BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2),Tuple{ProcStatus,Strange,Sign,Bool,Bool,Bool,Bool,BInt{1},AsciiChar,Latin1Char,BUInt{9},BUInt{12},BInt{9},BInt{9}}}} 0x0200c00802c78531
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = true
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000001
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
struct/BitStruct simple field access ENTER:
2.699 ns (0 allocations: 0 bytes)
397.995 ns (1 allocation: 32 bytes)
struct/BitStruct field access in @noinline function ENTER:
2.399 ns (0 allocations: 0 bytes)
364.423 ns (1 allocation: 32 bytes)
set 2 fields on struct then BitStruct ENTER:
2.399 ns (0 allocations: 0 bytes)
8.733 ยตs (5 allocations: 96 bytes)
set 2 fields on struct then BitStruct (large struct) ENTER:
2.399 ns (0 allocations: 0 bytes)
the statements executed by set2fields run, if executed directly
BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2),Tuple{ProcStatus,Strange,Sign,Bool,Bool,Bool,Bool,BInt{1},AsciiChar,Latin1Char,BUInt{9},BUInt{12},BInt{9},BInt{9}}}} 0x0200c00804c78511
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = false
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000002
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
Calling set2fields(bs) causes a crash
b1 set field in loop by /= ENTER:
2.122 ยตs (0 allocations: 0 bytes)
b2 set field in loop by set(..) ENTER:
2.133 ยตs (0 allocations: 0 bytes)
struct/BitStruct: access 4 fields in a loop ENTER:
103.389 ns (0 allocations: 0 bytes)
66.400 ยตs (70 allocations: 1.09 KiB)
struct/BitStruct: write 4 fields in a loop ENTER:
173.947 ns (0 allocations: 0 bytes)
struct/BitStruct: access 4 fields in a loop, large struct ENTER:
104.979 ns (0 allocations: 0 bytes)
105.200 ยตs (0 allocations: 0 bytes)
struct/BitStruct: write 4 fields in a loop, large struct ENTER:
175.520 ns (0 allocations: 0 bytes)
struct/BitStruct: access 4 fields, direct code ENTER:
1.799 ns (0 allocations: 0 bytes)
1.070 ยตs (1 allocation: 32 bytes)
function parameter benchmark: struct/BitStruct/parameterlist ENTER:
1.590 ยตs (17 allocations: 1.38 KiB)
1.610 ยตs (18 allocations: 1.39 KiB)
C:\Users\RR\julia\BitStructs>"><pre class="notranslate"><code class="notranslate">C:\Users\RR\julia\BitStructs>C:\RRtool\julia-1.5.3\bin\julia.exe test\crash.jl
Activating environment at `C:\Users\RR\julia\BitStructs\Project.toml`
S(S_RUNNING, BIGMINUS, Float16(-1.0), true, false, false, true, 0, 'a', 'c', 0x0001, 0x0002, 3, 4)BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2),Tuple{ProcStatus,Strange,Sign,Bool,Bool,Bool,Bool,BInt{1},AsciiChar,Latin1Char,BUInt{9},BUInt{12},BInt{9},BInt{9}}}} 0x0200c00802c78531
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = true
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000001
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
struct/BitStruct simple field access ENTER:
2.699 ns (0 allocations: 0 bytes)
397.995 ns (1 allocation: 32 bytes)
struct/BitStruct field access in @noinline function ENTER:
2.399 ns (0 allocations: 0 bytes)
364.423 ns (1 allocation: 32 bytes)
set 2 fields on struct then BitStruct ENTER:
2.399 ns (0 allocations: 0 bytes)
8.733 ยตs (5 allocations: 96 bytes)
set 2 fields on struct then BitStruct (large struct) ENTER:
2.399 ns (0 allocations: 0 bytes)
the statements executed by set2fields run, if executed directly
BitStruct{NamedTuple{(:status, :strange, :sign, :flag1, :flag2, :flag3, :flag4, :bit1, :ac, :lc, :id1, :id2, :delta1, :delta2),Tuple{ProcStatus,Strange,Sign,Bool,Bool,Bool,Bool,BInt{1},AsciiChar,Latin1Char,BUInt{9},BUInt{12},BInt{9},BInt{9}}}} 0x0200c00804c78511
status::ProcStatus = S_RUNNING
strange::Strange = BIGMINUS
sign::Sign = -1.0
flag1::Bool = false
flag2::Bool = false
flag3::Bool = false
flag4::Bool = true
bit1::BInt{1} = 0
ac::AsciiChar = 'a'
lc::Latin1Char = 'c'
id1::BUInt{9} = 0x0000000000000002
id2::BUInt{12} = 0x0000000000000002
delta1::BInt{9} = 3
delta2::BInt{9} = 4
end
Calling set2fields(bs) causes a crash
b1 set field in loop by /= ENTER:
2.122 ยตs (0 allocations: 0 bytes)
b2 set field in loop by set(..) ENTER:
2.133 ยตs (0 allocations: 0 bytes)
struct/BitStruct: access 4 fields in a loop ENTER:
103.389 ns (0 allocations: 0 bytes)
66.400 ยตs (70 allocations: 1.09 KiB)
struct/BitStruct: write 4 fields in a loop ENTER:
173.947 ns (0 allocations: 0 bytes)
struct/BitStruct: access 4 fields in a loop, large struct ENTER:
104.979 ns (0 allocations: 0 bytes)
105.200 ยตs (0 allocations: 0 bytes)
struct/BitStruct: write 4 fields in a loop, large struct ENTER:
175.520 ns (0 allocations: 0 bytes)
struct/BitStruct: access 4 fields, direct code ENTER:
1.799 ns (0 allocations: 0 bytes)
1.070 ยตs (1 allocation: 32 bytes)
function parameter benchmark: struct/BitStruct/parameterlist ENTER:
1.590 ยตs (17 allocations: 1.38 KiB)
1.610 ยตs (18 allocations: 1.39 KiB)
C:\Users\RR\julia\BitStructs>
</code></pre></div> | 1 |
<p dir="auto">This code compiles:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#![feature(associated_types)]
pub trait A {
type B;
fn x() -> Option<Self::B>;
}
pub fn x<T: A>() -> Option< <T as A>::B> {
A::x()
}
fn main() { }"><pre class="notranslate"><code class="notranslate">#![feature(associated_types)]
pub trait A {
type B;
fn x() -> Option<Self::B>;
}
pub fn x<T: A>() -> Option< <T as A>::B> {
A::x()
}
fn main() { }
</code></pre></div>
<p dir="auto">โฆ but remove the space from <code class="notranslate">< <</code> on the <code class="notranslate">pub fn x</code>, and it fails to parse:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<anon>:8:27: 8:29 error: expected one of `(`, `::`, or `{`, found `<<`
<anon>:8 pub fn x<T: A>() -> Option<<T as A>::B> {
^~"><pre class="notranslate"><code class="notranslate"><anon>:8:27: 8:29 error: expected one of `(`, `::`, or `{`, found `<<`
<anon>:8 pub fn x<T: A>() -> Option<<T as A>::B> {
^~
</code></pre></div> | <h3 dir="auto">STR</h3>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#![feature(associated_types)]
trait Trait {
type Type;
// OK
fn method() -> <Self as Trait>::Type;
// Can't parse
fn method() -> Box<<Self as Trait>::Type>;
}
fn main() {}"><pre class="notranslate"><span class="pl-c1">#!<span class="pl-kos">[</span>feature<span class="pl-kos">(</span>associated_types<span class="pl-kos">)</span><span class="pl-kos">]</span></span>
<span class="pl-k">trait</span> <span class="pl-smi">Trait</span> <span class="pl-kos">{</span>
<span class="pl-k">type</span> <span class="pl-smi">Type</span><span class="pl-kos">;</span>
<span class="pl-c">// OK</span>
<span class="pl-k">fn</span> <span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <<span class="pl-smi">Self</span> <span class="pl-k">as</span> <span class="pl-smi">Trait</span>><span class="pl-kos">::</span><span class="pl-smi">Type</span><span class="pl-kos">;</span>
<span class="pl-c">// Can't parse</span>
<span class="pl-k">fn</span> <span class="pl-en">method</span><span class="pl-kos">(</span><span class="pl-kos">)</span> -> <span class="pl-smi">Box</span><span class="pl-kos"><</span><<span class="pl-smi">Self</span> <span class="pl-k">as</span> <span class="pl-smi">Trait</span>><span class="pl-kos">::</span><span class="pl-smi">Type</span><span class="pl-kos">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Output</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ai.rs:9:23: 9:25 error: expected `;` or `{`, found `<<`
ai.rs:9 fn method() -> Box<<Self as Trait>::Type>;"><pre class="notranslate"><code class="notranslate">ai.rs:9:23: 9:25 error: expected `;` or `{`, found `<<`
ai.rs:9 fn method() -> Box<<Self as Trait>::Type>;
</code></pre></div>
<h3 dir="auto">Version</h3>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="rustc 0.12.0-pre (9508faa22 2014-09-17 23:45:36 +0000)"><pre class="notranslate">rustc <span class="pl-c1">0.12</span><span class="pl-kos">.</span><span class="pl-c1">0</span>-<span class="pl-en">pre</span> <span class="pl-kos">(</span><span class="pl-c1">9508</span>faa22 <span class="pl-c1">2014</span>-<span class="pl-c1">09</span>-<span class="pl-c1">17</span> <span class="pl-c1">23</span><span class="pl-kos">:</span><span class="pl-c1">45</span><span class="pl-kos">:</span><span class="pl-c1">36</span> +<span class="pl-c1">0000</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pcwalton/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pcwalton">@pcwalton</a></p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Unused components/pipes/directives in my workspace are detected by the compiler, which throws the error <code class="notranslate">Cannot determine the module for class (...)</code> for each file. It stops compilation, and does not seem be configurable. This is a problem, since I need to have those files in my workspace, but do not need them in the resultant app (partner implementations requiring different combos of shared components). This is especially frustrating with regards to compiling in a webpack loader, which should be able to provide a list of files which are included, regardless of workspace.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
I would expect these errors to be warnings, and/or able to be silenced by a compiler option. Alternatively, with regards to webpack, you could allow a list of files to be inserted, so that a webpack could provide all files in the require chain, instead of all files in the workspace.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
Cannot demo in plunkr, since it uses JIT.</p>
<ol dir="auto">
<li>Create a basic angular app which bootstraps an ngModule with one component, AppComponent</li>
<li>Get this app into a state which can be AOT compiled (should be pretty easy with a hello world)</li>
<li>Add a component to the directory structure, but do not reference it anywhere in your code.</li>
<li>Try to AOT compile again. You will get the warning <code class="notranslate">Cannot determine the module for class</code></li>
</ol>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
My company has a base app for ourselves, and our partners use modified versions of that app as their own. Rather than maintain all partners separately, we use a shared library of common generic components, imported as needed. For our base app, everything is fine, since we use every component. For partners, we cannot use AOT, since some of the components in the shared npm package do not have a declared module.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong><br>
Happens across all devices, but the current testing setup is:<br>
WIndows 10<br>
VS Code<br>
Cmder (bash terminal)</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong><br>
v2.1.0 (though we have also tested in 2.3.1</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> All - this is a compiler issue, not browser specific</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> Typescript</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> node v6.3.0</p>
</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Using reactive forms in 2 modules fails with an error</p>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
It should work</p>
<p dir="auto"><strong>Reproduction of the problem</strong><br>
If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the steps to reproduce and if possible a minimal demo of the problem via <a href="https://plnkr.co" rel="nofollow">https://plnkr.co</a> or similar (you can use this template as a starting point: <a href="http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5" rel="nofollow">http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5</a>).</p>
<p dir="auto">See <a href="http://plnkr.co/edit/2tFC6CDrcZSg3GxW5qRS?p=preview" rel="nofollow">http://plnkr.co/edit/2tFC6CDrcZSg3GxW5qRS?p=preview</a> which is forked from lazy load example at <a href="https://angular.io/docs/ts/latest/guide/ngmodule.html" rel="nofollow">https://angular.io/docs/ts/latest/guide/ngmodule.html</a> with the minor addition that<br>
app component and crisis detail component each try to create a FormGroup with a FormControl. When crisis detail is loaded (click on crisis center) it fails with an error:<br>
<code class="notranslate">EXCEPTION: Error: Uncaught (in promise): Type FormControlDirective is part of the declarations of 2 modules: AppModule and CrisisModule!</code><br>
Maybe there's some documentation that shows how to do this correctly - but I haven't found it. I have tried various combinations of including/not including things in the 2 modules and the components but haven't hit on a combination that works. Based on the documentation I've seen this looks like a bug.</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
It shouldn't fail</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
To be able to use reactive forms.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.0-rc.5</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 ]<br>
Chrome</li>
<li><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
Typescript</li>
</ul> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<p dir="auto">10.1.0</p>
<ul dir="auto">
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<p dir="auto">Windows 10 (19041)</p>
<ul dir="auto">
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<p dir="auto">N/A</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">minimize() and maximize() to minimize and maximize the window respectively.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">nothing changed/happened.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">remote.BrowserWindow.getFocusedWindow().minimize()</p>
<p dir="auto"><a href="https://gist.github.com/IncinerateZ/9aae814bf6d3e97c474be6629d9400e3">https://gist.github.com/IncinerateZ/9aae814bf6d3e97c474be6629d9400e3</a></p>
<p dir="auto">copy paste gist files to electron fiddle.</p>
<h3 dir="auto">Screenshots</h3>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">strangely enough, close() does work.</p> | <ul dir="auto">
<li>Electron version: 1.7.9</li>
<li>Operating system: 10.12.6</li>
<li>Computer: Macbook Air</li>
</ul>
<p dir="auto">I am currently working on the implementation of the Web Bluetooth selection dialog. The above event returns a huge number of duplicates. I have seen everything between 17 and 107 entries; they seem to grow when I reload the JS code and re-open the dialog.</p>
<p dir="auto">When I remove all address duplicates, I end up with a few MAC addresses that seem to be auto-generated, because there is no vendor ID available for these addresses. This is the list of devices reported by my dialog:</p>
<p dir="auto">"CA:14:FF:2A:37:F4" InO-Bot<br>
"74:F9:BB:C1:60:BE" SBrick<br>
"1F:46:52:72:D6:07" Betty<br>
"48:F6:9B:C4:33:11" InO-Bot<br>
"34:81:F4:15:07:D4" InO-Bot<br>
"8C:DE:52:9A:DF:FC" Betty</p>
<p dir="auto">Both Betty and InO-Bot have invalid (?) MAC addresses, not assigned to any vendor ID. The correct addresses are 34:81... and 8C:DE...</p>
<p dir="auto">SBrick is a BLE-only device that has never been paired via the System Preferences. Betty and InO-Bot have been paired. After I removed the devices from the System Preferences Bluetooth dialog, I got a third entry for InO-Bot; before, I got two for both.</p>
<p dir="auto">Both Betty and InO-Bot support BLE and the old SPP protocol. I suspect that Mac OS creates serial ports and therefore generates the additional MAC addresses.</p>
<p dir="auto">I've attached an XML dump of my com.apple.Bluetooth system preferences.</p>
<p dir="auto"><a href="https://github.com/electron/electron/files/1385338/com.apple.Bluetooth.txt">com.apple.Bluetooth.txt</a></p>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">List three BT devices</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">List of devices with several duplicates and apparently generated MAC addresses</p> | 0 |
<h2 dir="auto">Bug Report</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13749042/50773242-4a8e1f80-12cb-11e9-80a0-69724dc263ef.png"><img src="https://user-images.githubusercontent.com/13749042/50773242-4a8e1f80-12cb-11e9-80a0-69724dc263ef.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Environment</strong></p>
<ul dir="auto">
<li>Babel version(s): v7.2.2</li>
<li>Node/npm version: 9.6.0</li>
<li>OS</li>
<li>How you are using Babel: loader</li>
</ul> | <h2 dir="auto">Bug Report</h2>
<p dir="auto"><strong>Current Behavior</strong><br>
I'm building a library that need to be able to work with JSX with namespaces. According to <a href="https://babeljs.io/docs/en/babel-plugin-transform-react-jsx" rel="nofollow">Babel documentation</a> this should work by setting the throwIfNamespace option. However this does not seem to work.</p>
<p dir="auto"><strong>Input Code</strong><br>
<a href="https://github.com/TheKnarf/babel-namespace-test">https://github.com/TheKnarf/babel-namespace-test</a></p>
<p dir="auto"><strong>Expected behavior/code</strong><br>
Running <code class="notranslate">babel src/index.js</code> should transpile the test code without any errors.</p>
<p dir="auto"><strong>Babel Configuration (.babelrc, package.json, cli command)</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
presets: ['@babel/preset-react'],
plugins: [
['@babel/transform-react-jsx', {
'pragma': 'dom',
'throwIfNamespace': false
}]
]
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-c1">presets</span>: <span class="pl-kos">[</span><span class="pl-s">'@babel/preset-react'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">'@babel/transform-react-jsx'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-s">'pragma'</span>: <span class="pl-s">'dom'</span><span class="pl-kos">,</span>
<span class="pl-s">'throwIfNamespace'</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>Environment</strong></p>
<ul dir="auto">
<li>Babel version(s): 7.1.2 (@babel/core 7.1.2)</li>
<li>Node/npm version: v10.12.0</li>
<li>OS: macOS 10.13.6</li>
<li>How you are using Babel: cli</li>
</ul>
<p dir="auto"><strong>Additional context/Screenshots</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/213777/47648871-ad509580-db7b-11e8-9f4a-c4d565f9ce39.png"><img width="449" alt="screen shot 2018-10-29 at 13 07 56" src="https://user-images.githubusercontent.com/213777/47648871-ad509580-db7b-11e8-9f4a-c4d565f9ce39.png" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Hello,<br>
PowerToys Run was working.<br>
I didnโt use it because it has not yet entered my usual reflexes.<br>
Now that I want to use it actively, it doesn't work.<br>
I type Alt + Space and it pulls down the File menu of the active window.<br>
I tried with other keyboard shortcuts, but it doesn't work.<br>
Do you know this problem?<br>
Do you know the solution?<br>
Thank you for your attention.</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.19
PowerToy module for which you are reporting the bug (if applicable): PT Run"><pre class="notranslate"><code class="notranslate">Windows build number: [run "ver" at a command prompt]
PowerToys version: 0.19
PowerToy module for which you are reporting the bug (if applicable): PT Run
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Remap key from alt-space to win-space<br>
execute shortcut multiple times</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">don't have start menu false positive executions</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Lots of start menu executions</p> | 1 |
<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="In [2]: mi = pd.MultiIndex.from_product([[0, 1]]*2, names=[('first', 'level'), ('second', 'level')])
In [3]: mi.droplevel(('first', 'level'))
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
~/nobackup/repo/pandas/pandas/core/indexes/multi.py in _get_level_number(self, level)
775 'level number' % level)
--> 776 level = self.names.index(level)
777 except ValueError:
ValueError: 'first' is not in list
During handling of the above exception, another exception occurred:
KeyError Traceback (most recent call last)
<ipython-input-3-1952401ac0fc> in <module>()
----> 1 mi.droplevel(('first', 'level'))
~/nobackup/repo/pandas/pandas/core/indexes/base.py in droplevel(self, level)
3177 level = [level]
3178
-> 3179 levnums = sorted(self._get_level_number(lev) for lev in level)[::-1]
3180
3181 if len(level) == 0:
~/nobackup/repo/pandas/pandas/core/indexes/base.py in <genexpr>(.0)
3177 level = [level]
3178
-> 3179 levnums = sorted(self._get_level_number(lev) for lev in level)[::-1]
3180
3181 if len(level) == 0:
~/nobackup/repo/pandas/pandas/core/indexes/multi.py in _get_level_number(self, level)
777 except ValueError:
778 if not isinstance(level, int):
--> 779 raise KeyError('Level %s not found' % str(level))
780 elif level < 0:
781 level += self.nlevels
KeyError: 'Level first not found'
In [4]: mi.droplevel([('first', 'level')])
Out[4]: Int64Index([0, 1, 0, 1], dtype='int64', name=('second', 'level'))"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">mi</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">MultiIndex</span>.<span class="pl-en">from_product</span>([[<span class="pl-c1">0</span>, <span class="pl-c1">1</span>]]<span class="pl-c1">*</span><span class="pl-c1">2</span>, <span class="pl-s1">names</span><span class="pl-c1">=</span>[(<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>), (<span class="pl-s">'second'</span>, <span class="pl-s">'level'</span>)])
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">mi</span>.<span class="pl-en">droplevel</span>((<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>))
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span>
<span class="pl-v">ValueError</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>)
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">multi</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_get_level_number</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>)
<span class="pl-c1">775</span> <span class="pl-s">'level number'</span> <span class="pl-c1">%</span> <span class="pl-s1">level</span>)
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">776</span> <span class="pl-s1">level</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">names</span>.<span class="pl-en">index</span>(<span class="pl-s1">level</span>)
<span class="pl-c1">777</span> <span class="pl-s1">except</span> <span class="pl-v">ValueError</span>:
<span class="pl-v">ValueError</span>: <span class="pl-s">'first'</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-s1">in</span> <span class="pl-s1">list</span>
<span class="pl-v">During</span> <span class="pl-s1">handling</span> <span class="pl-s1">of</span> <span class="pl-s1">the</span> <span class="pl-s1">above</span> <span class="pl-s1">exception</span>, <span class="pl-s1">another</span> <span class="pl-s1">exception</span> <span class="pl-s1">occurred</span>:
<span class="pl-v">KeyError</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>)
<span class="pl-c1"><</span><span class="pl-s1">ipython</span><span class="pl-c1">-</span><span class="pl-s1">input</span><span class="pl-c1">-</span><span class="pl-c1">3</span><span class="pl-c1">-</span><span class="pl-c1">1952401</span><span class="pl-s1">ac0fc</span><span class="pl-c1">></span> <span class="pl-s1">in</span> <span class="pl-c1"><</span><span class="pl-s1">module</span><span class="pl-c1">></span>()
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">1</span> <span class="pl-s1">mi</span>.<span class="pl-en">droplevel</span>((<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>))
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">base</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">droplevel</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>)
<span class="pl-c1">3177</span> <span class="pl-s1">level</span> <span class="pl-c1">=</span> [<span class="pl-s1">level</span>]
<span class="pl-c1">3178</span>
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">3179</span> <span class="pl-s1">levnums</span> <span class="pl-c1">=</span> <span class="pl-en">sorted</span>(<span class="pl-s1">self</span>.<span class="pl-en">_get_level_number</span>(<span class="pl-s1">lev</span>) <span class="pl-k">for</span> <span class="pl-s1">lev</span> <span class="pl-c1">in</span> <span class="pl-s1">level</span>)[::<span class="pl-c1">-</span><span class="pl-c1">1</span>]
<span class="pl-c1">3180</span>
<span class="pl-c1">3181</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">level</span>) <span class="pl-c1">==</span> <span class="pl-c1">0</span>:
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">base</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-c1"><</span><span class="pl-s1">genexpr</span><span class="pl-c1">></span>(<span class="pl-c1">.0</span>)
<span class="pl-c1">3177</span> <span class="pl-s1">level</span> <span class="pl-c1">=</span> [<span class="pl-s1">level</span>]
<span class="pl-c1">3178</span>
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">3179</span> <span class="pl-s1">levnums</span> <span class="pl-c1">=</span> <span class="pl-s1">sorted</span>(<span class="pl-s1">self</span>.<span class="pl-en">_get_level_number</span>(<span class="pl-s1">lev</span>) <span class="pl-k">for</span> <span class="pl-s1">lev</span> <span class="pl-c1">in</span> <span class="pl-s1">level</span>)[::<span class="pl-c1">-</span><span class="pl-c1">1</span>]
<span class="pl-c1">3180</span>
<span class="pl-c1">3181</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">level</span>) <span class="pl-c1">==</span> <span class="pl-c1">0</span>:
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">multi</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_get_level_number</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>)
<span class="pl-c1">777</span> <span class="pl-s1">except</span> <span class="pl-v">ValueError</span>:
<span class="pl-c1">778</span> <span class="pl-k">if</span> <span class="pl-c1">not</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">level</span>, <span class="pl-s1">int</span>):
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">779</span> <span class="pl-s1">raise</span> <span class="pl-v">KeyError</span>(<span class="pl-s">'Level %s not found'</span> <span class="pl-c1">%</span> <span class="pl-en">str</span>(<span class="pl-s1">level</span>))
<span class="pl-c1">780</span> <span class="pl-s1">elif</span> <span class="pl-s1">level</span> <span class="pl-c1"><</span> <span class="pl-c1">0</span>:
<span class="pl-c1">781</span> <span class="pl-s1">level</span> <span class="pl-c1">+=</span> <span class="pl-s1">self</span>.<span class="pl-s1">nlevels</span>
<span class="pl-v">KeyError</span>: <span class="pl-s">'Level first not found'</span>
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-s1">mi</span>.<span class="pl-en">droplevel</span>([(<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>)])
<span class="pl-v">Out</span>[<span class="pl-c1">4</span>]: <span class="pl-v">Int64Index</span>([<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'int64'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span>(<span class="pl-s">'second'</span>, <span class="pl-s">'level'</span>))</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">Always the same story: if we allow users to pass tuples of stuff interchangeably with lists of stuff, then tuples as values (or names, as in this case) will cause problems.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto"><code class="notranslate">Out[4]</code></p>
<p dir="auto">... as long as we all agree that the <code class="notranslate">level</code> argument can accept lists of names but not tuples of names. The only other option I see is to document that <code class="notranslate">droplevel</code> does not support tuple names (except as items of a list).</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 3.5.3.final.0<br>
python-bits: 64<br>
OS: Linux<br>
OS-release: 4.9.0-6-amd64<br>
machine: x86_64<br>
processor:<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: it_IT.UTF-8<br>
LOCALE: it_IT.UTF-8</p>
<p dir="auto">pandas: 0.24.0.dev0+14.g489cc24c8.dirty<br>
pytest: 3.5.0<br>
pip: 9.0.1<br>
setuptools: 39.0.1<br>
Cython: 0.25.2<br>
numpy: 1.14.1<br>
scipy: 0.19.0<br>
pyarrow: None<br>
xarray: None<br>
IPython: 6.2.1<br>
sphinx: 1.5.6<br>
patsy: 0.5.0<br>
dateutil: 2.7.0<br>
pytz: 2017.2<br>
blosc: None<br>
bottleneck: 1.2.0dev<br>
tables: 3.3.0<br>
numexpr: 2.6.1<br>
feather: 0.3.1<br>
matplotlib: 2.0.0<br>
openpyxl: 2.3.0<br>
xlrd: 1.0.0<br>
xlwt: 1.3.0<br>
xlsxwriter: 0.9.6<br>
lxml: 4.1.1<br>
bs4: 4.5.3<br>
html5lib: 0.999999999<br>
sqlalchemy: 1.0.15<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.10<br>
s3fs: None<br>
fastparquet: None<br>
pandas_gbq: None<br>
pandas_datareader: 0.2.1</p>
</details> | <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="In [2]: mi = pd.MultiIndex.from_product([[0, 1]]*2, names=[('first', 'level'), ('second', 'level')])
In [3]: mi.droplevel(('first', 'level'))
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
~/nobackup/repo/pandas/pandas/core/indexes/multi.py in _get_level_number(self, level)
775 'level number' % level)
--> 776 level = self.names.index(level)
777 except ValueError:
ValueError: 'first' is not in list
During handling of the above exception, another exception occurred:
KeyError Traceback (most recent call last)
<ipython-input-3-1952401ac0fc> in <module>()
----> 1 mi.droplevel(('first', 'level'))
~/nobackup/repo/pandas/pandas/core/indexes/base.py in droplevel(self, level)
3177 level = [level]
3178
-> 3179 levnums = sorted(self._get_level_number(lev) for lev in level)[::-1]
3180
3181 if len(level) == 0:
~/nobackup/repo/pandas/pandas/core/indexes/base.py in <genexpr>(.0)
3177 level = [level]
3178
-> 3179 levnums = sorted(self._get_level_number(lev) for lev in level)[::-1]
3180
3181 if len(level) == 0:
~/nobackup/repo/pandas/pandas/core/indexes/multi.py in _get_level_number(self, level)
777 except ValueError:
778 if not isinstance(level, int):
--> 779 raise KeyError('Level %s not found' % str(level))
780 elif level < 0:
781 level += self.nlevels
KeyError: 'Level first not found'
In [4]: mi.droplevel([('first', 'level')])
Out[4]: Int64Index([0, 1, 0, 1], dtype='int64', name=('second', 'level'))"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">mi</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">MultiIndex</span>.<span class="pl-en">from_product</span>([[<span class="pl-c1">0</span>, <span class="pl-c1">1</span>]]<span class="pl-c1">*</span><span class="pl-c1">2</span>, <span class="pl-s1">names</span><span class="pl-c1">=</span>[(<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>), (<span class="pl-s">'second'</span>, <span class="pl-s">'level'</span>)])
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">mi</span>.<span class="pl-en">droplevel</span>((<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>))
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span>
<span class="pl-v">ValueError</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>)
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">multi</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_get_level_number</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>)
<span class="pl-c1">775</span> <span class="pl-s">'level number'</span> <span class="pl-c1">%</span> <span class="pl-s1">level</span>)
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">776</span> <span class="pl-s1">level</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">names</span>.<span class="pl-en">index</span>(<span class="pl-s1">level</span>)
<span class="pl-c1">777</span> <span class="pl-s1">except</span> <span class="pl-v">ValueError</span>:
<span class="pl-v">ValueError</span>: <span class="pl-s">'first'</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-s1">in</span> <span class="pl-s1">list</span>
<span class="pl-v">During</span> <span class="pl-s1">handling</span> <span class="pl-s1">of</span> <span class="pl-s1">the</span> <span class="pl-s1">above</span> <span class="pl-s1">exception</span>, <span class="pl-s1">another</span> <span class="pl-s1">exception</span> <span class="pl-s1">occurred</span>:
<span class="pl-v">KeyError</span> <span class="pl-v">Traceback</span> (<span class="pl-s1">most</span> <span class="pl-s1">recent</span> <span class="pl-s1">call</span> <span class="pl-s1">last</span>)
<span class="pl-c1"><</span><span class="pl-s1">ipython</span><span class="pl-c1">-</span><span class="pl-s1">input</span><span class="pl-c1">-</span><span class="pl-c1">3</span><span class="pl-c1">-</span><span class="pl-c1">1952401</span><span class="pl-s1">ac0fc</span><span class="pl-c1">></span> <span class="pl-s1">in</span> <span class="pl-c1"><</span><span class="pl-s1">module</span><span class="pl-c1">></span>()
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">1</span> <span class="pl-s1">mi</span>.<span class="pl-en">droplevel</span>((<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>))
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">base</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">droplevel</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>)
<span class="pl-c1">3177</span> <span class="pl-s1">level</span> <span class="pl-c1">=</span> [<span class="pl-s1">level</span>]
<span class="pl-c1">3178</span>
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">3179</span> <span class="pl-s1">levnums</span> <span class="pl-c1">=</span> <span class="pl-en">sorted</span>(<span class="pl-s1">self</span>.<span class="pl-en">_get_level_number</span>(<span class="pl-s1">lev</span>) <span class="pl-k">for</span> <span class="pl-s1">lev</span> <span class="pl-c1">in</span> <span class="pl-s1">level</span>)[::<span class="pl-c1">-</span><span class="pl-c1">1</span>]
<span class="pl-c1">3180</span>
<span class="pl-c1">3181</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">level</span>) <span class="pl-c1">==</span> <span class="pl-c1">0</span>:
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">base</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-c1"><</span><span class="pl-s1">genexpr</span><span class="pl-c1">></span>(<span class="pl-c1">.0</span>)
<span class="pl-c1">3177</span> <span class="pl-s1">level</span> <span class="pl-c1">=</span> [<span class="pl-s1">level</span>]
<span class="pl-c1">3178</span>
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">3179</span> <span class="pl-s1">levnums</span> <span class="pl-c1">=</span> <span class="pl-s1">sorted</span>(<span class="pl-s1">self</span>.<span class="pl-en">_get_level_number</span>(<span class="pl-s1">lev</span>) <span class="pl-k">for</span> <span class="pl-s1">lev</span> <span class="pl-c1">in</span> <span class="pl-s1">level</span>)[::<span class="pl-c1">-</span><span class="pl-c1">1</span>]
<span class="pl-c1">3180</span>
<span class="pl-c1">3181</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">level</span>) <span class="pl-c1">==</span> <span class="pl-c1">0</span>:
<span class="pl-c1">~</span><span class="pl-c1">/</span><span class="pl-s1">nobackup</span><span class="pl-c1">/</span><span class="pl-s1">repo</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">core</span><span class="pl-c1">/</span><span class="pl-s1">indexes</span><span class="pl-c1">/</span><span class="pl-s1">multi</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_get_level_number</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>)
<span class="pl-c1">777</span> <span class="pl-s1">except</span> <span class="pl-v">ValueError</span>:
<span class="pl-c1">778</span> <span class="pl-k">if</span> <span class="pl-c1">not</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">level</span>, <span class="pl-s1">int</span>):
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">779</span> <span class="pl-s1">raise</span> <span class="pl-v">KeyError</span>(<span class="pl-s">'Level %s not found'</span> <span class="pl-c1">%</span> <span class="pl-en">str</span>(<span class="pl-s1">level</span>))
<span class="pl-c1">780</span> <span class="pl-s1">elif</span> <span class="pl-s1">level</span> <span class="pl-c1"><</span> <span class="pl-c1">0</span>:
<span class="pl-c1">781</span> <span class="pl-s1">level</span> <span class="pl-c1">+=</span> <span class="pl-s1">self</span>.<span class="pl-s1">nlevels</span>
<span class="pl-v">KeyError</span>: <span class="pl-s">'Level first not found'</span>
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-s1">mi</span>.<span class="pl-en">droplevel</span>([(<span class="pl-s">'first'</span>, <span class="pl-s">'level'</span>)])
<span class="pl-v">Out</span>[<span class="pl-c1">4</span>]: <span class="pl-v">Int64Index</span>([<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">0</span>, <span class="pl-c1">1</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s">'int64'</span>, <span class="pl-s1">name</span><span class="pl-c1">=</span>(<span class="pl-s">'second'</span>, <span class="pl-s">'level'</span>))</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">Always the same story: if we allow users to pass tuples of stuff interchangeably with lists of stuff, then tuples as values (or names, as in this case) will cause problems.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto"><code class="notranslate">Out[4]</code></p>
<p dir="auto">... as long as we all agree that the <code class="notranslate">level</code> argument can accept lists of names but not tuples of names. The only other option I see is to document that <code class="notranslate">droplevel</code> does not support tuple names (except as items of a list).</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 3.5.3.final.0<br>
python-bits: 64<br>
OS: Linux<br>
OS-release: 4.9.0-6-amd64<br>
machine: x86_64<br>
processor:<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: it_IT.UTF-8<br>
LOCALE: it_IT.UTF-8</p>
<p dir="auto">pandas: 0.24.0.dev0+14.g489cc24c8.dirty<br>
pytest: 3.5.0<br>
pip: 9.0.1<br>
setuptools: 39.0.1<br>
Cython: 0.25.2<br>
numpy: 1.14.1<br>
scipy: 0.19.0<br>
pyarrow: None<br>
xarray: None<br>
IPython: 6.2.1<br>
sphinx: 1.5.6<br>
patsy: 0.5.0<br>
dateutil: 2.7.0<br>
pytz: 2017.2<br>
blosc: None<br>
bottleneck: 1.2.0dev<br>
tables: 3.3.0<br>
numexpr: 2.6.1<br>
feather: 0.3.1<br>
matplotlib: 2.0.0<br>
openpyxl: 2.3.0<br>
xlrd: 1.0.0<br>
xlwt: 1.3.0<br>
xlsxwriter: 0.9.6<br>
lxml: 4.1.1<br>
bs4: 4.5.3<br>
html5lib: 0.999999999<br>
sqlalchemy: 1.0.15<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.10<br>
s3fs: None<br>
fastparquet: None<br>
pandas_gbq: None<br>
pandas_datareader: 0.2.1</p>
</details> | 1 |
<h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">I cannot import matplotlib.animation (see error message below). Importing matplotlib.pyplot works fine and I can create plots with it after the import.</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as anim"><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-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">animation</span> <span class="pl-k">as</span> <span class="pl-s1">anim</span></pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(base) davidpine@eng-dp82-001 Desktop % python junk.py
Traceback (most recent call last):
File "junk.py", line 3, in <module>
import matplotlib.animation as anim
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 737, in <module>
class ImageMagickWriter(ImageMagickBase, MovieWriter):
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 120, in wrapper
if writerClass.isAvailable():
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 730, in isAvailable
return super().isAvailable()
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 427, in isAvailable
return shutil.which(cls.bin_path()) is not None
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 724, in bin_path
binpath = mpl._get_executable_info('magick').executable
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/__init__.py", line 384, in _get_executable_info
return impl([path, "--version"], r"^Version: ImageMagick (\S*)")
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/__init__.py", line 324, in impl
args, stderr=subprocess.STDOUT, universal_newlines=True)
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 395, in check_output
**kwargs).stdout
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 472, in run
with Popen(*popenargs, **kwargs) as process:
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 775, in __init__
restore_signals, start_new_session)
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 1522, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 86] Bad CPU type in executable: 'convert'
#
#"><pre class="notranslate"><code class="notranslate">(base) davidpine@eng-dp82-001 Desktop % python junk.py
Traceback (most recent call last):
File "junk.py", line 3, in <module>
import matplotlib.animation as anim
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 737, in <module>
class ImageMagickWriter(ImageMagickBase, MovieWriter):
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 120, in wrapper
if writerClass.isAvailable():
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 730, in isAvailable
return super().isAvailable()
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 427, in isAvailable
return shutil.which(cls.bin_path()) is not None
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/animation.py", line 724, in bin_path
binpath = mpl._get_executable_info('magick').executable
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/__init__.py", line 384, in _get_executable_info
return impl([path, "--version"], r"^Version: ImageMagick (\S*)")
File "/Users/davidpine/opt/anaconda3/lib/python3.7/site-packages/matplotlib/__init__.py", line 324, in impl
args, stderr=subprocess.STDOUT, universal_newlines=True)
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 395, in check_output
**kwargs).stdout
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 472, in run
with Popen(*popenargs, **kwargs) as process:
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 775, in __init__
restore_signals, start_new_session)
File "/Users/davidpine/opt/anaconda3/lib/python3.7/subprocess.py", line 1522, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 86] Bad CPU type in executable: 'convert'
#
#
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: macos Catalina 10.15.1</li>
<li>Matplotlib version: 3.1.1</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): MacOSX, Qt5Agg</li>
<li>Python version: 3.7.4</li>
<li>Jupyter version (if applicable):</li>
<li>Other libraries:</li>
</ul> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">import matplotlib.animation as animation crashes with error on macOS Catalina:</p>
<p dir="auto">OSError: [Errno 86] Bad CPU type in executable: 'convert'</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.animation as animation"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">animation</span> <span class="pl-k">as</span> <span class="pl-s1">animation</span></pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(python36) d-i184-9-160:~ alina$ python
Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 13:42:17)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib.animation as animation
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 737, in <module>
class ImageMagickWriter(ImageMagickBase, MovieWriter):
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 120, in wrapper
if writerClass.isAvailable():
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 730, in isAvailable
return super().isAvailable()
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 427, in isAvailable
return shutil.which(cls.bin_path()) is not None
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 724, in bin_path
binpath = mpl._get_executable_info('magick').executable
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/__init__.py", line 384, in _get_executable_info
return impl([path, "--version"], r"^Version: ImageMagick (\S*)")
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/__init__.py", line 324, in impl
args, stderr=subprocess.STDOUT, universal_newlines=True)
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 356, in check_output
**kwargs).stdout
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 423, in run
with Popen(*popenargs, **kwargs) as process:
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 729, in __init__
restore_signals, start_new_session)
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 1364, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 86] Bad CPU type in executable: 'convert'"><pre class="notranslate"><code class="notranslate">(python36) d-i184-9-160:~ alina$ python
Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 13:42:17)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib.animation as animation
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 737, in <module>
class ImageMagickWriter(ImageMagickBase, MovieWriter):
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 120, in wrapper
if writerClass.isAvailable():
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 730, in isAvailable
return super().isAvailable()
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 427, in isAvailable
return shutil.which(cls.bin_path()) is not None
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/animation.py", line 724, in bin_path
binpath = mpl._get_executable_info('magick').executable
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/__init__.py", line 384, in _get_executable_info
return impl([path, "--version"], r"^Version: ImageMagick (\S*)")
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/site-packages/matplotlib/__init__.py", line 324, in impl
args, stderr=subprocess.STDOUT, universal_newlines=True)
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 356, in check_output
**kwargs).stdout
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 423, in run
with Popen(*popenargs, **kwargs) as process:
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 729, in __init__
restore_signals, start_new_session)
File "/Users/alina/anaconda3/envs/python36/lib/python3.6/subprocess.py", line 1364, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
OSError: [Errno 86] Bad CPU type in executable: 'convert'
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong><br>
Expect to load library with no error.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: Latest Mac version (likely the culprit) -- MacOS Catalina V10.15</li>
<li>Matplotlib version: 3.1.1</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): MacOSX</li>
<li>Python version: Python 3.7.3 & Python 3.6.9 :: Anaconda, Inc.</li>
<li>Jupyter version (if applicable): N/A</li>
<li>Other libraries:</li>
</ul>
<p dir="auto">Matplotlib was installed using conda default channel</p> | 1 |
<p dir="auto">Hi, I've been using Electron for a few months, but autoupdate started returning an error after <code class="notranslate">0.33.4</code>. I've been using the same endpoint hosted by Github.</p>
<h2 dir="auto">Error message</h2>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="2015-11-18 22:31:12.249 Electron[71075:3518387] NSURLSession/NSURLConnection
HTTP load failed (kCFStreamErrorDomainSSL, -9802)
[DeskDrive] Uncaught exception: Error: An SSL error has occurred and a secure
connection to the server cannot be made.: (null) Error: An SSL error has occurred
and a secure connection to the server cannot be made.: (null)
at Error (native)
^C"><pre class="notranslate">2015-11-18 22:31:12.249 Electron[71075:3518387] NSURLSession/NSURLConnection
HTTP load failed (kCFStreamErrorDomainSSL, -9802)
[DeskDrive] Uncaught exception: Error: An SSL error has occurred and a secure
connection to the server cannot be made.: (null) Error: An SSL error has occurred
and a secure connection to the server cannot be made.: (null)
at Error (native)
^C</pre></div>
<p dir="auto">(<em>DeskDrive</em> is the name of the app I'm working on.)</p>
<h2 dir="auto">Repro Code</h2>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const autoUpdater = require('auto-updater');
autoUpdater.setFeedURL('https://raw.githubusercontent.com/dylang/DeskDrive-releases/master/auto_updater.json');
autoUpdater.checkForUpdates();"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">autoUpdater</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'auto-updater'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">setFeedURL</span><span class="pl-kos">(</span><span class="pl-s">'https://raw.githubusercontent.com/dylang/DeskDrive-releases/master/auto_updater.json'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">checkForUpdates</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Note:</strong> App must be built <em>and signed</em> for <code class="notranslate">autoUpdater</code> to show this error.</p>
<h2 dir="auto">Versions</h2>
<ul dir="auto">
<li>Was working in 0.33.4, but has been failing in every build up to 0.35</li>
<li>Testing in OS X 11.1 (El Capitan)</li>
<li>Tested with and without firewall/proxy/etc.</li>
</ul> | <p dir="auto">Minimal repro here: <a href="https://gist.github.com/mkscrg/d56227f2b6a3a430a17d">https://gist.github.com/mkscrg/d56227f2b6a3a430a17d</a></p>
<p dir="auto"><code class="notranslate">auto-updater</code> fails immediately after the <code class="notranslate">update-available</code> with this error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2015-11-14 18:45:14.807 Electron[2750:121917] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
auto-updater error: An SSL error has occurred and a secure connection to the server cannot be made.: (null)"><pre class="notranslate"><code class="notranslate">2015-11-14 18:45:14.807 Electron[2750:121917] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
auto-updater error: An SSL error has occurred and a secure connection to the server cannot be made.: (null)
</code></pre></div>
<p dir="auto">In my limited tests, I could hit this issue with <strong>Electron >= 0.34.2 && OS X >= 10.11</strong>. Dropping to 0.34.1 and/or 10.10 seemed to avoid it.</p> | 1 |
<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>
<p dir="auto">Any help would be appreciated, thank you!</p>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>9.1.0</li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows NT 10.0.17763 1339</li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>N/A</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Not to crash :)</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The renderer process is crashing on start for some of the app users</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">This issue was observed on users machines and we haven't been able to get a local repro</p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">Raw stack trace:<br>
content::RenderProcessHostImpl::RenderProcessHostImpl(content::BrowserContext *,content::StoragePartitionImpl *,bool) [render_process_host_impl.cc]<br>
Crash reason: EXCEPTION_BREAKPOINT<br>
Crash thread: 0<br>
Crash address: 0x7ff69f1dd93c</p>
<p dir="auto">Operating system: Windows NT<br>
10.0.17763 1339<br>
CPU: amd64 family 6 model 142 stepping 10<br>
4 CPUs</p>
<p dir="auto">Thread 0<br>
0 content::RenderProcessHostImpl::RenderProcessHostImpl(content::BrowserContext *,content::StoragePartitionImpl *,bool) App.exe [render_process_host_impl.cc : 1574 + 0]<br>
1 content::RenderProcessHostImpl::GetProcessHostForSiteInstance(content::SiteInstanceImpl *) App.exe [render_process_host_impl.cc : 4392 + 0xd]<br>
2 content::SiteInstanceImpl::GetProcess() App.exe [site_instance_impl.cc : 296 + 0x8]<br>
3 content::RenderFrameHostManager::CreateRenderFrameHost(content::RenderFrameHostManager::CreateFrameCase::__1,content::SiteInstance *,int,bool) App.exe [render_frame_host_manager.cc : 2072 + 0x9]<br>
4 content::RenderFrameHostManager::InitRoot(content::SiteInstance *,bool) App.exe [render_frame_host_manager.cc : 290 + 0x1a]<br>
5 content::WebContentsImpl::Init(content::WebContents::CreateParams const &) App.exe [web_contents_impl.cc : 2064 + 0xd]<br>
6 content::WebContentsImpl::CreateWithOpener(content::WebContents::CreateParams const &,content::RenderFrameHostImpl *) App.exe [web_contents_impl.cc : 812 + 0xf]<br>
7 content::WebContentsImpl::Create(content::WebContents::CreateParams const &) App.exe [web_contents_impl.cc : 318 + 0xb]<br>
8 content::WebContents::Create(content::WebContents::CreateParams const &) App.exe [web_contents_impl.cc : 313 + 0x8]<br>
9 electron::api::WebContents::WebContents(v8::Isolate *,gin_helper::Dictionary const &) App.exe [electron_api_web_contents.cc : 512 + 0xb]<br>
10 electron::api::WebContents::Create(v8::Isolate *,gin_helper::Dictionary const &) App.exe [electron_api_web_contents.cc : 2829 + 0x1b]<br>
11 electron::api::BrowserWindow::BrowserWindow(gin::Arguments *,gin_helper::Dictionary const &) App.exe [electron_api_browser_window.cc : 77 + 0x18]<br>
12 electron::api::BrowserWindow::New(gin_helper::ErrorThrower,gin::Arguments *) App.exe [electron_api_browser_window.cc : 465 + 0x20]<br>
13 void gin_helper::internal::InvokeNew<gin_helper::WrappableBase *(gin_helper::ErrorThrower, gin::Arguments *)>(const class base::RepeatingCallback<gin_helper::WrappableBase *(gin_helper::ErrorThrower, gin::Arguments *)> & const, class v8::Isolate *, class gin_helper::Arguments *) App.exe [constructor.h : 132 + 0x3d]<br>
14 void gin_helper::Invoker<gin_helper::IndicesHolder<0,1>,electron::api::AutoUpdater *,gin_helper::Arguments *>::DispatchToCallback(class base::RepeatingCallback<void (electron::api::AutoUpdater *, gin_helper::Arguments *)>) App.exe [function_template.h : 228 + 0xd]<br>
15 static void gin_helper::Dispatcher<void (v8::Isolate *, gin_helper::Arguments *)>::DispatchToCallback(const class v8::FunctionCallbackInfov8::Value & const) App.exe [function_template.h : 262 + 0x8]<br>
16 v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) App.exe [api-arguments-inl.h : 158 + 0x6]<br>
17 static class v8::internal::MaybeHandlev8::internal::Object v8::internal::`anonymous namespace'::HandleApiCallHelper<1>(class v8::internal::Isolate *, class v8::internal::Handlev8::internal::HeapObject, class v8::internal::Handlev8::internal::HeapObject, class v8::internal::Handlev8::internal::FunctionTemplateInfo, class v8::internal::Handlev8::internal::Object, class v8::internal::BuiltinArguments) App.exe [builtins-api.cc : 111 + 0xb]<br>
18 static class v8::internal::Object v8::internal::Builtin_Impl_HandleApiCall(class v8::internal::BuiltinArguments, class v8::internal::Isolate *) App.exe [builtins-api.cc : 137 + 0x28]<br>
19 v8::internal::Builtin_HandleApiCall(int,unsigned __int64 *,v8::internal::Isolate *) App.exe [builtins-api.cc : 129 + 0x1c]<br>
20 Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit App.exe + 0x3c<br>
21 App.exe + 0xfec480<br>
22 Builtins_JSBuiltinsConstructStub App.exe + 0x65<br>
23 + 0x2dd083486f9<br>
24 Builtins_ConstructHandler App.exe + 0xbf</p>
<p dir="auto">Thread 0<br>
0 content::RenderProcessHostImpl::RenderProcessHostImpl(content::BrowserContext *,content::StoragePartitionImpl *,bool) App.exe [render_process_host_impl.cc : 1574 + 0]<br>
rax=7ff6a3d59c01 rdx=0 rcx=7ff6a3d59cd0 rbx=64531cc280 rsi=17062a4b9e0 rdi=170625862a0 rbp=0 rsp=64531cc230 r8=17062586360 r9=17062a6ad80 r10=ffffffff r11=0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f1dd93c<br>
Found by: given as instruction pointer in context<br>
1 content::RenderProcessHostImpl::GetProcessHostForSiteInstance(content::SiteInstanceImpl *) App.exe [render_process_host_impl.cc : 4392 + 0xd]<br>
rbx=64531cc280 rbp=0 rsp=64531cc330 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f1e96c7<br>
Found by: call frame info<br>
2 content::SiteInstanceImpl::GetProcess() App.exe [site_instance_impl.cc : 296 + 0x8]<br>
rbx=64531cc280 rbp=0 rsp=64531cc540 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f299cac<br>
Found by: call frame info<br>
3 content::RenderFrameHostManager::CreateRenderFrameHost(content::RenderFrameHostManager::CreateFrameCase::__1,content::SiteInstance *,int,bool) App.exe [render_frame_host_manager.cc : 2072 + 0x9]<br>
rbx=64531cc280 rbp=0 rsp=64531cc570 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f083d8a<br>
Found by: call frame info<br>
4 content::RenderFrameHostManager::InitRoot(content::SiteInstance *,bool) App.exe [render_frame_host_manager.cc : 290 + 0x1a]<br>
rbx=64531cc280 rbp=0 rsp=64531cc610 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f083d06<br>
Found by: call frame info<br>
5 content::WebContentsImpl::Init(content::WebContents::CreateParams const &) App.exe [web_contents_impl.cc : 2064 + 0xd]<br>
rbx=64531cc280 rbp=0 rsp=64531cc680 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f2d52ad<br>
Found by: call frame info<br>
6 content::WebContentsImpl::CreateWithOpener(content::WebContents::CreateParams const &,content::RenderFrameHostImpl *) App.exe [web_contents_impl.cc : 812 + 0xf]<br>
rbx=64531cc280 rbp=0 rsp=64531cc710 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f2cd331<br>
Found by: call frame info<br>
7 content::WebContentsImpl::Create(content::WebContents::CreateParams const &) App.exe [web_contents_impl.cc : 318 + 0xb]<br>
rbx=64531cc280 rbp=0 rsp=64531cc8a0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f2cd155<br>
Found by: call frame info<br>
8 content::WebContents::Create(content::WebContents::CreateParams const &) App.exe [web_contents_impl.cc : 313 + 0x8]<br>
rbx=64531cc280 rbp=0 rsp=64531cc8e0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69f2cd109<br>
Found by: call frame info<br>
9 electron::api::WebContents::WebContents(v8::Isolate *,gin_helper::Dictionary const &) App.exe [electron_api_web_contents.cc : 512 + 0xb]<br>
rbx=64531cc280 rbp=0 rsp=64531cc930 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d7fcbe3<br>
Found by: call frame info<br>
10 electron::api::WebContents::Create(v8::Isolate *,gin_helper::Dictionary const &) App.exe [electron_api_web_contents.cc : 2829 + 0x1b]<br>
rbx=64531cc280 rbp=0 rsp=64531ccb10 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d80b97c<br>
Found by: call frame info<br>
11 electron::api::BrowserWindow::BrowserWindow(gin::Arguments *,gin_helper::Dictionary const &) App.exe [electron_api_browser_window.cc : 77 + 0x18]<br>
rbx=64531cc280 rbp=0 rsp=64531ccb70 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d7a670f<br>
Found by: call frame info<br>
12 electron::api::BrowserWindow::New(gin_helper::ErrorThrower,gin::Arguments *) App.exe [electron_api_browser_window.cc : 465 + 0x20]<br>
rbx=64531cc280 rbp=0 rsp=64531ccc80 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d7a81af<br>
Found by: call frame info<br>
13 void gin_helper::internal::InvokeNew<gin_helper::WrappableBase *(gin_helper::ErrorThrower, gin::Arguments *)>(const class base::RepeatingCallback<gin_helper::WrappableBase *(gin_helper::ErrorThrower, gin::Arguments *)> & const, class v8::Isolate *, class gin_helper::Arguments *) App.exe [constructor.h : 132 + 0x3d]<br>
rbx=64531cc280 rbp=0 rsp=64531ccd10 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d7a3958<br>
Found by: call frame info<br>
14 void gin_helper::Invoker<gin_helper::IndicesHolder<0,1>,electron::api::AutoUpdater *,gin_helper::Arguments *>::DispatchToCallback(class base::RepeatingCallback<void (electron::api::AutoUpdater *, gin_helper::Arguments *)>) App.exe [function_template.h : 228 + 0xd]<br>
rbx=64531cc280 rbp=0 rsp=64531ccdc0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d7a2238<br>
Found by: call frame info<br>
15 static void gin_helper::Dispatcher<void (v8::Isolate *, gin_helper::Arguments *)>::DispatchToCallback(const class v8::FunctionCallbackInfov8::Value & const) App.exe [function_template.h : 262 + 0x8]<br>
rbx=64531cc280 rbp=0 rsp=64531cce10 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69d7a3a95<br>
Found by: call frame info<br>
16 v8::internal::FunctionCallbackArguments::Call(v8::internal::CallHandlerInfo) App.exe [api-arguments-inl.h : 158 + 0x6]<br>
rbx=64531cc280 rbp=0 rsp=64531cceb0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69e339dcb<br>
Found by: call frame info<br>
17 static class v8::internal::MaybeHandlev8::internal::Object v8::internal::`anonymous namespace'::HandleApiCallHelper<1>(class v8::internal::Isolate *, class v8::internal::Handlev8::internal::HeapObject, class v8::internal::Handlev8::internal::HeapObject, class v8::internal::Handlev8::internal::FunctionTemplateInfo, class v8::internal::Handlev8::internal::Object, class v8::internal::BuiltinArguments) App.exe [builtins-api.cc : 111 + 0xb]<br>
rbx=64531cc280 rbp=0 rsp=64531ccfe0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69e338e6a<br>
Found by: call frame info<br>
18 static class v8::internal::Object v8::internal::Builtin_Impl_HandleApiCall(class v8::internal::BuiltinArguments, class v8::internal::Isolate *) App.exe [builtins-api.cc : 137 + 0x28]<br>
rbx=64531cc280 rbp=0 rsp=64531cd0e0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69e338784<br>
Found by: call frame info<br>
19 v8::internal::Builtin_HandleApiCall(int,unsigned __int64 *,v8::internal::Isolate *) App.exe [builtins-api.cc : 129 + 0x1c]<br>
rbx=64531cc280 rbp=0 rsp=64531cd1b0 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69e3383d7<br>
Found by: call frame info<br>
20 Builtins_CEntry_Return1_DontSaveFPRegs_ArgvOnStack_BuiltinExit App.exe + 0x3c<br>
rbx=64531cc280 rbp=0 rsp=64531cd210 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69ec7cb9c<br>
Found by: call frame info<br>
21 App.exe + 0xfec480<br>
rbx=64531cc280 rbp=0 rsp=64531cd220 r12=17062a4ba40 r13=1 r14=17062571040 r15=17062a4ba20 rip=7ff69e76c480<br>
Found by: call frame info<br>
22 Builtins_JSBuiltinsConstructStub App.exe + 0x65<br>
rsp=64531cd260 rip=7ff69ec0b9a5<br>
Found by: stack scanning<br>
23 + 0x2dd083486f9<br>
rsp=64531cd270 rip=2dd083486f9<br>
Found by: call frame info<br>
24 Builtins_ConstructHandler App.exe + 0xbf<br>
rsp=64531cd2b8 rip=7ff69ecffc1f<br>
Found by: stack scanning</p>
<p dir="auto">Thread 1<br>
0 ntdll.dll + 0xa30d4<br>
rax=1cc rdx=1705f20a000 rcx=58 rbx=1705f20a000 rsi=0 rdi=10 rbp=0 rsp=64534ff7a8 r8=30 r9=30 r10=1 r11=1 r12=0 r13=1705f2053f0 r14=0 r15=0 rip=7ff8337430d4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x50204<br>
rsp=64534ff7b0 rip=7ff8336f0204<br>
Found by: stack scanning</p>
<p dir="auto">Thread 2<br>
0 ntdll.dll + 0xa30d4<br>
rax=1cc rdx=1705f20cca0 rcx=58 rbx=1705f20cca0 rsi=0 rdi=10 rbp=0 rsp=64535ff748 r8=30 r9=30 r10=1 r11=1 r12=0 r13=1705f2053f0 r14=0 r15=0 rip=7ff8337430d4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x50204<br>
rsp=64535ff750 rip=7ff8336f0204<br>
Found by: stack scanning</p>
<p dir="auto">Thread 3<br>
0 ntdll.dll + 0xa30d4<br>
rax=1cc rdx=1705f20e730 rcx=58 rbx=1705f20e730 rsi=0 rdi=10 rbp=0 rsp=64536ff9d8 r8=0 r9=59 r10=59 r11=80 r12=0 r13=1705f2053f0 r14=0 r15=0 rip=7ff8337430d4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x50204<br>
rsp=64536ff9e0 rip=7ff8336f0204<br>
Found by: stack scanning</p>
<p dir="auto">Thread 4<br>
0 ntdll.dll + 0x9f884<br>
rax=9 rdx=64537ff7b0 rcx=304 rbx=64537ff7a8 rsi=17062a30600 rdi=64537ff7bc rbp=304 rsp=64537ff6c8 r8=17062a30610 r9=17062a30610 r10=0 r11=246 r12=64537ff7d8 r13=64537ff7c0 r14=0 r15=7ff8320cf4a0 rip=7ff83373f884<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x1bc23<br>
rsp=64537ff6d0 rip=7ff82f76bc23<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x38cbb<br>
rsp=64537ff700 rip=7ff82f788cbb<br>
Found by: stack scanning<br>
3 sandbox::BrokerServicesBase::TargetEventsThread(void *) App.exe [broker_services.cc : 236 + 0x26]<br>
rsp=64537ff730 rip=7ff6a04df917<br>
Found by: stack scanning<br>
4 KERNEL32.DLL + 0x17974<br>
rsp=64537ff880 rip=7ff8320d7974<br>
Found by: call frame info<br>
5 ntdll.dll + 0x6a271<br>
rsp=64537ff8b0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 5<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=3e4 rbx=0 rsi=64538ff328 rdi=3e4 rbp=7fffffffffffffff rsp=64538ff2f8 r8=17062a24050 r9=1 r10=ff r11=6000 r12=64538ff3c8 r13=0 r14=3e4 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=7fffffffffffffff rsp=64538ff300 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::sequence_manager::internal::SequenceManagerImpl::MaybeReclaimMemory() App.exe [sequence_manager_impl.cc : 962 + 0xd]<br>
rbp=7fffffffffffffff rsp=64538ff310 rip=7ff69f8d5eac<br>
Found by: stack scanning<br>
3 base::WaitableEvent::TimedWait(base::TimeDelta const &) App.exe [waitable_event_win.cc : 107 + 0x2]<br>
rbp=7fffffffffffffff rsp=64538ff3a0 rip=7ff69f910ac0<br>
Found by: call frame info<br>
4 base::MessagePumpDefault::Run(base::MessagePump::Delegate *) App.exe [message_pump_default.cc : 57 + 0xb]<br>
rbp=7fffffffffffffff rsp=64538ff490 rip=7ff6a0085ffe<br>
Found by: call frame info<br>
5 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]<br>
rbp=7fffffffffffffff rsp=64538ff510 rip=7ff6a00944e8<br>
Found by: call frame info<br>
6 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]<br>
rbp=7fffffffffffffff rsp=64538ff570 rip=7ff69f8bbbba<br>
Found by: call frame info<br>
7 base::internal::ServiceThread::Run(base::RunLoop *) App.exe [service_thread.cc : 61 + 0x5]<br>
rbp=7fffffffffffffff rsp=64538ff610 rip=7ff6a0cb4270<br>
Found by: call frame info<br>
8 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]<br>
rbp=7fffffffffffffff rsp=64538ff650 rip=7ff69f8e21a6<br>
Found by: call frame info<br>
9 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rbp=7fffffffffffffff rsp=64538ff6d0 rip=7ff69f9113bd<br>
Found by: call frame info<br>
10 KERNEL32.DLL + 0x17974<br>
rbp=7fffffffffffffff rsp=64538ff750 rip=7ff8320d7974<br>
Found by: call frame info<br>
11 ntdll.dll + 0x6a271<br>
rbp=7fffffffffffffff rsp=64538ff780 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 6<br>
0 ntdll.dll + 0x9fde4<br>
rax=34 rdx=64539fe970 rcx=0 rbx=0 rsi=0 rdi=a rbp=fffffffe rsp=64539fe948 r8=0 r9=43 r10=546c6148 r11=630ff1b2947 r12=64539feb40 r13=64539fec58 r14=64539fec88 r15=64539fec58 rip=7ff83373fde4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x39ca1<br>
rsp=64539fe950 rip=7ff82f789ca1<br>
Found by: stack scanning<br>
2 ntdll.dll + 0x126b4<br>
rsp=64539fe970 rip=7ff8336b26b4<br>
Found by: stack scanning<br>
3 static class base::TimeTicks base::`anonymous namespace'::QPCNow() App.exe [time_win.cc : 562 + 0x6c]<br>
rsp=64539fe980 rip=7ff69f91db53<br>
Found by: stack scanning</p>
<p dir="auto">Thread 7<br>
0 mscms.dll + 0x1b40c<br>
rax=0 rdx=1 rcx=1 rbx=0 rsi=0 rdi=ffffffff rbp=6453afde10 rsp=6453afdcc8 r8=6453afdd90 r9=0 r10=fff0198b0dd r11=20000000 r12=6453afe820 r13=6d6e7472 r14=7ff82fa57de0 r15=6453afe110 rip=7ff80cc5b40c<br>
Found by: given as instruction pointer in context<br>
1 mscms.dll + 0x18719<br>
rbp=6453afde10 rsp=6453afdcd0 rip=7ff80cc58719<br>
Found by: stack scanning<br>
2 gdi32full.dll + 0x67b0a<br>
rbp=6453afde10 rsp=6453afdd10 rip=7ff82fa57b0a<br>
Found by: stack scanning<br>
3 gdi32full.dll + 0x67de0<br>
rbp=6453afde10 rsp=6453afdd68 rip=7ff82fa57de0<br>
Found by: stack scanning<br>
4 ntdll.dll + 0x12b25<br>
rbp=6453afde10 rsp=6453afde00 rip=7ff8336b2b25<br>
Found by: stack scanning<br>
5 ntdll.dll + 0xedfa<br>
rsp=6453afdec0 rip=7ff8336aedfa<br>
Found by: stack scanning<br>
6 ntdll.dll + 0x35e32<br>
rsp=6453afdf20 rip=7ff8336d5e32<br>
Found by: stack scanning<br>
7 ntdll.dll + 0x37cf4<br>
rsp=6453afdf80 rip=7ff8336d7cf4<br>
Found by: stack scanning<br>
8 ntdll.dll + 0x137a8<br>
rsp=6453afe000 rip=7ff8336b37a8<br>
Found by: stack scanning<br>
9 ntdll.dll + 0x12b25<br>
rsp=6453afe030 rip=7ff8336b2b25<br>
Found by: stack scanning<br>
10 __crt_stdio_output::output_processor<wchar_t,__crt_stdio_output::string_output_adapter<wchar_t>,__crt_stdio_output::standard_base<wchar_t,__crt_stdio_output::string_output_adapter<wchar_t> > >::state_case_type() ucrtbase.dll + 0x1df<br>
rsp=6453afe050 rip=7ff8306bb9cf<br>
Found by: stack scanning<br>
11 common_vsprintf<__crt_stdio_output::standard_base,wchar_t> ucrtbase.dll + 0x3a1<br>
rsp=6453afe0f0 rip=7ff8306bb4d1<br>
Found by: call frame info</p>
<p dir="auto">Thread 8<br>
0 ntdll.dll + 0x9f884<br>
rax=9 rdx=6453bff4a0 rcx=414 rbx=6453bff498 rsi=17061166fe0 rdi=6453bff490 rbp=1 rsp=6453bff3e8 r8=7ff69f3b269b r9=17062a02110 r10=546c6148 r11=1706110f8b8 r12=6453bff508 r13=0 r14=6453bff500 r15=7fffffffffffffff rip=7ff83373f884<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x1bc23<br>
rsp=6453bff3f0 rip=7ff82f76bc23<br>
Found by: stack scanning<br>
2 base::sequence_manager::internal::SequenceManagerImpl::HasPendingHighResolutionTasks() App.exe [sequence_manager_impl.cc : 698 + 0x5]<br>
rsp=6453bff400 rip=7ff69f8d5cd1<br>
Found by: stack scanning<br>
3 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() App.exe [thread_controller_with_message_pump_impl.cc : 399 + 0xd]<br>
rsp=6453bff440 rip=7ff6a00943ba<br>
Found by: call frame info<br>
4 base::MessagePumpForIO::DoRunLoop() App.exe [message_pump_win.cc : 643 + 0x3d]<br>
rsp=6453bff4d0 rip=7ff69f90d0f4<br>
Found by: call frame info<br>
5 base::MessagePumpWin::Run(base::MessagePump::Delegate *) App.exe [message_pump_win.cc : 74 + 0x9]<br>
rsp=6453bff550 rip=7ff69f90b88e<br>
Found by: call frame info<br>
6 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]<br>
rsp=6453bff5a0 rip=7ff6a00944e8<br>
Found by: call frame info<br>
7 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]<br>
rsp=6453bff600 rip=7ff69f8bbbba<br>
Found by: call frame info<br>
8 content::BrowserProcessSubThread::IOThreadRun(base::RunLoop *) App.exe [browser_process_sub_thread.cc : 144 + 0xb]<br>
rsp=6453bff6a0 rip=7ff69ef5497b<br>
Found by: call frame info<br>
9 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]<br>
rsp=6453bff700 rip=7ff69f8e21a6<br>
Found by: call frame info<br>
10 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rsp=6453bff780 rip=7ff69f9113bd<br>
Found by: call frame info<br>
11 KERNEL32.DLL + 0x17974<br>
rsp=6453bff800 rip=7ff8320d7974<br>
Found by: call frame info<br>
12 ntdll.dll + 0x6a271<br>
rsp=6453bff830 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 9<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=424 rbx=0 rsi=0 rdi=424 rbp=7fffffffffffffff rsp=6453cff778 r8=0 r9=6453cfe070 r10=fd75775f3d5df4f7 r11=170611f7030 r12=1 r13=0 r14=424 r15=6453cff900 rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=7fffffffffffffff rsp=6453cff780 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::WaitableEvent::Wait() App.exe [waitable_event_win.cc : 69 + 0xb]<br>
rbp=7fffffffffffffff rsp=6453cff820 rip=7ff69f9108ed<br>
Found by: stack scanning<br>
3 base::MessagePumpDefault::Run(base::MessagePump::Delegate *) App.exe [message_pump_default.cc : 55 + 0x8]<br>
rbp=7fffffffffffffff rsp=6453cff8e0 rip=7ff6a008603f<br>
Found by: call frame info<br>
4 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]<br>
rbp=7fffffffffffffff rsp=6453cff960 rip=7ff6a00944e8<br>
Found by: call frame info<br>
5 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]<br>
rbp=7fffffffffffffff rsp=6453cff9c0 rip=7ff69f8bbbba<br>
Found by: call frame info<br>
6 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]<br>
rbp=7fffffffffffffff rsp=6453cffa60 rip=7ff69f8e21a6<br>
Found by: call frame info<br>
7 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rbp=7fffffffffffffff rsp=6453cffae0 rip=7ff69f9113bd<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17974<br>
rbp=7fffffffffffffff rsp=6453cffb60 rip=7ff8320d7974<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6a271<br>
rbp=7fffffffffffffff rsp=6453cffb90 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 10<br>
0 ntdll.dll + 0xa2474<br>
rax=169 rdx=6453dfe9f0 rcx=42c rbx=0 rsi=6453dfe9e0 rdi=17061148d01 rbp=ffffffff rsp=6453dfe8f8 r8=80 r9=6453dfe9e0 r10=546c6148 r11=630ff1b2947 r12=6453dfe9f0 r13=42c r14=80 r15=0 rip=7ff833742474<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0xfae2e<br>
rsp=6453dfe900 rip=7ff82f84ae2e<br>
Found by: stack scanning<br>
2 uv_run App.exe [core.c : 528 + 0x2a]<br>
rsp=6453dfe9a0 rip=7ff6a00542c0<br>
Found by: stack scanning<br>
3 node::WorkerThreadsTaskRunner::DelayedTaskScheduler::Run() App.exe [node_platform.cc : 90 + 0xa]<br>
rsp=6453dffa60 rip=7ff6a004b911<br>
Found by: call frame info<br>
4 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rsp=6453dffb10 rip=7ff6a0054d42<br>
Found by: call frame info<br>
5 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rsp=6453dffb50 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17974<br>
rsp=6453dffb80 rip=7ff8320d7974<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6a271<br>
rsp=6453dffbb0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 11<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=17061148b68 rbx=0 rsi=17061148b68 rdi=0 rbp=6453effb00 rsp=6453effaa8 r8=6453fffa20 r9=17061148b90 r10=17061148b90 r11=6453effac0 r12=0 r13=0 r14=17061148b90 r15=6453effad8 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=6453effb00 rsp=6453effab0 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x7d509<br>
rsp=6453effb20 rip=7ff82f7cd509<br>
Found by: stack scanning<br>
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]<br>
rsp=6453effb50 rip=7ff6a0055210<br>
Found by: stack scanning<br>
4 node::TaskQueuev8::Task::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]<br>
rsp=6453effb80 rip=7ff6a004ba7e<br>
Found by: call frame info<br>
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]<br>
rsp=6453effbd0 rip=7ff6a004a20c<br>
Found by: call frame info<br>
6 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rsp=6453effc90 rip=7ff6a0054d42<br>
Found by: call frame info<br>
7 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rsp=6453effcd0 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17974<br>
rsp=6453effd00 rip=7ff8320d7974<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6a271<br>
rsp=6453effd30 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 12<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=17061148b68 rbx=0 rsi=17061148b68 rdi=0 rbp=6453fffa50 rsp=6453fff9f8 r8=20 r9=0 r10=20 r11=2dd08c49000 r12=0 r13=0 r14=17061148b90 r15=6453fffa28 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=6453fffa50 rsp=6453fffa00 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x7d509<br>
rsp=6453fffa70 rip=7ff82f7cd509<br>
Found by: stack scanning<br>
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]<br>
rsp=6453fffaa0 rip=7ff6a0055210<br>
Found by: stack scanning<br>
4 node::TaskQueuev8::Task::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]<br>
rsp=6453fffad0 rip=7ff6a004ba7e<br>
Found by: call frame info<br>
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]<br>
rsp=6453fffb20 rip=7ff6a004a20c<br>
Found by: call frame info<br>
6 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rsp=6453fffbe0 rip=7ff6a0054d42<br>
Found by: call frame info<br>
7 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rsp=6453fffc20 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17974<br>
rsp=6453fffc50 rip=7ff8320d7974<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6a271<br>
rsp=6453fffc80 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 13<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=17061148b68 rbx=0 rsi=17061148b68 rdi=0 rbp=64540ff9b0 rsp=64540ff958 r8=0 r9=170626310e0 r10=270 r11=0 r12=0 r13=0 r14=17061148b90 r15=64540ff988 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=64540ff9b0 rsp=64540ff960 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x7d509<br>
rsp=64540ff9d0 rip=7ff82f7cd509<br>
Found by: stack scanning<br>
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]<br>
rsp=64540ffa00 rip=7ff6a0055210<br>
Found by: stack scanning<br>
4 node::TaskQueuev8::Task::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]<br>
rsp=64540ffa30 rip=7ff6a004ba7e<br>
Found by: call frame info<br>
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]<br>
rsp=64540ffa80 rip=7ff6a004a20c<br>
Found by: call frame info<br>
6 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rsp=64540ffb40 rip=7ff6a0054d42<br>
Found by: call frame info<br>
7 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rsp=64540ffb80 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17974<br>
rsp=64540ffbb0 rip=7ff8320d7974<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6a271<br>
rsp=64540ffbe0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 14<br>
0 ntdll.dll + 0xa30d4<br>
rax=1cc rdx=1705f280930 rcx=14 rbx=1705f280930 rsi=0 rdi=10 rbp=0 rsp=64541ff8e8 r8=30 r9=30 r10=1 r11=1 r12=0 r13=1705f202340 r14=0 r15=0 rip=7ff8337430d4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x50204<br>
rsp=64541ff8f0 rip=7ff8336f0204<br>
Found by: stack scanning</p>
<p dir="auto">Thread 15<br>
0 ntdll.dll + 0xa30d4<br>
rax=1cc rdx=1705f27f3d0 rcx=14 rbx=1705f27f3d0 rsi=0 rdi=10 rbp=0 rsp=64542ff798 r8=1705f2c95f0 r9=1705f294de0 r10=fff05fde652 r11=40000 r12=0 r13=1705f202340 r14=0 r15=0 rip=7ff8337430d4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x50204<br>
rsp=64542ff7a0 rip=7ff8336f0204<br>
Found by: stack scanning</p>
<p dir="auto">Thread 16<br>
0 ntdll.dll + 0xa02b4<br>
rax=5b rdx=64543ff750 rcx=1 rbx=1 rsi=0 rdi=1 rbp=51c rsp=64543ff3f8 r8=1705f282900 r9=0 r10=0 r11=0 r12=ffffffff r13=64543ff750 r14=0 r15=0 rip=7ff8337402b4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x5ca8e<br>
rsp=64543ff400 rip=7ff82f7aca8e<br>
Found by: stack scanning<br>
2 RMCLIENT.dll + 0x8ed0<br>
rsp=64543ff418 rip=7ff82dff8ed0<br>
Found by: stack scanning<br>
3 ntdll.dll + 0x46946<br>
rsp=64543ff420 rip=7ff8336e6946<br>
Found by: stack scanning<br>
4 ntdll.dll + 0x190e0<br>
rsp=64543ff430 rip=7ff8336b90e0<br>
Found by: stack scanning<br>
5 RMCLIENT.dll + 0x8ed0<br>
rsp=64543ff450 rip=7ff82dff8ed0<br>
Found by: stack scanning<br>
6 ntdll.dll + 0x18ec2<br>
rsp=64543ff4f0 rip=7ff8336b8ec2<br>
Found by: stack scanning<br>
7 ntdll.dll + 0x75782<br>
rsp=64543ff500 rip=7ff833715782<br>
Found by: stack scanning<br>
8 ntdll.dll + 0x17be1<br>
rsp=64543ff5b0 rip=7ff8336b7be1<br>
Found by: stack scanning<br>
9 ntdll.dll + 0x59880<br>
rsp=64543ff640 rip=7ff8336f9880<br>
Found by: stack scanning<br>
10 ntdll.dll + 0x1795b<br>
rsp=64543ff650 rip=7ff8336b795b<br>
Found by: stack scanning<br>
11 ntdll.dll + 0x9ec5a<br>
rsp=64543ff660 rip=7ff83373ec5a<br>
Found by: stack scanning<br>
12 KERNELBASE.dll + 0x423d4<br>
rsp=64543ff690 rip=7ff82f7923d4<br>
Found by: stack scanning<br>
13 combase.dll + 0x8ac40<br>
rsp=64543ff6a8 rip=7ff8324eac40<br>
Found by: stack scanning<br>
14 combase.dll + 0x87567<br>
rsp=64543ff700 rip=7ff8324e7567<br>
Found by: stack scanning<br>
15 ntdll.dll + 0x9ec5a<br>
rsp=64543ff7d0 rip=7ff83373ec5a<br>
Found by: stack scanning<br>
16 ntdll.dll + 0xd452<br>
rsp=64543ff830 rip=7ff8336ad452<br>
Found by: stack scanning<br>
17 ntdll.dll + 0xd49a<br>
rsp=64543ff860 rip=7ff8336ad49a<br>
Found by: stack scanning<br>
18 ntdll.dll + 0x59880<br>
rsp=64543ff8b0 rip=7ff8336f9880<br>
Found by: stack scanning<br>
19 KERNELBASE.dll + 0x6c39a<br>
rsp=64543ff900 rip=7ff82f7bc39a<br>
Found by: stack scanning<br>
20 ntdll.dll + 0xedfa<br>
rsp=64543ff950 rip=7ff8336aedfa<br>
Found by: stack scanning<br>
21 combase.dll + 0x8825b<br>
rsp=64543ff990 rip=7ff8324e825b<br>
Found by: stack scanning<br>
22 combase.dll + 0x87338<br>
rsp=64543ff9e0 rip=7ff8324e7338<br>
Found by: stack scanning<br>
23 combase.dll + 0x88fe2<br>
rsp=64543ffa10 rip=7ff8324e8fe2<br>
Found by: stack scanning<br>
24 combase.dll + 0x8acbc<br>
rsp=64543ffa40 rip=7ff8324eacbc<br>
Found by: stack scanning<br>
25 KERNEL32.DLL + 0x17974<br>
rsp=64543ffa70 rip=7ff8320d7974<br>
Found by: stack scanning<br>
26 ntdll.dll + 0x6a271<br>
rsp=64543ffaa0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 17<br>
0 ntdll.dll + 0xa02b4<br>
rax=5b rdx=64544ff620 rcx=2 rbx=2 rsi=1 rdi=2 rbp=a44 rsp=64544ff2c8 r8=1706276e7d0 r9=f913862569ad6408 r10=1 r11=e r12=ffffffff r13=64544ff620 r14=0 r15=0 rip=7ff8337402b4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x5ca8e<br>
rsp=64544ff2d0 rip=7ff82f7aca8e<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x5cb80<br>
rsp=64544ff370 rip=7ff82f7acb80<br>
Found by: stack scanning<br>
3 combase.dll + 0xa74ed<br>
rsp=64544ff3b0 rip=7ff8325074ed<br>
Found by: stack scanning<br>
4 combase.dll + 0xa686f<br>
rsp=64544ff3d0 rip=7ff83250686f<br>
Found by: stack scanning<br>
5 combase.dll + 0x772d3<br>
rsp=64544ff400 rip=7ff8324d72d3<br>
Found by: stack scanning<br>
6 combase.dll + 0x641ed<br>
rsp=64544ff460 rip=7ff8324c41ed<br>
Found by: stack scanning<br>
7 combase.dll + 0x2da840<br>
rsp=64544ff468 rip=7ff83273a840<br>
Found by: stack scanning<br>
8 combase.dll + 0x76fcf<br>
rsp=64544ff490 rip=7ff8324d6fcf<br>
Found by: stack scanning<br>
9 ntdll.dll + 0x9f29b<br>
rsp=64544ff4d0 rip=7ff83373f29b<br>
Found by: stack scanning<br>
10 ntdll.dll + 0x73ec8<br>
rsp=64544ff500 rip=7ff833713ec8<br>
Found by: stack scanning<br>
11 ntdll.dll + 0x59880<br>
rsp=64544ff510 rip=7ff8336f9880<br>
Found by: stack scanning<br>
12 KERNELBASE.dll + 0x423d4<br>
rsp=64544ff560 rip=7ff82f7923d4<br>
Found by: stack scanning<br>
13 ntdll.dll + 0x137a8<br>
rsp=64544ff580 rip=7ff8336b37a8<br>
Found by: stack scanning<br>
14 combase.dll + 0x87567<br>
rsp=64544ff5d0 rip=7ff8324e7567<br>
Found by: stack scanning<br>
15 ntdll.dll + 0x12b25<br>
rsp=64544ff5e0 rip=7ff8336b2b25<br>
Found by: stack scanning<br>
16 ntdll.dll + 0x7ff17<br>
rsp=64544ff6e0 rip=7ff83371ff17<br>
Found by: stack scanning<br>
17 KERNELBASE.dll + 0x5ef5d<br>
rsp=64544ff700 rip=7ff82f7aef5d<br>
Found by: stack scanning<br>
18 combase.dll + 0xaed6b<br>
rsp=64544ff730 rip=7ff83250ed6b<br>
Found by: stack scanning<br>
19 ntdll.dll + 0x126b4<br>
rsp=64544ff760 rip=7ff8336b26b4<br>
Found by: stack scanning<br>
20 ntdll.dll + 0x59880<br>
rsp=64544ff780 rip=7ff8336f9880<br>
Found by: stack scanning<br>
21 KERNELBASE.dll + 0x6c39a<br>
rsp=64544ff7d0 rip=7ff82f7bc39a<br>
Found by: stack scanning<br>
22 combase.dll + 0x75b3f<br>
rsp=64544ff800 rip=7ff8324d5b3f<br>
Found by: stack scanning<br>
23 combase.dll + 0x628c7<br>
rsp=64544ff830 rip=7ff8324c28c7<br>
Found by: stack scanning<br>
24 combase.dll + 0x873fa<br>
rsp=64544ff860 rip=7ff8324e73fa<br>
Found by: stack scanning<br>
25 combase.dll + 0x8acbc<br>
rsp=64544ff8c0 rip=7ff8324eacbc<br>
Found by: stack scanning<br>
26 KERNEL32.DLL + 0x17974<br>
rsp=64544ff8f0 rip=7ff8320d7974<br>
Found by: stack scanning<br>
27 ntdll.dll + 0x6a271<br>
rsp=64544ff920 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 18<br>
0 ntdll.dll + 0xa30d4<br>
rax=1cc rdx=1705f27f760 rcx=66c rbx=1705f27f760 rsi=0 rdi=10 rbp=0 rsp=64545ff698 r8=5d00 r9=f913862569ad6408 r10=7000 r11=1 r12=0 r13=1705f2ac000 r14=0 r15=0 rip=7ff8337430d4<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x50204<br>
rsp=64545ff6a0 rip=7ff8336f0204<br>
Found by: stack scanning</p>
<p dir="auto">Thread 19<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=7ff6a3dcce18 rbx=0 rsi=7ff6a3dcce18 rdi=0 rbp=64546ff690 rsp=64546ff638 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff6a3dccdd8 r15=64546ff668 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=64546ff690 rsp=64546ff640 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 RtlUnwindEx App.exe + 0x1190418<br>
rbp=64546ff690 rsp=64546ff650 rip=7ff6a3dcce18<br>
Found by: stack scanning<br>
3 fs__open App.exe [fs.c : 671 + 0xd]<br>
rbp=64546ff690 rsp=64546ff660 rip=7ff6a0c61270<br>
Found by: stack scanning<br>
4 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]<br>
rbp=64546ff690 rsp=64546ff710 rip=7ff6a0c600ad<br>
Found by: call frame info<br>
5 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rbp=64546ff690 rsp=64546ff780 rip=7ff6a0054d42<br>
Found by: call frame info<br>
6 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rbp=64546ff690 rsp=64546ff7c0 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17974<br>
rbp=64546ff690 rsp=64546ff7f0 rip=7ff8320d7974<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6a271<br>
rsp=64546ff820 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 20<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=7ff6a3dcce18 rbx=0 rsi=7ff6a3dcce18 rdi=0 rbp=64547ff8b0 rsp=64547ff858 r8=64548ff8b0 r9=7ff6a3dccdd8 r10=7ff6a3dccdd8 r11=246 r12=0 r13=0 r14=7ff6a3dccdd8 r15=64547ff888 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=64547ff8b0 rsp=64547ff860 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 RtlUnwindEx App.exe + 0x1190418<br>
rbp=64547ff8b0 rsp=64547ff870 rip=7ff6a3dcce18<br>
Found by: stack scanning<br>
3 fs__open App.exe [fs.c : 671 + 0xd]<br>
rbp=64547ff8b0 rsp=64547ff880 rip=7ff6a0c61270<br>
Found by: stack scanning<br>
4 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]<br>
rbp=64547ff8b0 rsp=64547ff930 rip=7ff6a0c600ad<br>
Found by: call frame info<br>
5 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rbp=64547ff8b0 rsp=64547ff9a0 rip=7ff6a0054d42<br>
Found by: call frame info<br>
6 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rbp=64547ff8b0 rsp=64547ff9e0 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17974<br>
rbp=64547ff8b0 rsp=64547ffa10 rip=7ff8320d7974<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6a271<br>
rsp=64547ffa40 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 21<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=7ff6a3dcce18 rbx=0 rsi=7ff6a3dcce18 rdi=0 rbp=64548ff8e0 rsp=64548ff888 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff6a3dccdd8 r15=64548ff8b8 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=64548ff8e0 rsp=64548ff890 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 RtlUnwindEx App.exe + 0x1190418<br>
rbp=64548ff8e0 rsp=64548ff8a0 rip=7ff6a3dcce18<br>
Found by: stack scanning<br>
3 fs__open App.exe [fs.c : 671 + 0xd]<br>
rbp=64548ff8e0 rsp=64548ff8b0 rip=7ff6a0c61270<br>
Found by: stack scanning<br>
4 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]<br>
rbp=64548ff8e0 rsp=64548ff960 rip=7ff6a0c600ad<br>
Found by: call frame info<br>
5 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rbp=64548ff8e0 rsp=64548ff9d0 rip=7ff6a0054d42<br>
Found by: call frame info<br>
6 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rbp=64548ff8e0 rsp=64548ffa10 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17974<br>
rbp=64548ff8e0 rsp=64548ffa40 rip=7ff8320d7974<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6a271<br>
rsp=64548ffa70 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 22<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=7ff6a3dcce18 rbx=0 rsi=7ff6a3dcce18 rdi=0 rbp=64549ffad0 rsp=64549ffa78 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff6a3dccdd8 r15=64549ffaa8 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x747a2<br>
rbp=64549ffad0 rsp=64549ffa80 rip=7ff8337147a2<br>
Found by: stack scanning<br>
2 RtlUnwindEx App.exe + 0x1190418<br>
rbp=64549ffad0 rsp=64549ffa90 rip=7ff6a3dcce18<br>
Found by: stack scanning<br>
3 RtlUnwindEx App.exe + 0x1190440<br>
rsp=64549ffad8 rip=7ff6a3dcce40<br>
Found by: stack scanning<br>
4 RtlUnwindEx App.exe + 0x11903d8<br>
rsp=64549ffae0 rip=7ff6a3dccdd8<br>
Found by: stack scanning<br>
5 RtlUnwindEx App.exe + 0x1190480<br>
rsp=64549ffae8 rip=7ff6a3dcce80<br>
Found by: stack scanning<br>
6 KERNELBASE.dll + 0x7d509<br>
rsp=64549ffaf0 rip=7ff82f7cd509<br>
Found by: stack scanning<br>
7 RtlUnwindEx App.exe + 0x1190440<br>
rsp=64549ffaf8 rip=7ff6a3dcce40<br>
Found by: stack scanning<br>
8 RtlUnwindEx App.exe + 0x1190418<br>
rsp=64549ffb00 rip=7ff6a3dcce18<br>
Found by: stack scanning<br>
9 RtlUnwindEx App.exe + 0x1190460<br>
rsp=64549ffb08 rip=7ff6a3dcce60<br>
Found by: stack scanning<br>
10 RtlUnwindEx App.exe + 0x1190440<br>
rsp=64549ffb18 rip=7ff6a3dcce40<br>
Found by: stack scanning<br>
11 uv_cond_wait App.exe [thread.c : 414 + 0xc]<br>
rsp=64549ffb20 rip=7ff6a0055210<br>
Found by: stack scanning<br>
12 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]<br>
rsp=64549ffb50 rip=7ff6a0c600ad<br>
Found by: call frame info<br>
13 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rsp=64549ffbc0 rip=7ff6a0054d42<br>
Found by: call frame info<br>
14 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rsp=64549ffc00 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
15 KERNEL32.DLL + 0x17974<br>
rsp=64549ffc30 rip=7ff8320d7974<br>
Found by: call frame info<br>
16 ntdll.dll + 0x6a271<br>
rsp=64549ffc60 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 23<br>
0 win32u.dll + 0x9904<br>
rax=1446 rdx=6454bff608 rcx=1 rbx=6454bff690 rsi=170625fa080 rdi=0 rbp=6454bff6d8 rsp=6454bff598 r8=2 r9=ffffff7e r10=0 r11=246 r12=170625fa080 r13=1 r14=6454bff6c0 r15=6454bff6b0 rip=7ff830879904<br>
Found by: given as instruction pointer in context<br>
1 USER32.dll + 0x2003d<br>
rbp=6454bff6d8 rsp=6454bff5a0 rip=7ff83304003d<br>
Found by: stack scanning<br>
2 void base::internal::<code class="notranslate">anonymous namespace'::WorkerThreadDelegate::DidProcessTask(class base::internal::RegisteredTaskSource) App.exe [pooled_single_thread_task_runner_manager.cc : 132 + 0x15] rbp=6454bff6d8 rsp=6454bff5b0 rip=7ff6a0cb6b44 Found by: stack scanning 3 base::internal::WorkerThread::RunWorker() App.exe [worker_thread.cc : 334 + 0x9] rbp=6454bff6d8 rsp=6454bff630 rip=7ff6a175a5c9 Found by: call frame info 4 base::internal::WorkerThread::RunSharedCOMWorker() App.exe [worker_thread.cc : 261 + 0x5] rbp=6454bff6d8 rsp=6454bff750 rip=7ff6a175a230 Found by: call frame info 5 static unsigned long base::</code>anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rbp=6454bff6d8 rsp=6454bff790 rip=7ff69f9113bd<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17974<br>
rbp=6454bff6d8 rsp=6454bff810 rip=7ff8320d7974<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6a271<br>
rsp=6454bff840 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 24<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=708 rbx=0 rsi=6454aff908 rdi=708 rbp=6454affb58 rsp=6454aff8d8 r8=ffffffff r9=1706260e03a r10=740 r11=6454aff140 r12=6454aff9a8 r13=1 r14=708 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=6454affb58 rsp=6454aff8e0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=6454affb58 rsp=6454aff8f0 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 25<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=7b0 rbx=0 rsi=6454cff678 rdi=7b0 rbp=6454cff8c8 rsp=6454cff648 r8=77f0 r9=30 r10=0 r11=fffffff8 r12=6454cff718 r13=1 r14=7b0 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=6454cff8c8 rsp=6454cff650 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=6454cff8c8 rsp=6454cff660 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 26<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=7d0 rbx=0 rsi=6454dff6e8 rdi=7d0 rbp=6454dff938 rsp=6454dff6b8 r8=30 r9=30 r10=1 r11=1 r12=6454dff788 r13=1 r14=7d0 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=6454dff938 rsp=6454dff6c0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=6454dff938 rsp=6454dff6d0 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 27<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=1706118c388 rbx=0 rsi=0 rdi=6454effe28 rbp=1706118c388 rsp=6454effca8 r8=6454effec8 r9=7ff69f91138c r10=6454efd000 r11=6454efd000 r12=0 r13=0 r14=1706118c3d0 r15=0 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x4fa99<br>
rbp=1706118c388 rsp=6454effcb0 rip=7ff8336efa99<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x1f48d<br>
rbp=1706118c388 rsp=6454effd20 rip=7ff82f76f48d<br>
Found by: stack scanning<br>
3 ntdll.dll + 0x126b4<br>
rbp=1706118c388 rsp=6454effd50 rip=7ff8336b26b4<br>
Found by: stack scanning<br>
4 base::ConditionVariable::TimedWait(base::TimeDelta const &) App.exe [condition_variable_win.cc : 45 + 0x13]<br>
rbp=1706118c388 rsp=6454effd60 rip=7ff69f9106c2<br>
Found by: stack scanning<br>
5 base::ConditionVariable::Wait() App.exe [condition_variable_win.cc : 30 + 0x5]<br>
rbp=1706118c388 rsp=6454effe00 rip=7ff69f91061c<br>
Found by: call frame info<br>
6 cc::SingleThreadTaskGraphRunner::Run() App.exe [single_thread_task_graph_runner.cc : 123 + 0x8]<br>
rbp=1706118c388 rsp=6454effe40 rip=7ff69fb951ed<br>
Found by: call frame info<br>
7 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rbp=1706118c388 rsp=6454effe90 rip=7ff69f9113bd<br>
Found by: call frame info<br>
8 KERNEL32.DLL + 0x17974<br>
rbp=1706118c388 rsp=6454efff10 rip=7ff8320d7974<br>
Found by: call frame info<br>
9 ntdll.dll + 0x6a271<br>
rbp=1706118c388 rsp=6454efff40 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 28<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=838 rbx=0 rsi=0 rdi=838 rbp=6454fffcd8 rsp=6454fffa88 r8=6454fff298 r9=0 r10=ffffffff r11=0 r12=170625fa400 r13=1 r14=838 r15=6454fffcb0 rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=6454fffcd8 rsp=6454fffa90 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 RtlUnwindEx App.exe + 0x341a46<br>
rbp=6454fffcd8 rsp=6454fffaa8 rip=7ff6a2f7e446<br>
Found by: stack scanning<br>
3 RtlUnwindEx App.exe + 0x341a0f<br>
rbp=6454fffcd8 rsp=6454fffab0 rip=7ff6a2f7e40f<br>
Found by: stack scanning<br>
4 content::internal::ChildProcessLauncherHelper::StartLaunchOnClientThread() App.exe [child_process_launcher_helper.cc : 111 + 0x21]<br>
rbp=6454fffcd8 rsp=6454fffac0 rip=7ff69ef8eabe<br>
Found by: stack scanning</p>
<p dir="auto">Thread 29<br>
0 win32u.dll + 0x9904<br>
rax=1446 rdx=0 rcx=0 rbx=64550ff3fc rsi=64550ff4a0 rdi=7ff83303ffa0 rbp=0 rsp=64550ff348 r8=1706273d0c0 r9=1 r10=0 r11=1000 r12=7fffffffffffffff r13=64550ff3f8 r14=64550ff3c0 r15=64550ff400 rip=7ff830879904<br>
Found by: given as instruction pointer in context<br>
1 USER32.dll + 0x2003d<br>
rsp=64550ff350 rip=7ff83304003d<br>
Found by: stack scanning<br>
2 RtlUnwindEx App.exe + 0x6b2230<br>
rsp=64550ff370 rip=7ff6a32eec30<br>
Found by: stack scanning<br>
3 base::sequence_manager::internal::SequenceManagerImpl::OnSystemIdle() App.exe [sequence_manager_impl.cc : 713 + 0xc]<br>
rsp=64550ff380 rip=7ff69f8d5de6<br>
Found by: stack scanning<br>
4 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() App.exe [thread_controller_with_message_pump_impl.cc : 399 + 0xd]<br>
rsp=64550ff3e0 rip=7ff6a00943ba<br>
Found by: call frame info<br>
5 base::MessagePumpForUI::DoRunLoop() App.exe [message_pump_win.cc : 247 + 0x12]<br>
rsp=64550ff470 rip=7ff69f90c1ae<br>
Found by: call frame info<br>
6 base::MessagePumpWin::Run(base::MessagePump::Delegate *) App.exe [message_pump_win.cc : 74 + 0x9]<br>
rsp=64550ff530 rip=7ff69f90b88e<br>
Found by: call frame info<br>
7 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]<br>
rsp=64550ff580 rip=7ff6a00944e8<br>
Found by: call frame info<br>
8 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]<br>
rsp=64550ff5e0 rip=7ff69f8bbbba<br>
Found by: call frame info<br>
9 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]<br>
rsp=64550ff680 rip=7ff69f8e21a6<br>
Found by: call frame info<br>
10 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rsp=64550ff700 rip=7ff69f9113bd<br>
Found by: call frame info<br>
11 KERNEL32.DLL + 0x17974<br>
rsp=64550ff780 rip=7ff8320d7974<br>
Found by: call frame info<br>
12 ntdll.dll + 0x6a271<br>
rsp=64550ff7b0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 30<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=858 rbx=0 rsi=0 rdi=858 rbp=0 rsp=64551ffae8 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=858 r15=0 rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rsp=64551ffaf0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x1bc23<br>
rsp=64551ffb00 rip=7ff82f76bc23<br>
Found by: stack scanning<br>
3 electron::NodeBindings::WakeupMainThread() App.exe [node_bindings.cc : 437 + 0x21]<br>
rsp=64551ffb70 rip=7ff69d8b792f<br>
Found by: stack scanning<br>
4 static unsigned int uv__thread_start(void <em>) App.exe [thread.c : 108 + 0x5]<br>
rsp=64551ffc00 rip=7ff6a0054d42<br>
Found by: call frame info<br>
5 static unsigned long thread_start<unsigned int (__cdecl</em>)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]<br>
rsp=64551ffc40 rip=7ff6a2c037e0<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17974<br>
rsp=64551ffc70 rip=7ff8320d7974<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6a271<br>
rsp=64551ffca0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 31<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=1705f2c10d0 rbx=0 rsi=0 rdi=0 rbp=1705f2c10d0 rsp=64552ff978 r8=0 r9=0 r10=1705f2c1118 r11=64552ffa10 r12=1705f2c10a0 r13=1705f2c1110 r14=1705f2c1118 r15=0 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x4fa99<br>
rbp=1705f2c10d0 rsp=64552ff980 rip=7ff8336efa99<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x1f48d<br>
rbp=1705f2c10d0 rsp=64552ff9f0 rip=7ff82f76f48d<br>
Found by: stack scanning<br>
3 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x325bf<br>
rbp=1705f2c10d0 rsp=64552ffa10 rip=7fffcbd025bf<br>
Found by: stack scanning<br>
4 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x14b668<br>
rbp=1705f2c10d0 rsp=64552ffa30 rip=7fffcbe1b668<br>
Found by: stack scanning<br>
5 ntdll.dll + 0x126b4<br>
rbp=1705f2c10d0 rsp=64552ffa40 rip=7ff8336b26b4<br>
Found by: stack scanning<br>
6 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148ba0<br>
rbp=1705f2c10d0 rsp=64552ffa70 rip=7fffcbe18ba0<br>
Found by: stack scanning<br>
7 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148d18<br>
rbp=1705f2c10d0 rsp=64552ffaa0 rip=7fffcbe18d18<br>
Found by: stack scanning<br>
8 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1489bb<br>
rbp=1705f2c10d0 rsp=64552ffab0 rip=7fffcbe189bb<br>
Found by: stack scanning<br>
9 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0xfd119<br>
rbp=1705f2c10d0 rsp=64552ffac0 rip=7fffcbdcd119<br>
Found by: stack scanning<br>
10 free_base ucrtbase.dll + 0x1b<br>
rbp=1705f2c10d0 rsp=64552ffae0 rip=7ff8306bc7eb<br>
Found by: stack scanning<br>
11 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e0c0<br>
rbp=1705f2c10d0 rsp=64552ffb10 rip=7fffcbd1e0c0<br>
Found by: call frame info<br>
12 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3869<br>
rbp=1705f2c10d0 rsp=64552ffb38 rip=7fffcbe73869<br>
Found by: stack scanning<br>
13 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3873<br>
rbp=1705f2c10d0 rsp=64552ffb40 rip=7fffcbe73873<br>
Found by: stack scanning<br>
14 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e9b2<br>
rbp=1705f2c10d0 rsp=64552ffbd0 rip=7fffcbd1e9b2<br>
Found by: stack scanning<br>
15 KERNELBASE.dll + 0x790a5<br>
rbp=1705f2c10d0 rsp=64552ffbf0 rip=7ff82f7c90a5<br>
Found by: stack scanning<br>
16 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4f28f<br>
rbp=1705f2c10d0 rsp=64552ffc20 rip=7fffcbd1f28f<br>
Found by: stack scanning<br>
17 kernel.appcore.dll + 0x2c60<br>
rbp=1705f2c10d0 rsp=64552ffc30 rip=7ff82f682c60<br>
Found by: stack scanning<br>
18 thread_start<unsigned int (__cdecl*)(void * __ptr64)> ucrtbase.dll + 0x3a<br>
rbp=1705f2c10d0 rsp=64552ffc50 rip=7ff8306d1ffa<br>
Found by: stack scanning<br>
19 KERNEL32.DLL + 0x17974<br>
rbp=1705f2c10d0 rsp=64552ffc80 rip=7ff8320d7974<br>
Found by: call frame info<br>
20 ntdll.dll + 0x6a271<br>
rbp=1705f2c10d0 rsp=64552ffcb0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 32<br>
0 ntdll.dll + 0xa3074<br>
rax=1c9 rdx=0 rcx=1705f2c26d0 rbx=0 rsi=0 rdi=0 rbp=1705f2c26d0 rsp=64553ff9d8 r8=0 r9=0 r10=1705f2c2718 r11=17000000001 r12=1705f2c26a0 r13=1705f2c2710 r14=1705f2c2718 r15=0 rip=7ff833743074<br>
Found by: given as instruction pointer in context<br>
1 ntdll.dll + 0x4fa99<br>
rbp=1705f2c26d0 rsp=64553ff9e0 rip=7ff8336efa99<br>
Found by: stack scanning<br>
2 KERNELBASE.dll + 0x1f48d<br>
rbp=1705f2c26d0 rsp=64553ffa50 rip=7ff82f76f48d<br>
Found by: stack scanning<br>
3 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x14b668<br>
rbp=1705f2c26d0 rsp=64553ffa90 rip=7fffcbe1b668<br>
Found by: stack scanning<br>
4 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148ba0<br>
rbp=1705f2c26d0 rsp=64553ffad0 rip=7fffcbe18ba0<br>
Found by: stack scanning<br>
5 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148d18<br>
rbp=1705f2c26d0 rsp=64553ffb00 rip=7fffcbe18d18<br>
Found by: stack scanning<br>
6 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1489bb<br>
rbp=1705f2c26d0 rsp=64553ffb10 rip=7fffcbe189bb<br>
Found by: stack scanning<br>
7 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0xfd119<br>
rbp=1705f2c26d0 rsp=64553ffb20 rip=7fffcbdcd119<br>
Found by: stack scanning<br>
8 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e0c0<br>
rbp=1705f2c26d0 rsp=64553ffb70 rip=7fffcbd1e0c0<br>
Found by: stack scanning<br>
9 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3869<br>
rbp=1705f2c26d0 rsp=64553ffb98 rip=7fffcbe73869<br>
Found by: stack scanning<br>
10 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3873<br>
rbp=1705f2c26d0 rsp=64553ffba0 rip=7fffcbe73873<br>
Found by: stack scanning<br>
11 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e9b2<br>
rbp=1705f2c26d0 rsp=64553ffc30 rip=7fffcbd1e9b2<br>
Found by: stack scanning<br>
12 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4f28f<br>
rbp=1705f2c26d0 rsp=64553ffc80 rip=7fffcbd1f28f<br>
Found by: stack scanning<br>
13 thread_start<unsigned int (__cdecl*)(void * __ptr64)> ucrtbase.dll + 0x3a<br>
rbp=1705f2c26d0 rsp=64553ffcb0 rip=7ff8306d1ffa<br>
Found by: stack scanning<br>
14 KERNEL32.DLL + 0x17974<br>
rbp=1705f2c26d0 rsp=64553ffce0 rip=7ff8320d7974<br>
Found by: call frame info<br>
15 ntdll.dll + 0x6a271<br>
rbp=1705f2c26d0 rsp=64553ffd10 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 33<br>
0 ntdll.dll + 0x9f884<br>
rax=9 rdx=64554ffab0 rcx=8c8 rbx=64554ffa70 rsi=7fffbd91a350 rdi=64554ffaac rbp=64554ffab0 rsp=64554ff9c8 r8=25d r9=13d r10=12c r11=b r12=ffffffff r13=7ff8320db8d0 r14=17062726940 r15=64554ffab0 rip=7ff83373f884<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x1bc23<br>
rbp=64554ffab0 rsp=64554ff9d0 rip=7ff82f76bc23<br>
Found by: stack scanning<br>
2 ntdll.dll + 0x59880<br>
rbp=64554ffab0 rsp=64554ff9e0 rip=7ff8336f9880<br>
Found by: stack scanning<br>
3 keytar.node + 0x20350<br>
rbp=64554ffab0 rsp=64554ffa30 rip=7fffbd7c0350<br>
Found by: stack scanning<br>
4 ntdll.dll + 0x53e7a<br>
rbp=64554ffab0 rsp=64554ffa40 rip=7ff8336f3e7a<br>
Found by: stack scanning<br>
5 keytar.node + 0x17a350<br>
rbp=64554ffab0 rsp=64554ffaa8 rip=7fffbd91a350<br>
Found by: stack scanning<br>
6 keytar.node + 0x1fe30<br>
rsp=64554ffb30 rip=7fffbd7bfe30<br>
Found by: stack scanning<br>
7 keytar.node + 0x1be7b<br>
rsp=64554ffbc0 rip=7fffbd7bbe7b<br>
Found by: stack scanning<br>
8 ntdll.dll + 0x59880<br>
rsp=64554ffc20 rip=7ff8336f9880<br>
Found by: stack scanning<br>
9 keytar.node + 0x17a350<br>
rsp=64554ffc38 rip=7fffbd91a350<br>
Found by: stack scanning<br>
10 keytar.node + 0x211c7<br>
rsp=64554ffc50 rip=7fffbd7c11c7<br>
Found by: stack scanning<br>
11 keytar.node + 0x53b86<br>
rsp=64554ffc80 rip=7fffbd7f3b86<br>
Found by: stack scanning<br>
12 thread_start<unsigned int (__cdecl*)(void * __ptr64)> ucrtbase.dll + 0x3a<br>
rsp=64554ffcc0 rip=7ff8306d1ffa<br>
Found by: stack scanning<br>
13 KERNEL32.DLL + 0x17974<br>
rsp=64554ffcf0 rip=7ff8320d7974<br>
Found by: call frame info<br>
14 ntdll.dll + 0x6a271<br>
rsp=64554ffd20 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 34<br>
0 ntdll.dll + 0x9f884<br>
rax=9 rdx=64555ff620 rcx=8c8 rbx=64555ff5e0 rsi=7fffbd91a350 rdi=64555ff61c rbp=64555ff620 rsp=64555ff538 r8=1ff0 r9=2f r10=64554fe890 r11=1705f21cb00 r12=ffffffff r13=7ff8320db8d0 r14=17062726940 r15=64555ff620 rip=7ff83373f884<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x1bc23<br>
rbp=64555ff620 rsp=64555ff540 rip=7ff82f76bc23<br>
Found by: stack scanning<br>
2 ntdll.dll + 0x59880<br>
rbp=64555ff620 rsp=64555ff550 rip=7ff8336f9880<br>
Found by: stack scanning<br>
3 keytar.node + 0x20350<br>
rbp=64555ff620 rsp=64555ff5a0 rip=7fffbd7c0350<br>
Found by: stack scanning<br>
4 ntdll.dll + 0x53e7a<br>
rbp=64555ff620 rsp=64555ff5b0 rip=7ff8336f3e7a<br>
Found by: stack scanning<br>
5 ntdll.dll + 0xd49a<br>
rbp=64555ff620 rsp=64555ff610 rip=7ff8336ad49a<br>
Found by: stack scanning<br>
6 keytar.node + 0x1fe30<br>
rsp=64555ff6a0 rip=7fffbd7bfe30<br>
Found by: stack scanning<br>
7 keytar.node + 0x1be7b<br>
rsp=64555ff730 rip=7fffbd7bbe7b<br>
Found by: stack scanning<br>
8 ntdll.dll + 0x59880<br>
rsp=64555ff790 rip=7ff8336f9880<br>
Found by: stack scanning<br>
9 keytar.node + 0x17a350<br>
rsp=64555ff7a8 rip=7fffbd91a350<br>
Found by: stack scanning<br>
10 keytar.node + 0x211c7<br>
rsp=64555ff7c0 rip=7fffbd7c11c7<br>
Found by: stack scanning<br>
11 keytar.node + 0x53b86<br>
rsp=64555ff7f0 rip=7fffbd7f3b86<br>
Found by: stack scanning<br>
12 thread_start<unsigned int (__cdecl*)(void * __ptr64)> ucrtbase.dll + 0x3a<br>
rsp=64555ff830 rip=7ff8306d1ffa<br>
Found by: stack scanning<br>
13 KERNEL32.DLL + 0x17974<br>
rsp=64555ff860 rip=7ff8320d7974<br>
Found by: call frame info<br>
14 ntdll.dll + 0x6a271<br>
rsp=64555ff890 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 35<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=920 rbx=0 rsi=64556ff988 rdi=920 rbp=64556ffbd8 rsp=64556ff958 r8=64556ff328 r9=1 r10=0 r11=8101010101010100 r12=64556ffa28 r13=1 r14=920 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=64556ffbd8 rsp=64556ff960 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=64556ffbd8 rsp=64556ff970 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 36<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=928 rbx=0 rsi=64557ff618 rdi=928 rbp=64557ff868 rsp=64557ff5e8 r8=ffffffff r9=170626e114a r10=ce50 r11=64557ff040 r12=64557ff6b8 r13=1 r14=928 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=64557ff868 rsp=64557ff5f0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=64557ff868 rsp=64557ff600 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 37<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=914 rbx=0 rsi=64558ff7f8 rdi=914 rbp=64558ffa48 rsp=64558ff7c8 r8=170627ac050 r9=f913862569ad6408 r10=1 r11=21 r12=64558ff898 r13=1 r14=914 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=64558ffa48 rsp=64558ff7d0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=64558ffa48 rsp=64558ff7e0 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 38<br>
0 win32u.dll + 0x9904<br>
rax=1446 rdx=64559ff778 rcx=1 rbx=64559ff800 rsi=17062532c00 rdi=0 rbp=64559ff848 rsp=64559ff708 r8=7ff6a1eea310 r9=10 r10=b r11=630ff1b2947 r12=17062532c00 r13=1 r14=64559ff830 r15=64559ff820 rip=7ff830879904<br>
Found by: given as instruction pointer in context<br>
1 USER32.dll + 0x2003d<br>
rbp=64559ff848 rsp=64559ff710 rip=7ff83304003d<br>
Found by: stack scanning<br>
2 void base::internal::<code class="notranslate">anonymous namespace'::WorkerThreadDelegate::DidProcessTask(class base::internal::RegisteredTaskSource) App.exe [pooled_single_thread_task_runner_manager.cc : 132 + 0x15] rbp=64559ff848 rsp=64559ff720 rip=7ff6a0cb6b44 Found by: stack scanning 3 base::internal::WorkerThread::RunWorker() App.exe [worker_thread.cc : 334 + 0x9] rbp=64559ff848 rsp=64559ff7a0 rip=7ff6a175a5c9 Found by: call frame info 4 base::internal::WorkerThread::RunSharedCOMWorker() App.exe [worker_thread.cc : 261 + 0x5] rbp=64559ff848 rsp=64559ff8c0 rip=7ff6a175a230 Found by: call frame info 5 static unsigned long base::</code>anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rbp=64559ff848 rsp=64559ff900 rip=7ff69f9113bd<br>
Found by: call frame info<br>
6 KERNEL32.DLL + 0x17974<br>
rbp=64559ff848 rsp=64559ff980 rip=7ff8320d7974<br>
Found by: call frame info<br>
7 ntdll.dll + 0x6a271<br>
rsp=64559ff9b0 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 39<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=93c rbx=0 rsi=6455affad8 rdi=93c rbp=6455affd28 rsp=6455affaa8 r8=30 r9=30 r10=1 r11=1 r12=6455affb78 r13=1 r14=93c r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=6455affd28 rsp=6455affab0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=6455affd28 rsp=6455affac0 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">Thread 40<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=944 rbx=0 rsi=6455bff6c8 rdi=944 rbp=0 rsp=6455bff698 r8=1000 r9=0 r10=6455bfe6c0 r11=17062a1f050 r12=6455bff768 r13=0 r14=944 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rsp=6455bff6a0 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::WaitableEvent::TimedWait(base::TimeDelta const &) App.exe [waitable_event_win.cc : 107 + 0x2]<br>
rsp=6455bff740 rip=7ff69f910ac0<br>
Found by: stack scanning<br>
3 base::internal::WorkerThread::Delegate::WaitForWork(base::WaitableEvent *) App.exe [worker_thread.cc : 36 + 0xd]<br>
rsp=6455bff830 rip=7ff6a1759ada<br>
Found by: call frame info<br>
4 base::internal::WorkerThread::RunWorker() App.exe [worker_thread.cc : 311 + 0xd]<br>
rsp=6455bff870 rip=7ff6a175a38b<br>
Found by: call frame info<br>
5 base::internal::WorkerThread::RunPooledWorker() App.exe [worker_thread.cc : 224 + 0x5]<br>
rsp=6455bff990 rip=7ff6a175a170<br>
Found by: call frame info<br>
6 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]<br>
rsp=6455bff9d0 rip=7ff69f9113bd<br>
Found by: call frame info<br>
7 KERNEL32.DLL + 0x17974<br>
rsp=6455bffa50 rip=7ff8320d7974<br>
Found by: call frame info<br>
8 ntdll.dll + 0x6a271<br>
rsp=6455bffa80 rip=7ff83370a271<br>
Found by: stack scanning</p>
<p dir="auto">Thread 41<br>
0 ntdll.dll + 0x9f7e4<br>
rax=4 rdx=0 rcx=990 rbx=0 rsi=6455cffab8 rdi=990 rbp=6455cffd08 rsp=6455cffa88 r8=7ff69ff5ddab r9=10 r10=ffffffff r11=170626cc980 r12=6455cffb58 r13=0 r14=990 r15=7fffffffffffffff rip=7ff83373f7e4<br>
Found by: given as instruction pointer in context<br>
1 KERNELBASE.dll + 0x389b3<br>
rbp=6455cffd08 rsp=6455cffa90 rip=7ff82f7889b3<br>
Found by: stack scanning<br>
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]<br>
rbp=6455cffd08 rsp=6455cffaa0 rip=7ff6a0cb7eff<br>
Found by: stack scanning</p>
<p dir="auto">App.exe version:62.8.119.17949 debug_id:3AA6A57192854E7C4C4C44205044422E1 address_range: 0x7ff69d780000, 0x7ff6a447ffff isMain:True<br>
UIAutomationCore.DLL version:7.2.17763.1075 debug_id:38DD130E205A9D25D1C3677125D68F661 address_range: 0x7ff8066c0000, 0x7ff80691afff isMain:False<br>
Windows.Storage.ApplicationData.dll version:10.0.17763.1339 debug_id:D2280D6E8B5588E4C2C6958CAFE678361 address_range: 0x7ff80a3b0000, 0x7ff80a407fff isMain:False<br>
container.dll version:10.0.17763.292 debug_id:3B777CEE2C11F0D72D1DEDDFE95D5C0E1 address_range: 0x7ff80c800000, 0x7ff80c839fff isMain:False<br>
daxexec.dll version:10.0.17763.1282 debug_id:675993CB70583B4844010E9412FC4D9A1 address_range: 0x7ff80c840000, 0x7ff80c8dbfff isMain:False<br>
mscms.dll version:10.0.17763.1075 debug_id:0D367B5E368A5954EDA6A4F57B1C9F681 address_range: 0x7ff80cc40000, 0x7ff80ccecfff isMain:False<br>
wpnapps.dll version:10.0.17763.1339 debug_id:66B475797CB43314CBD8DA76E997F3861 address_range: 0x7ff80dec0000, 0x7ff80e00dfff isMain:False<br>
dataexchange.dll version:10.0.17763.1217 debug_id:4445B5D54ABA171249147A90BE849DD91 address_range: 0x7ff814850000, 0x7ff8148a5fff isMain:False<br>
OLEACC.dll version:7.2.17763.1 debug_id:7523A927DCF2304064623B35A82619611 address_range: 0x7ff816660000, 0x7ff8166cbfff isMain:False<br>
MSIMG32.dll version:10.0.17763.1 debug_id:AFA32F84CFAAE8E40E1F5E1A444D05001 address_range: 0x7ff8166d0000, 0x7ff8166d6fff isMain:False<br>
Secur32.dll version:10.0.17763.1 debug_id:691E94A6EDBF6109B6585D524D6AE7491 address_range: 0x7ff8174d0000, 0x7ff8174dbfff isMain:False<br>
VCRUNTIME140.dll version:14.12.25810.0 debug_id:E93D4EDDDEB54C72857912DE41650BF41 address_range: 0x7ff81b330000, 0x7ff81b345fff isMain:False<br>
FLTLIB.DLL version:10.0.17763.1 debug_id:2581A4864A3B18A1C55D8DD1C5A9D71D1 address_range: 0x7ff81be90000, 0x7ff81be99fff isMain:False<br>
COMCTL32.dll version:6.10.17763.1339 debug_id:C59D7E207DE8A737AFA3C7B7BD0860FA1 address_range: 0x7ff81bef0000, 0x7ff81c168fff isMain:False<br>
ColorAdapterClient.dll version:10.0.17763.1 debug_id:919D5B1C114BF5BF3B232FB9D1B6CB5B1 address_range: 0x7ff81c6b0000, 0x7ff81c6bffff isMain:False<br>
VCRUNTIME140_1.dll version:14.25.28508.3 debug_id:7930BDEB1D314DF88CD619BBAD3945C81 address_range: 0x7ff81c800000, 0x7ff81c80bfff isMain:False<br>
urlmon.dll version:11.0.17763.1217 debug_id:789A7B08D14C00BBCD3ADD4E23F9CE4A1 address_range: 0x7ff81d3c0000, 0x7ff81d596fff isMain:False<br>
iertutil.dll version:11.0.17763.1339 debug_id:B2B8BE37A66007E02FC809585414F8C31 address_range: 0x7ff81e640000, 0x7ff81e8e7fff isMain:False<br>
Bcp47Langs.dll version:10.0.17763.1075 debug_id:2B6F4BA239D549A221A8165CA566B2DF1 address_range: 0x7ff81ffa0000, 0x7ff81fffbfff isMain:False<br>
DWrite.dll version:10.0.17763.1339 debug_id:337C314B410993F4ECFD3D853055E8F31 address_range: 0x7ff820050000, 0x7ff82034bfff isMain:False<br>
VERSION.dll version:10.0.17763.1 debug_id:7623DBA348C799A2838323C2D5D227EC1 address_range: 0x7ff820ee0000, 0x7ff820ee9fff isMain:False<br>
dhcpcsvc6.DLL version:10.0.17763.1 debug_id:8F4EBF785414B2E2609CAA5B7297485E1 address_range: 0x7ff8213a0000, 0x7ff8213b5fff isMain:False<br>
capauthz.dll version:10.0.17763.1 debug_id:146E5069BAC7AEA546330C295961F6E21 address_range: 0x7ff8216f0000, 0x7ff821743fff isMain:False<br>
MMDevApi.dll version:10.0.17763.1075 debug_id:8665145BF82506F9417A5EC6D82D8BB51 address_range: 0x7ff821750000, 0x7ff8217bffff isMain:False<br>
dhcpcsvc.DLL version:10.0.17763.1 debug_id:E590C67F9545A432D5C2EDB46C5E2BCB1 address_range: 0x7ff822c10000, 0x7ff822c2bfff isMain:False<br>
dxva2.dll version:10.0.17763.1 debug_id:D33ACE66D9F5743CB8FA35C228C1E2351 address_range: 0x7ff8233a0000, 0x7ff8233c1fff isMain:False<br>
InputHost.dll version:0.0.0.0 debug_id:E0C728F9BD1442D6D62C294D99A5E6491 address_range: 0x7ff8235e0000, 0x7ff8236abfff isMain:False<br>
USP10.dll version:10.0.17763.864 debug_id:D6FCA7D58A4A08CAB9F324FD011A412F1 address_range: 0x7ff8239b0000, 0x7ff8239c8fff isMain:False<br>
TextInputFramework.dll version:10.0.17763.1192 debug_id:34775788214A5A30CDF35B7F029D72F11 address_range: 0x7ff823c40000, 0x7ff823cd4fff isMain:False<br>
Windows.UI.dll version:10.0.17763.1339 debug_id:A5D85CA480FCCC4E387DF2B258DA25CB1 address_range: 0x7ff824130000, 0x7ff824269fff isMain:False<br>
WINSPOOL.DRV version:10.0.17763.1075 debug_id:A8EE7D62B900095D405FB32F5F5F76C51 address_range: 0x7ff824320000, 0x7ff8243a8fff isMain:False<br>
XmlLite.dll version:10.0.17763.678 debug_id:5721B3BBDAA4AE45751A5069AB256AF81 address_range: 0x7ff825690000, 0x7ff8256c9fff isMain:False<br>
WINHTTP.dll version:10.0.17763.1158 debug_id:2A91CD2DA4A07101C374826477A63CC41 address_range: 0x7ff826470000, 0x7ff826561fff isMain:False<br>
OneCoreUAPCommonProxyStub.dll version:10.0.17763.1339 debug_id:F79C09E8D099E5936101DEAB0C877F941 address_range: 0x7ff828c20000, 0x7ff82935ffff isMain:False<br>
WinTypes.dll version:10.0.17763.1282 debug_id:242396AE397AF1A49DACE39DCD812F2D1 address_range: 0x7ff82abd0000, 0x7ff82ad22fff isMain:False<br>
CoreUIComponents.dll version:10.0.17763.1 debug_id:1089178BEDC250E9D96CF6067DDE27AA1 address_range: 0x7ff82ad30000, 0x7ff82b051fff isMain:False<br>
NLAapi.dll version:10.0.17763.134 debug_id:730A5F8D93A53C535677AE3BD22E97FE1 address_range: 0x7ff82b7b0000, 0x7ff82b7cafff isMain:False<br>
WTSAPI32.dll version:10.0.17763.1 debug_id:CCF42567326B35A9415CDBAFBBE00DC91 address_range: 0x7ff82bab0000, 0x7ff82bac2fff isMain:False<br>
winmmbase.dll version:10.0.17763.1 debug_id:6C33F857AA79E004B364C6CAE438F6C61 address_range: 0x7ff82bc50000, 0x7ff82bc7cfff isMain:False<br>
WINMM.dll version:10.0.17763.1 debug_id:FE5BC3BB0861BB5166ED9CD1D03D900E1 address_range: 0x7ff82bc80000, 0x7ff82bca3fff isMain:False<br>
d3d11.dll version:10.0.17763.1075 debug_id:6A773DBCC67F0127C9DFC15E128694081 address_range: 0x7ff82c1e0000, 0x7ff82c45dfff isMain:False<br>
d2d1.dll version:10.0.17763.1075 debug_id:4075FBCD6F1DECDA7A30EA5C0D1776821 address_range: 0x7ff82c460000, 0x7ff82ca1dfff isMain:False<br>
dcomp.dll version:10.0.17763.1339 debug_id:D15CB076DF0DDF35E770D2731F42BD501 address_range: 0x7ff82ca20000, 0x7ff82cbe3fff isMain:False<br>
CoreMessaging.dll version:10.0.17763.1217 debug_id:4155486EFECD873BB6983388197DAC3F1 address_range: 0x7ff82cf50000, 0x7ff82d031fff isMain:False<br>
dbghelp.dll version:10.0.17763.1 debug_id:7DF975A99AAE76FC7F424D4F5EBFB7AB1 address_range: 0x7ff82d2d0000, 0x7ff82d4bcfff isMain:False<br>
UxTheme.dll version:10.0.17763.1075 debug_id:B963717D165D22859BA5EC5E9477A5121 address_range: 0x7ff82d680000, 0x7ff82d71bfff isMain:False<br>
PROPSYS.dll version:7.0.17763.1075 debug_id:247E6860A57CBEBCFF615FABCB0BB8811 address_range: 0x7ff82d950000, 0x7ff82daf8fff isMain:False<br>
dwmapi.dll version:10.0.17763.1075 debug_id:D98E8C28852D180D719EF9F304F19EDE1 address_range: 0x7ff82dcf0000, 0x7ff82dd1dfff isMain:False<br>
twinapi.appcore.dll version:10.0.17763.1339 debug_id:E2A433267BA8D7D92B98C29145F72C711 address_range: 0x7ff82ddd0000, 0x7ff82dfe3fff isMain:False<br>
RMCLIENT.dll version:10.0.17763.678 debug_id:47BD1B0EF471621DC82223A5A44442951 address_range: 0x7ff82dff0000, 0x7ff82e017fff isMain:False<br>
HID.DLL version:10.0.17763.1 debug_id:AFB2E6F0F8450F6AE52ED7AC2DB7FC971 address_range: 0x7ff82e2e0000, 0x7ff82e2edfff isMain:False<br>
dxgi.dll version:10.0.17763.1075 debug_id:78B388E24F7A0054BFD7DF41E946FF961 address_range: 0x7ff82e390000, 0x7ff82e451fff isMain:False<br>
ntmarta.dll version:10.0.17763.1 debug_id:7A88238AAE1C9FDCC1CCEAD495AC94AF1 address_range: 0x7ff82e6e0000, 0x7ff82e710fff isMain:False<br>
WINSTA.dll version:10.0.17763.771 debug_id:0F53A9C01DF8A61A884EA92204A4D1721 address_range: 0x7ff82e750000, 0x7ff82e7a7fff isMain:False<br>
rsaenh.dll version:10.0.17763.1 debug_id:D3D5BE4EC6130656BA7F4EDA2805D0E41 address_range: 0x7ff82ea60000, 0x7ff82ea92fff isMain:False<br>
IPHLPAPI.DLL version:10.0.17763.615 debug_id:F5D7C4859D76CCF92A1E23A5C85BD2031 address_range: 0x7ff82ec00000, 0x7ff82ec3cfff isMain:False<br>
DNSAPI.dll version:10.0.17763.1192 debug_id:5D47EF775BCEA33593F13A3DA79094901 address_range: 0x7ff82ec40000, 0x7ff82ed06fff isMain:False<br>
mswsock.dll version:10.0.17763.1192 debug_id:DBA6104F7AE87DD9ACD2794B69988E8C1 address_range: 0x7ff82eee0000, 0x7ff82ef46fff isMain:False<br>
CRYPTBASE.DLL version:10.0.17763.1 debug_id:E9998E598056E0AEAE5EA6DDC91A20EF1 address_range: 0x7ff82f0b0000, 0x7ff82f0bbfff isMain:False<br>
NTASN1.dll version:10.0.17763.1 debug_id:C5E946AFD5310534611F451F392A41751 address_range: 0x7ff82f170000, 0x7ff82f1abfff isMain:False<br>
ncrypt.dll version:10.0.17763.1 debug_id:F65C1732A65F4B8C8AD40F359ACD99801 address_range: 0x7ff82f1b0000, 0x7ff82f1d5fff isMain:False<br>
DEVOBJ.dll version:10.0.17763.771 debug_id:FF377BC9657BBAC0097532F6D56F1CA31 address_range: 0x7ff82f480000, 0x7ff82f4a8fff isMain:False<br>
SSPICLI.DLL version:10.0.17763.1282 debug_id:52CBAB109400EF21E139FFDF56999D691 address_range: 0x7ff82f570000, 0x7ff82f5a5fff isMain:False<br>
USERENV.dll version:10.0.17763.831 debug_id:EBA6C3A88004A7FDDDA318732C0419741 address_range: 0x7ff82f5b0000, 0x7ff82f5d7fff isMain:False<br>
kernel.appcore.dll version:10.0.17763.1 debug_id:AAC9DF7583601C9F6E7606B89FCD4CD91 address_range: 0x7ff82f680000, 0x7ff82f690fff isMain:False<br>
MSASN1.dll version:10.0.17763.1 debug_id:F70616C4EF47794A6803C8448FE4A5161 address_range: 0x7ff82f6a0000, 0x7ff82f6b1fff isMain:False<br>
powrprof.dll version:10.0.17763.1 debug_id:015F6245E4605A2DD7F3525BA19A47A21 address_range: 0x7ff82f6c0000, 0x7ff82f71cfff isMain:False<br>
profapi.dll version:10.0.17763.1075 debug_id:EC17650253A4640F662335F2B1A764151 address_range: 0x7ff82f720000, 0x7ff82f743fff isMain:False<br>
KERNELBASE.dll version:10.0.17763.1339 debug_id:0F987CD25A4B9582C55096AB76CC90DC1 address_range: 0x7ff82f750000, 0x7ff82f9e4fff isMain:False<br>
gdi32full.dll version:10.0.17763.1339 debug_id:35B30C3D5568BB724134D50855B0F4FE1 address_range: 0x7ff82f9f0000, 0x7ff82fb8afff isMain:False<br>
CRYPT32.dll version:10.0.17763.973 debug_id:E62273DC5E985747D4FCAC32A04B666E1 address_range: 0x7ff82fb90000, 0x7ff82fd6bfff isMain:False<br>
WINTRUST.dll version:10.0.17763.348 debug_id:EBE9F1135381422CB8A6F61FE2C0768D1 address_range: 0x7ff82fd70000, 0x7ff82fdc8fff isMain:False<br>
cfgmgr32.dll version:10.0.17763.1 debug_id:45F7473D366FD1ECF7591C6E4230D4B11 address_range: 0x7ff82fdd0000, 0x7ff82fe19fff isMain:False<br>
windows.storage.dll version:10.0.17763.1339 debug_id:DF022EFE03CE1A245D611FFABE5C0B881 address_range: 0x7ff82fed0000, 0x7ff830623fff isMain:False<br>
bcryptPrimitives.dll version:10.0.17763.1217 debug_id:96EBDE28ABEA3E8F9626B1B5E847137A1 address_range: 0x7ff830630000, 0x7ff8306adfff isMain:False<br>
ucrtbase.dll version:10.0.17763.719 debug_id:012A78335BB70F0E966EBE286E5364741 address_range: 0x7ff8306b0000, 0x7ff8307a9fff isMain:False<br>
msvcp_win.dll version:10.0.17763.348 debug_id:9185B21C0598AA4CB7F486215FCC26F71 address_range: 0x7ff8307b0000, 0x7ff83084ffff isMain:False<br>
cryptsp.dll version:10.0.17763.1 debug_id:455DDA608895EA09E790DEAC3609EDD41 address_range: 0x7ff830850000, 0x7ff830866fff isMain:False<br>
win32u.dll version:10.0.17763.1 debug_id:B9CFFB2BDB97694A723B75722326117A1 address_range: 0x7ff830870000, 0x7ff83088ffff isMain:False<br>
bcrypt.dll version:10.0.17763.1 debug_id:2321E963504C55CC56BA233F6CC372FF1 address_range: 0x7ff830890000, 0x7ff8308b5fff isMain:False<br>
SHELL32.dll version:10.0.17763.1339 debug_id:7C23E874C23F1936E5CA1A508DC364831 address_range: 0x7ff8308c0000, 0x7ff831db7fff isMain:False<br>
COMDLG32.dll version:10.0.17763.1339 debug_id:7B3E0B8B92934D7317186A206A507FEE1 address_range: 0x7ff831de0000, 0x7ff831f06fff isMain:False<br>
KERNEL32.DLL version:10.0.17763.1339 debug_id:798693D3DD24BD3EF96CEC7186E09BC11 address_range: 0x7ff8320c0000, 0x7ff832172fff isMain:False<br>
RPCRT4.dll version:10.0.17763.864 debug_id:0697B7B1647DC1301ACB54D64BE4BED41 address_range: 0x7ff832180000, 0x7ff8322a1fff isMain:False<br>
OLEAUT32.dll version:10.0.17763.1339 debug_id:739F436B2D6EEE6636E69D26B3094EC21 address_range: 0x7ff832370000, 0x7ff832433fff isMain:False<br>
NSI.dll version:10.0.17763.831 debug_id:37E3A12FC659AB44190E893F433FCA691 address_range: 0x7ff832450000, 0x7ff832457fff isMain:False<br>
combase.dll version:10.0.17763.1282 debug_id:6E5D41B93116517EF17ED52CBA5040F71 address_range: 0x7ff832460000, 0x7ff83278bfff isMain:False<br>
advapi32.dll version:10.0.17763.1131 debug_id:51D14697A7F5875E2510C3BDA4E61B611 address_range: 0x7ff8327a0000, 0x7ff832842fff isMain:False<br>
sechost.dll version:10.0.17763.1339 debug_id:E8ADBD070AD9B49869A13D5CF9D9ADDC1 address_range: 0x7ff8328d0000, 0x7ff83296dfff isMain:False<br>
msvcrt.dll version:7.0.17763.475 debug_id:B40D63CF4E05FF62BDDF63550F5FBEF51 address_range: 0x7ff832970000, 0x7ff832a0dfff isMain:False<br>
shlwapi.dll version:10.0.17763.1 debug_id:BDDECBDA84263ED4FE95524D1D885FB21 address_range: 0x7ff832a10000, 0x7ff832a61fff isMain:False<br>
shcore.dll version:10.0.17763.1339 debug_id:13E4E1F47D127FCE793F3D4B2CF812251 address_range: 0x7ff832a70000, 0x7ff832b18fff isMain:False<br>
WS2_32.dll version:10.0.17763.771 debug_id:BF90CD8AB6B306E449A42D9C33A954B31 address_range: 0x7ff832ba0000, 0x7ff832c0cfff isMain:False<br>
clbcatq.dll version:2001.12.10941.16384 debug_id:7FC670CA236A586BF574696A1F75A4F21 address_range: 0x7ff832c10000, 0x7ff832cb1fff isMain:False<br>
ole32.dll version:10.0.17763.1075 debug_id:F2A2B9FDBFCFC65D3970853E21A23CB11 address_range: 0x7ff832d20000, 0x7ff832e74fff isMain:False<br>
IMM32.dll version:10.0.17763.719 debug_id:293BF10E493D5A87CF6A1786297DA86A1 address_range: 0x7ff832e80000, 0x7ff832eadfff isMain:False<br>
MSCTF.dll version:10.0.17763.1282 debug_id:050E037A420FC66FBB8A75CCE97847861 address_range: 0x7ff832eb0000, 0x7ff83301cfff isMain:False<br>
USER32.dll version:10.0.17763.1339 debug_id:6E12B3EF82F0451B1208A5F3DE7E57D41 address_range: 0x7ff833020000, 0x7ff8331b6fff isMain:False<br>
GDI32.dll version:10.0.17763.592 debug_id:B9CC671579E666AEB26CDE136D2FB4211 address_range: 0x7ff8331c0000, 0x7ff8331e8fff isMain:False<br>
ntdll.dll version:10.0.17763.1192 debug_id:FF98FE65248A4F35130AD2BCEDC0BE371 address_range: 0x7ff8336a0000, 0x7ff83388cfff isMain:False<br>
keytar.node version:0.0.0.0 debug_id:32B9AC3F8B703FE24C4C44205044422E1 address_range: 0x7fffbd7a0000, 0x7fffbda51fff isMain:False<br>
ffmpeg.dll version:0.0.0.0 debug_id:3858DDD424ADA6C14C4C44205044422E1 address_range: 0x7fffbda60000, 0x7fffbde29fff isMain:False<br>
libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll version:0.0.0.0 debug_id:F2A58E712B3282A54C4C44205044422E1 address_range: 0x7fffcbcd0000, 0x7fffcbf1ffff isMain:False<br>
logging.node version:0.0.0.0 debug_id:8369529BAFBDE8C94C4C44205044422E1 address_range: 0x7fffd8d90000, 0x7fffd9005fff isMain:False<br>
windows.applicationmodel.node version:0.0.0.0 debug_id:EC6BC150C9C149E2AEB1CBB433112DA11 address_range: 0x7fffe7ab0000, 0x7fffe7b4afff isMain:False<br>
windows.ui.notifications.node version:0.0.0.0 debug_id:5D3CCBAAD1FC473CBA527DB8EBA032B41 address_range: 0x7fffe9030000, 0x7fffe90dafff isMain:False<br>
MSVCP140.dll version:14.23.27820.0 debug_id:281A807C9D2447E794E484E559F61EF31 address_range: 0x7fffe9250000, 0x7fffe92e8fff isMain:False<br>
windows.storage.node version:0.0.0.0 debug_id:A67C23E63E6C4A0AA6D52B1687299F691 address_range: 0x7fffe9410000, 0x7fffe952afff isMain:False<br>
d3d9.dll version:10.0.17763.1075 debug_id:AF24D8F520B6B190E2D561E9DF0E11281 address_range: 0x7fffeb670000, 0x7fffeb80dfff isMain:False<br>
vccorlib140.DLL version:14.23.27820.0 debug_id:3F69A6A4CF0A4B76891794E6B5F69C2F1 address_range: 0x7ffff0780000, 0x7ffff07d9fff isMain:False<br>
MsSpellCheckingFacility.dll version:10.0.17763.1282 debug_id:764DDC48714259C8399F2FF8E0CC6FE91 address_range: 0x7ffffa710000, 0x7ffffa7f5fff isMain:False</p>
<p dir="auto">(app_source: windows_app_store)<br>
(application_state: initializing)<br>
(build_number: 234833437)<br>
(build_revision: 5899e0605095e4ec216245f929d64da554ff66f6)<br>
(device_id: 0402deca-c55f-49a1-9b82-7d3ab8e64ffd)<br>
(electron_version: 9.1.0)<br>
(in_rtc_call: false)<br>
(mobile_app_version: 62.8.119)<br>
(platform: win32)<br>
(process_type: main)<br>
(raw_minidump: GL8aQQO4Awr6OFkCAOItgbZC9VVFbgl-AAAA)<br>
(scribe_category: errorlog_app_crash)<br>
(user_id: None)</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>
<p dir="auto">Any help would be appreciated, thanks!</p>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>9.1.0</li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows NT 10.0.18362 959</li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>N/A</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Not to crash :)</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The app is crashing on start</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">This was observed through logging on user machines and we weren't able to get a local repro</p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto">N/A</p>
<h3 dir="auto">Additional Information</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="static void crashpad::`anonymous namespace'::HandleAbortSignal(int) [crashpad_client_win.cc]
Crash reason: 0x40000015 / 0x00000001
Crash thread: 0
Crash address: 0x7ff71b8c3f7b
Operating system: Windows NT
10.0.18362 959
CPU: amd64 family 6 model 26 stepping 5
8 CPUs
Thread 0
0 static void crashpad::`anonymous namespace'::HandleAbortSignal(int) App.exe [crashpad_client_win.cc : 189 + 0]
1 raise App.exe [signal.cpp : 541 + 0xe]
2 v8::base::OS::Abort() App.exe [platform-win32.cc : 931 + 0xa]
3 V8_Fatal(char const *,...) App.exe [logging.cc : 167 + 0x5]
4 static class v8::internal::MaybeHandle<v8::internal::Object> v8::internal::`anonymous namespace'::Invoke(class v8::internal::Isolate *, const struct v8::internal::`anonymous namespace'::InvokeParams & const) App.exe [execution.cc : 295 + 0xba]
5 v8::internal::Execution::Call(v8::internal::Isolate *,v8::internal::Handle<v8::internal::Object>,v8::internal::Handle<v8::internal::Object>,int,v8::internal::Handle<v8::internal::Object> * const) App.exe [execution.cc : 461 + 0xb]
6 v8::Function::Call(v8::Local<v8::Context>,v8::Local<v8::Value>,int,v8::Local<v8::Value> * const) App.exe [api.cc : 4994 + 0x2b]
7 node::InternalMakeCallback(node::Environment *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> * const,node::async_context) App.exe [callback.cc : 156 + 0x1c]
8 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 221 + 0x2f]
9 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::String>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 202 + 0x3e]
10 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,char const *,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 188 + 0x29]
11 gin_helper::internal::CallMethodWithArgs(v8::Isolate *,v8::Local<v8::Object>,char const *,std::__1::vector<v8::Local<v8::Value>,std::__1::allocator<v8::Local<v8::Value> > > *) App.exe [event_emitter_caller.cc : 23 + 0x24]
12 class v8::Local<v8::Value> gin_helper::EmitEvent<base::BasicStringPiece<std::__1::basic_string<char>>,v8::Local<v8::Object> &,const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class v8::Isolate *, class v8::Local<v8::Object>, const class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>> & const, class v8::Local<v8::Object> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter_caller.h : 50 + 0x1a]
13 bool gin_helper::EventEmitter<electron::api::App>::EmitWithEvent<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, class v8::Local<v8::Object>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 114 + 0x22]
14 bool gin_helper::EventEmitter<electron::api::App>::Emit<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 79 + 0x1e]
15 electron::api::App::OnSecondInstance(std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> >,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> > > > const &,base::FilePath const &) App.exe [electron_api_app.cc : 960 + 0x5]
16 static bool electron::api::`anonymous namespace'::NotificationCallbackWrapper(const class base::RepeatingCallback<void (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [electron_api_app.cc : 442 + 0xc]
17 static bool `anonymous namespace'::ProcessLaunchNotification(const class base::RepeatingCallback<bool (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, unsigned int, unsigned __int64, __int64, __int64 *) App.exe [process_singleton_win.cc : 157 + 0x11]
18 base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [message_window.cc : 156 + 0x18]
19 base::win::WrappedWindowProc<&base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64)>(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [wrapped_window_proc.h : 75 + 0x5]
20 USER32.dll + 0x15c1d
21 Builtins_JSEntry App.exe + 0xcc
Thread 0
0 static void crashpad::`anonymous namespace'::HandleAbortSignal(int) App.exe [crashpad_client_win.cc : 189 + 0]
rax=9014b75a36df rdx=7ffe4e2ac510 rcx=f776bea360 rbx=16 rsi=f776bea360 rdi=7ff71fd5dbf0 rbp=5 rsp=f776bea290 r8=f776bea8d8 r9=f776bea8d0 r10=ffee37187ea r11=40000000000 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71b8c3f7b
Found by: given as instruction pointer in context
1 raise App.exe [signal.cpp : 541 + 0xe]
rbx=16 rbp=5 rsp=f776bea850 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71e8fe6c5
Found by: call frame info
2 v8::base::OS::Abort() App.exe [platform-win32.cc : 931 + 0xa]
rbx=16 rbp=5 rsp=f776bea8c0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bad8edd
Found by: call frame info
3 V8_Fatal(char const *,...) App.exe [logging.cc : 167 + 0x5]
rbx=16 rbp=5 rsp=f776bea8f0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bad5720
Found by: call frame info
4 static class v8::internal::MaybeHandle<v8::internal::Object> v8::internal::`anonymous namespace'::Invoke(class v8::internal::Isolate *, const struct v8::internal::`anonymous namespace'::InvokeParams & const) App.exe [execution.cc : 295 + 0xba]
rbx=16 rbp=5 rsp=f776beab50 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71a0d7b82
Found by: call frame info
5 v8::internal::Execution::Call(v8::internal::Isolate *,v8::internal::Handle<v8::internal::Object>,v8::internal::Handle<v8::internal::Object>,int,v8::internal::Handle<v8::internal::Object> * const) App.exe [execution.cc : 461 + 0xb]
rbx=16 rbp=5 rsp=f776bead10 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71a0d6d7a
Found by: call frame info
6 v8::Function::Call(v8::Local<v8::Context>,v8::Local<v8::Value>,int,v8::Local<v8::Value> * const) App.exe [api.cc : 4994 + 0x2b]
rbx=16 rbp=5 rsp=f776beadc0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719fcd385
Found by: call frame info
7 node::InternalMakeCallback(node::Environment *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> * const,node::async_context) App.exe [callback.cc : 156 + 0x1c]
rbx=16 rbp=5 rsp=f776beaf10 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecc98
Found by: call frame info
8 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 221 + 0x2f]
rbx=16 rbp=5 rsp=f776beafe0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecfe5
Found by: call frame info
9 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::String>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 202 + 0x3e]
rbx=16 rbp=5 rsp=f776beb090 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecece
Found by: call frame info
10 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,char const *,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 188 + 0x29]
rbx=16 rbp=5 rsp=f776beb120 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecdfa
Found by: call frame info
11 gin_helper::internal::CallMethodWithArgs(v8::Isolate *,v8::Local<v8::Object>,char const *,std::__1::vector<v8::Local<v8::Value>,std::__1::allocator<v8::Local<v8::Value> > > *) App.exe [event_emitter_caller.cc : 23 + 0x24]
rbx=16 rbp=5 rsp=f776beb1c0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719592f10
Found by: call frame info
12 class v8::Local<v8::Value> gin_helper::EmitEvent<base::BasicStringPiece<std::__1::basic_string<char>>,v8::Local<v8::Object> &,const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class v8::Isolate *, class v8::Local<v8::Object>, const class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>> & const, class v8::Local<v8::Object> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter_caller.h : 50 + 0x1a]
rbx=16 rbp=5 rsp=f776beb260 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71947613f
Found by: call frame info
13 bool gin_helper::EventEmitter<electron::api::App>::EmitWithEvent<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, class v8::Local<v8::Object>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 114 + 0x22]
rbx=16 rbp=5 rsp=f776beb310 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719475fe1
Found by: call frame info
14 bool gin_helper::EventEmitter<electron::api::App>::Emit<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 79 + 0x1e]
rbx=16 rbp=5 rsp=f776beb3e0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71946bf8b
Found by: call frame info
15 electron::api::App::OnSecondInstance(std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> >,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> > > > const &,base::FilePath const &) App.exe [electron_api_app.cc : 960 + 0x5]
rbx=16 rbp=5 rsp=f776beb490 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71946bee9
Found by: call frame info
16 static bool electron::api::`anonymous namespace'::NotificationCallbackWrapper(const class base::RepeatingCallback<void (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [electron_api_app.cc : 442 + 0xc]
rbx=16 rbp=5 rsp=f776beb4d0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71946c14e
Found by: call frame info
17 static bool `anonymous namespace'::ProcessLaunchNotification(const class base::RepeatingCallback<bool (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, unsigned int, unsigned __int64, __int64, __int64 *) App.exe [process_singleton_win.cc : 157 + 0x11]
rbx=16 rbp=5 rsp=f776beb570 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719461f1c
Found by: call frame info
18 base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [message_window.cc : 156 + 0x18]
rbx=16 rbp=5 rsp=f776beb7a0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71b5f3ca4
Found by: call frame info
19 base::win::WrappedWindowProc<&base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64)>(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [wrapped_window_proc.h : 75 + 0x5]
rbx=16 rbp=5 rsp=f776beb810 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71b5f395f
Found by: call frame info
20 USER32.dll + 0x15c1d
rbx=16 rbp=5 rsp=f776beb840 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ffe4df15c1d
Found by: call frame info
21 Builtins_JSEntry App.exe + 0xcc
rsp=f776beb848 rip=7ff71a8ed44c
Found by: stack scanning
Thread 1
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e06d50 rcx=5c rbx=281d8e070d0 rsi=281d8e04ac0 rdi=281d8e070d0 rbp=0 rsp=f776eff9f8 r8=2 r9=0 r10=ff r11=f776eff640 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e070d0 rbp=0 rsp=f776effa00 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e070d0 rbp=0 rsp=f776effdc0 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f776effdf0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 2
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e07f20 rcx=5c rbx=281d8e082a0 rsi=281d8e04ac0 rdi=281d8e082a0 rbp=0 rsp=f776fff4a8 r8=f776ffec10 r9=281d8e137c0 r10=6c r11=f776ffea10 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e082a0 rbp=0 rsp=f776fff4b0 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e082a0 rbp=0 rsp=f776fff870 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f776fff8a0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 3
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e08710 rcx=5c rbx=281d8e08a90 rsi=281d8e04ac0 rdi=281d8e08a90 rbp=0 rsp=f7770ff398 r8=2 r9=0 r10=ff r11=f7770fefe0 r12=0 r13=281d8e04810 r14=2 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e08a90 rbp=0 rsp=f7770ff3a0 r12=0 r13=281d8e04810 r14=2 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e08a90 rbp=0 rsp=f7770ff760 r12=0 r13=281d8e04810 r14=2 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7770ff790 rip=7ffe4e28ce51
Found by: stack scanning
Thread 4
0 NtRemoveIoCompletion ntdll.dll + 0x14
rax=9 rdx=f7771ffb20 rcx=300 rbx=f7771ffb18 rsi=281dc26cd20 rdi=f7771ffb2c rbp=300 rsp=f7771ffa38 r8=281dc26cd30 r9=281dc26cd30 r10=0 r11=246 r12=f7771ffb48 r13=f7771ffb30 r14=0 r15=7ffe4d7efd10 rip=7ffe4e2bc194
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58403
rbx=f7771ffb18 rbp=300 rsp=f7771ffa40 r12=f7771ffb48 r13=f7771ffb30 r14=0 r15=7ffe4d7efd10 rip=7ffe4b298403
Found by: call frame info
2 KERNELBASE.dll + 0x6476b
rsp=f7771ffa70 rip=7ffe4b2a476b
Found by: stack scanning
3 sandbox::BrokerServicesBase::TargetEventsThread(void *) App.exe [broker_services.cc : 236 + 0x26]
rsp=f7771ffaa0 rip=7ff71c1bf917
Found by: stack scanning
4 KERNEL32.DLL + 0x17bd4
rsp=f7771ffbf0 rip=7ffe4d7f7bd4
Found by: call frame info
5 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7771ffc20 rip=7ffe4e28ce51
Found by: stack scanning
Thread 5
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=3dc rbx=0 rsi=f7772ff5e8 rdi=3dc rbp=7fffffffffffffff rsp=f7772ff5b8 r8=f7772ff683 r9=7ffed000 r10=546c6148 r11=fffffffff10dff53 r12=f7772ff688 r13=0 r14=3dc r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=7fffffffffffffff rsp=f7772ff5c0 r12=f7772ff688 r13=0 r14=3dc r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::sequence_manager::internal::SequenceManagerImpl::MaybeReclaimMemory() App.exe [sequence_manager_impl.cc : 962 + 0xd]
rbp=7fffffffffffffff rsp=f7772ff5d0 rip=7ff71b5b5eac
Found by: stack scanning
3 base::WaitableEvent::TimedWait(base::TimeDelta const &) App.exe [waitable_event_win.cc : 107 + 0x2]
rbp=7fffffffffffffff rsp=f7772ff660 rip=7ff71b5f0ac0
Found by: call frame info
4 base::MessagePumpDefault::Run(base::MessagePump::Delegate *) App.exe [message_pump_default.cc : 57 + 0xb]
rbp=7fffffffffffffff rsp=f7772ff750 rip=7ff71bd65ffe
Found by: call frame info
5 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rbp=7fffffffffffffff rsp=f7772ff7d0 rip=7ff71bd744e8
Found by: call frame info
6 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rbp=7fffffffffffffff rsp=f7772ff830 rip=7ff71b59bbba
Found by: call frame info
7 base::internal::ServiceThread::Run(base::RunLoop *) App.exe [service_thread.cc : 61 + 0x5]
rbp=7fffffffffffffff rsp=f7772ff8d0 rip=7ff71c994270
Found by: call frame info
8 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rbp=7fffffffffffffff rsp=f7772ff910 rip=7ff71b5c21a6
Found by: call frame info
9 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=7fffffffffffffff rsp=f7772ff990 rip=7ff71b5f13bd
Found by: call frame info
10 KERNEL32.DLL + 0x17bd4
rbp=7fffffffffffffff rsp=f7772ffa10 rip=7ffe4d7f7bd4
Found by: call frame info
11 RtlUserThreadStart ntdll.dll + 0x21
rbp=7fffffffffffffff rsp=f7772ffa40 rip=7ffe4e28ce51
Found by: stack scanning
Thread 6
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=380 rbx=0 rsi=f7773ff418 rdi=380 rbp=f7773ff668 rsp=f7773ff3e8 r8=f7773fefd0 r9=7ff719488c40 r10=0 r11=f7773fee30 r12=f7773ff4b8 r13=1 r14=380 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7773ff668 rsp=f7773ff3f0 r12=f7773ff4b8 r13=1 r14=380 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7773ff668 rsp=f7773ff400 rip=7ff71c997eff
Found by: stack scanning
Thread 7
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=388 rbx=0 rsi=f7774ffa58 rdi=388 rbp=0 rsp=f7774ffa28 r8=7937007d377105a6 r9=281dad00e40 r10=1 r11=7 r12=f7774ffaf8 r13=0 r14=388 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=0 rsp=f7774ffa30 r12=f7774ffaf8 r13=0 r14=388 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 RtlpFreeHeapInternal ntdll.dll + 0x3f4
rsp=f7774ffa40 rip=7ffe4e2603f4
Found by: stack scanning
Thread 8
0 NtRemoveIoCompletion ntdll.dll + 0x14
rax=9 rdx=f7775ff9d0 rcx=3a0 rbx=f7775ff9c8 rsi=281dad5ea20 rdi=f7775ff9c0 rbp=1 rsp=f7775ff918 r8=f7775ff4d0 r9=42 r10=0 r11=f7775ff380 r12=f7775ffa38 r13=0 r14=f7775ffa30 r15=7fffffffffffffff rip=7ffe4e2bc194
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58403
rbx=f7775ff9c8 rbp=1 rsp=f7775ff920 r12=f7775ffa38 r13=0 r14=f7775ffa30 r15=7fffffffffffffff rip=7ffe4b298403
Found by: call frame info
2 base::sequence_manager::internal::SequenceManagerImpl::HasPendingHighResolutionTasks() App.exe [sequence_manager_impl.cc : 698 + 0x5]
rsp=f7775ff930 rip=7ff71b5b5cd1
Found by: stack scanning
3 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() App.exe [thread_controller_with_message_pump_impl.cc : 399 + 0xd]
rsp=f7775ff970 rip=7ff71bd743ba
Found by: call frame info
4 base::MessagePumpForIO::DoRunLoop() App.exe [message_pump_win.cc : 643 + 0x3d]
rsp=f7775ffa00 rip=7ff71b5ed0f4
Found by: call frame info
5 base::MessagePumpWin::Run(base::MessagePump::Delegate *) App.exe [message_pump_win.cc : 74 + 0x9]
rsp=f7775ffa80 rip=7ff71b5eb88e
Found by: call frame info
6 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rsp=f7775ffad0 rip=7ff71bd744e8
Found by: call frame info
7 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rsp=f7775ffb30 rip=7ff71b59bbba
Found by: call frame info
8 content::BrowserProcessSubThread::IOThreadRun(base::RunLoop *) App.exe [browser_process_sub_thread.cc : 144 + 0xb]
rsp=f7775ffbd0 rip=7ff71ac3497b
Found by: call frame info
9 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rsp=f7775ffc30 rip=7ff71b5c21a6
Found by: call frame info
10 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rsp=f7775ffcb0 rip=7ff71b5f13bd
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7775ffd30 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7775ffd60 rip=7ffe4e28ce51
Found by: stack scanning
Thread 9
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=404 rbx=0 rsi=0 rdi=404 rbp=7fffffffffffffff rsp=f7776ff378 r8=2 r9=0 r10=ff r11=f7776fe600 r12=1 r13=0 r14=404 r15=f7776ff500 rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=7fffffffffffffff rsp=f7776ff380 r12=1 r13=0 r14=404 r15=f7776ff500 rip=7ffe4b278b03
Found by: call frame info
2 base::WaitableEvent::Wait() App.exe [waitable_event_win.cc : 69 + 0xb]
rbp=7fffffffffffffff rsp=f7776ff420 rip=7ff71b5f08ed
Found by: stack scanning
3 base::MessagePumpDefault::Run(base::MessagePump::Delegate *) App.exe [message_pump_default.cc : 55 + 0x8]
rbp=7fffffffffffffff rsp=f7776ff4e0 rip=7ff71bd6603f
Found by: call frame info
4 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rbp=7fffffffffffffff rsp=f7776ff560 rip=7ff71bd744e8
Found by: call frame info
5 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rbp=7fffffffffffffff rsp=f7776ff5c0 rip=7ff71b59bbba
Found by: call frame info
6 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rbp=7fffffffffffffff rsp=f7776ff660 rip=7ff71b5c21a6
Found by: call frame info
7 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=7fffffffffffffff rsp=f7776ff6e0 rip=7ff71b5f13bd
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rbp=7fffffffffffffff rsp=f7776ff760 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rbp=7fffffffffffffff rsp=f7776ff790 rip=7ffe4e28ce51
Found by: stack scanning
Thread 10
0 NtRemoveIoCompletionEx ntdll.dll + 0x14
rax=16a rdx=f7777fea60 rcx=42c rbx=0 rsi=f7777fea50 rdi=281dad6cf01 rbp=ffffffff rsp=f7777fe968 r8=0 r9=0 r10=546c6148 r11=fffffffff10dff53 r12=f7777fea60 r13=42c r14=80 r15=0 rip=7ffe4e2beda4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0xfbc53
rbx=0 rbp=ffffffff rsp=f7777fe970 r12=f7777fea60 r13=42c r14=80 r15=0 rip=7ffe4b33bc53
Found by: call frame info
2 uv_run App.exe [core.c : 528 + 0x2a]
rsp=f7777fea10 rip=7ff71bd342c0
Found by: stack scanning
3 node::WorkerThreadsTaskRunner::DelayedTaskScheduler::Run() App.exe [node_platform.cc : 90 + 0xa]
rsp=f7777ffad0 rip=7ff71bd2b911
Found by: call frame info
4 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7777ffb80 rip=7ff71bd34d42
Found by: call frame info
5 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7777ffbc0 rip=7ff71e8e37e0
Found by: call frame info
6 KERNEL32.DLL + 0x17bd4
rsp=f7777ffbf0 rip=7ffe4d7f7bd4
Found by: call frame info
7 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7777ffc20 rip=7ffe4e28ce51
Found by: stack scanning
Thread 11
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dad6cd78 rbx=0 rsi=f7778ff588 rdi=0 rbp=f7778ff5b0 rsp=f7778ff558 r8=4 r9=3 r10=14 r11=ffffffff00000000 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7778ff5b0 rsp=f7778ff560 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7778ff5b0 rsp=f7778ff5d0 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4b2bc2b9
Found by: call frame info
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7778ff600 rip=7ff71bd35210
Found by: stack scanning
4 node::TaskQueue<v8::Task>::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]
rsp=f7778ff630 rip=7ff71bd2ba7e
Found by: call frame info
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]
rsp=f7778ff680 rip=7ff71bd2a20c
Found by: call frame info
6 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7778ff740 rip=7ff71bd34d42
Found by: call frame info
7 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7778ff780 rip=7ff71e8e37e0
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rsp=f7778ff7b0 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7778ff7e0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 12
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dad6cd78 rbx=0 rsi=f7779ff9d8 rdi=0 rbp=f7779ffa00 rsp=f7779ff9a8 r8=0 r9=281dc224310 r10=0 r11=281dc12e690 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7779ffa00 rsp=f7779ff9b0 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7779ffa00 rsp=f7779ffa20 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4b2bc2b9
Found by: call frame info
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7779ffa50 rip=7ff71bd35210
Found by: stack scanning
4 node::TaskQueue<v8::Task>::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]
rsp=f7779ffa80 rip=7ff71bd2ba7e
Found by: call frame info
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]
rsp=f7779ffad0 rip=7ff71bd2a20c
Found by: call frame info
6 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7779ffb90 rip=7ff71bd34d42
Found by: call frame info
7 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7779ffbd0 rip=7ff71e8e37e0
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rsp=f7779ffc00 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7779ffc30 rip=7ffe4e28ce51
Found by: stack scanning
Thread 13
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dad6cd78 rbx=0 rsi=f777affa68 rdi=0 rbp=f777affa90 rsp=f777affa38 r8=7 r9=6 r10=20 r11=ffffffff00000000 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f777affa90 rsp=f777affa40 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f777affa90 rsp=f777affab0 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4b2bc2b9
Found by: call frame info
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f777affae0 rip=7ff71bd35210
Found by: stack scanning
4 node::TaskQueue<v8::Task>::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]
rsp=f777affb10 rip=7ff71bd2ba7e
Found by: call frame info
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]
rsp=f777affb60 rip=7ff71bd2a20c
Found by: call frame info
6 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f777affc20 rip=7ff71bd34d42
Found by: call frame info
7 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f777affc60 rip=7ff71e8e37e0
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rsp=f777affc90 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rsp=f777affcc0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 14
0 NtWaitForMultipleObjects ntdll.dll + 0x14
rax=5b rdx=f777bffc00 rcx=1 rbx=1 rsi=0 rdi=1 rbp=520 rsp=f777bff8a8 r8=281d8e7d6d0 r9=7ffe4c5905b0 r10=fffc98b20b6 r11=40001010040000 r12=ffffffff r13=f777bffc00 r14=0 r15=0 rip=7ffe4e2bcbc4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58037
rbx=1 rbp=520 rsp=f777bff8b0 r12=ffffffff r13=f777bffc00 r14=0 r15=0 rip=7ffe4b298037
Found by: call frame info
2 RMCLIENT.dll + 0x9720
rsp=f777bff8c8 rip=7ffe49a39720
Found by: stack scanning
3 LdrpInitializeThread ntdll.dll + 0x1fa
rsp=f777bff8d0 rip=7ffe4e242ee2
Found by: stack scanning
4 LdrpInitialize ntdll.dll + 0xa6
rsp=f777bff9b0 rip=7ffe4e291892
Found by: call frame info
5 LdrpInitialize ntdll.dll + 0x3b
rsp=f777bffa50 rip=7ffe4e2917d3
Found by: call frame info
Thread 15
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e81040 rcx=14 rbx=281d8e813c0 rsi=281d8e02340 rdi=281d8e813c0 rbp=0 rsp=f777cff468 r8=30 r9=30 r10=1 r11=1 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e813c0 rbp=0 rsp=f777cff470 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e813c0 rbp=0 rsp=f777cff830 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f777cff860 rip=7ffe4e28ce51
Found by: stack scanning
Thread 16
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e83780 rcx=14 rbx=281d8e83b00 rsi=281d8e02340 rdi=281d8e83b00 rbp=0 rsp=f777dffa38 r8=1 r9=1 r10=2 r11=f777dff630 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e83b00 rbp=0 rsp=f777dffa40 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e83b00 rbp=0 rsp=f777dffe00 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f777dffe30 rip=7ffe4e28ce51
Found by: stack scanning
Thread 17
0 NtWaitForMultipleObjects ntdll.dll + 0x14
rax=5b rdx=f777eff7f0 rcx=2 rbx=2 rsi=1 rdi=2 rbp=540 rsp=f777eff498 r8=7ffe4c74fa28 r9=1 r10=fffc5e76aae r11=40400404000400 r12=ffffffff r13=f777eff7f0 r14=0 r15=0 rip=7ffe4e2bcbc4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58037
rbx=2 rbp=540 rsp=f777eff4a0 r12=ffffffff r13=f777eff7f0 r14=0 r15=0 rip=7ffe4b298037
Found by: call frame info
2 RtlpHpFreeWithExceptionProtection ntdll.dll + 0x1e
rsp=f777eff4c0 rip=7ffe4e25fc6e
Found by: stack scanning
3 + 0xffffffffffffffff
rsp=f777eff530 rip=ffffffffffffffff
Found by: call frame info
4 KERNELBASE.dll + 0x58128
rsp=f777eff540 rip=7ffe4b298128
Found by: stack scanning
5 combase.dll + 0x52bb3
rsp=f777eff570 rip=7ffe4c532bb3
Found by: stack scanning
6 combase.dll + 0x5209d
rsp=f777eff5d0 rip=7ffe4c53209d
Found by: stack scanning
7 combase.dll + 0x2e3700
rsp=f777eff5e8 rip=7ffe4c7c3700
Found by: stack scanning
8 combase.dll + 0x53700
rsp=f777eff600 rip=7ffe4c533700
Found by: stack scanning
9 RtlpFreeActivationContextStackFrame ntdll.dll + 0x100
rsp=f777eff6d0 rip=7ffe4e28e688
Found by: stack scanning
Thread 18
0 win32u.dll + 0x9a84
rax=1452 rdx=f777fffbf0 rcx=1 rbx=7530 rsi=281d8f0f020 rdi=22b1d rbp=f777fffc20 rsp=f777fffad8 r8=1078 r9=1 r10=281d8ed9228 r11=281dbe700c8 r12=0 r13=0 r14=0 r15=0 rip=7ffe4bea9a84
Found by: given as instruction pointer in context
1 USER32.dll + 0x21cbd
rbp=f777fffc20 rsp=f777fffae0 rip=7ffe4df21cbd
Found by: stack scanning
2 windows.storage.dll + 0x178eab
rbp=f777fffc20 rsp=f777fffaf0 rip=7ffe4b888eab
Found by: stack scanning
3 shcore.dll + 0xc487
rbp=f777fffc20 rsp=f777fffb20 rip=7ffe4c9fc487
Found by: stack scanning
Thread 19
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8eae860 rcx=698 rbx=f776d86000 rsi=281d8eb1690 rdi=0 rbp=0 rsp=f7780ffa18 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=0 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=f776d86000 rbp=0 rsp=f7780ffa20 r12=0 r13=0 r14=0 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=f776d86000 rbp=0 rsp=f7780ffde0 r12=0 r13=0 r14=0 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7780ffe10 rip=7ffe4e28ce51
Found by: stack scanning
Thread 20
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7781ffd68 rdi=0 rbp=f7781ffd90 rsp=f7781ffd38 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7781ffd90 rsp=f7781ffd40 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7781ffd90 rsp=f7781ffdb0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7781ffdb8 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7781ffdc0 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7781ffdc8 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7781ffdd8 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7781ffde0 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7781ffe10 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7781ffe80 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7781ffec0 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7781ffef0 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7781fff20 rip=7ffe4e28ce51
Found by: stack scanning
Thread 21
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7782ffd08 rdi=0 rbp=f7782ffd30 rsp=f7782ffcd8 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7782ffd30 rsp=f7782ffce0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7782ffd30 rsp=f7782ffd50 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7782ffd58 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7782ffd60 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7782ffd68 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7782ffd78 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7782ffd80 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7782ffdb0 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7782ffe20 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7782ffe60 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7782ffe90 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7782ffec0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 22
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7783ff7b8 rdi=0 rbp=f7783ff7e0 rsp=f7783ff788 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7783ff7e0 rsp=f7783ff790 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7783ff7e0 rsp=f7783ff800 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7783ff808 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7783ff810 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7783ff818 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7783ff828 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7783ff830 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7783ff860 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7783ff8d0 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7783ff910 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7783ff940 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7783ff970 rip=7ffe4e28ce51
Found by: stack scanning
Thread 23
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7784ff9e8 rdi=0 rbp=f7784ffa10 rsp=f7784ff9b8 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7784ffa10 rsp=f7784ff9c0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7784ffa10 rsp=f7784ffa30 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7784ffa38 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7784ffa40 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7784ffa48 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7784ffa58 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7784ffa60 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7784ffa90 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7784ffb00 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7784ffb40 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7784ffb70 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7784ffba0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 24
0 win32u.dll + 0x9a84
rax=1452 rdx=f7785ffa38 rcx=1 rbx=f7785ffac0 rsi=281dc13a380 rdi=0 rbp=f7785ffb08 rsp=f7785ff9c8 r8=0 r9=0 r10=0 r11=f776db9800 r12=281dc13a380 r13=1 r14=f7785ffaf0 r15=f7785ffae0 rip=7ffe4bea9a84
Found by: given as instruction pointer in context
1 USER32.dll + 0x21cbd
rbp=f7785ffb08 rsp=f7785ff9d0 rip=7ffe4df21cbd
Found by: stack scanning
2 void base::internal::`anonymous namespace'::WorkerThreadDelegate::DidProcessTask(class base::internal::RegisteredTaskSource) App.exe [pooled_single_thread_task_runner_manager.cc : 132 + 0x15]
rbp=f7785ffb08 rsp=f7785ff9e0 rip=7ff71c996b44
Found by: stack scanning
3 base::internal::WorkerThread::RunWorker() App.exe [worker_thread.cc : 334 + 0x9]
rbp=f7785ffb08 rsp=f7785ffa60 rip=7ff71d43a5c9
Found by: call frame info
4 base::internal::WorkerThread::RunSharedCOMWorker() App.exe [worker_thread.cc : 261 + 0x5]
rbp=f7785ffb08 rsp=f7785ffb80 rip=7ff71d43a230
Found by: call frame info
5 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=f7785ffb08 rsp=f7785ffbc0 rip=7ff71b5f13bd
Found by: call frame info
6 KERNEL32.DLL + 0x17bd4
rbp=f7785ffb08 rsp=f7785ffc40 rip=7ffe4d7f7bd4
Found by: call frame info
7 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7785ffc70 rip=7ffe4e28ce51
Found by: stack scanning
Thread 25
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=730 rbx=0 rsi=f7786ff458 rdi=730 rbp=f7786ff6a8 rsp=f7786ff428 r8=30 r9=30 r10=1 r11=1 r12=f7786ff4f8 r13=1 r14=730 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7786ff6a8 rsp=f7786ff430 r12=f7786ff4f8 r13=1 r14=730 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7786ff6a8 rsp=f7786ff440 rip=7ff71c997eff
Found by: stack scanning
Thread 26
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=7cc rbx=0 rsi=f7787ff588 rdi=7cc rbp=f7787ff7d8 rsp=f7787ff558 r8=0 r9=281dc1b13c0 r10=281dc17a09c r11=f7787fe548 r12=f7787ff628 r13=1 r14=7cc r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7787ff7d8 rsp=f7787ff560 r12=f7787ff628 r13=1 r14=7cc r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7787ff7d8 rsp=f7787ff570 rip=7ff71c997eff
Found by: stack scanning
Thread 27
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=808 rbx=0 rsi=f7788ff628 rdi=808 rbp=f7788ff878 rsp=f7788ff5f8 r8=2 r9=0 r10=ca2882a2a r11=f7788fed30 r12=f7788ff6c8 r13=1 r14=808 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7788ff878 rsp=f7788ff600 r12=f7788ff6c8 r13=1 r14=808 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7788ff878 rsp=f7788ff610 rip=7ff71c997eff
Found by: stack scanning
Thread 28
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=80c rbx=0 rsi=f7789ff928 rdi=80c rbp=0 rsp=f7789ff8f8 r8=ff0 r9=1f r10=f7789fe920 r11=281dc1b4050 r12=f7789ff9c8 r13=0 r14=80c r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=0 rsp=f7789ff900 r12=f7789ff9c8 r13=0 r14=80c r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 RtlpFreeHeapInternal ntdll.dll + 0x3f4
rsp=f7789ff910 rip=7ffe4e2603f4
Found by: stack scanning
Thread 29
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dada2888 rbx=0 rsi=0 rdi=f778affc18 rbp=281dada2888 rsp=f778affa98 r8=f778affc18 r9=0 r10=0 r11=246 r12=0 r13=0 r14=281dada28d0 r15=0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableSRW ntdll.dll + 0x130
rbx=0 rbp=281dada2888 rsp=f778affaa0 r12=0 r13=0 r14=281dada28d0 r15=0 rip=7ffe4e280590
Found by: call frame info
2 KERNELBASE.dll + 0x258fd
rbx=0 rbp=281dada2888 rsp=f778affb10 r12=0 r13=0 r14=281dada28d0 r15=0 rip=7ffe4b2658fd
Found by: call frame info
3 RtlpHpFreeWithExceptionProtection ntdll.dll + 0x1e
rbp=281dada2888 rsp=f778affb30 rip=7ffe4e25fc6e
Found by: stack scanning
4 + 0x281dada2870
rbp=281dada2888 rsp=f778affba0 rip=281dada2870
Found by: call frame info
5 base::internal::LockImpl::Lock() App.exe [lock_impl_win.cc : 37 + 0x15]
rbp=281dada2888 rsp=f778affbd0 rip=7ff71b5f0797
Found by: stack scanning
6 cc::SingleThreadTaskGraphRunner::Run() App.exe [single_thread_task_graph_runner.cc : 123 + 0x8]
rbp=281dada2888 rsp=f778affc30 rip=7ff71b8751ed
Found by: call frame info
7 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=281dada2888 rsp=f778affc80 rip=7ff71b5f13bd
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rbp=281dada2888 rsp=f778affd00 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rbp=281dada2888 rsp=f778affd30 rip=7ffe4e28ce51
Found by: stack scanning
Thread 30
0 win32u.dll + 0x9a84
rax=1452 rdx=0 rcx=0 rbx=f778bff95c rsi=f778bffa00 rdi=7ffe4df21c20 rbp=0 rsp=f778bff8a8 r8=2 r9=0 r10=0 r11=f778bff970 r12=7fffffffffffffff r13=f778bff958 r14=f778bff920 r15=f778bff960 rip=7ffe4bea9a84
Found by: given as instruction pointer in context
1 USER32.dll + 0x21cbd
rsp=f778bff8b0 rip=7ffe4df21cbd
Found by: stack scanning
2 RtlUnwindEx App.exe + 0x6b2230
rsp=f778bff8d0 rip=7ff71efcec30
Found by: stack scanning
3 base::sequence_manager::internal::SequenceManagerImpl::OnSystemIdle() App.exe [sequence_manager_impl.cc : 713 + 0xc]
rsp=f778bff8e0 rip=7ff71b5b5de6
Found by: stack scanning
4 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() App.exe [thread_controller_with_message_pump_impl.cc : 399 + 0xd]
rsp=f778bff940 rip=7ff71bd743ba
Found by: call frame info
5 base::MessagePumpForUI::DoRunLoop() App.exe [message_pump_win.cc : 247 + 0x12]
rsp=f778bff9d0 rip=7ff71b5ec1ae
Found by: call frame info
6 base::MessagePumpWin::Run(base::MessagePump::Delegate *) App.exe [message_pump_win.cc : 74 + 0x9]
rsp=f778bffa90 rip=7ff71b5eb88e
Found by: call frame info
7 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rsp=f778bffae0 rip=7ff71bd744e8
Found by: call frame info
8 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rsp=f778bffb40 rip=7ff71b59bbba
Found by: call frame info
9 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rsp=f778bffbe0 rip=7ff71b5c21a6
Found by: call frame info
10 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rsp=f778bffc60 rip=7ff71b5f13bd
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f778bffce0 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f778bffd10 rip=7ffe4e28ce51
Found by: stack scanning
Thread 31
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=898 rbx=0 rsi=0 rdi=898 rbp=f778cff6a8 rsp=f778cff458 r8=f778cfea88 r9=f778cfeb00 r10=0 r11=f778cfe8d0 r12=281dc1c3c00 r13=1 r14=898 r15=f778cff680 rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f778cff6a8 rsp=f778cff460 r12=281dc1c3c00 r13=1 r14=898 r15=f778cff680 rip=7ffe4b278b03
Found by: call frame info
2 RtlUnwindEx App.exe + 0x341a46
rbp=f778cff6a8 rsp=f778cff478 rip=7ff71ec5e446
Found by: stack scanning
3 RtlUnwindEx App.exe + 0x341a0f
rbp=f778cff6a8 rsp=f778cff480 rip=7ff71ec5e40f
Found by: stack scanning
4 content::internal::ChildProcessLauncherHelper::StartLaunchOnClientThread() App.exe [child_process_launcher_helper.cc : 111 + 0x21]
rbp=f778cff6a8 rsp=f778cff490 rip=7ff71ac6eabe
Found by: stack scanning
Thread 32
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=8c0 rbx=0 rsi=0 rdi=8c0 rbp=0 rsp=f778dff788 r8=70 r9=4 r10=f778dfe510 r11=281dc1bb050 r12=0 r13=0 r14=8c0 r15=0 rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=0 rsp=f778dff790 r12=0 r13=0 r14=8c0 r15=0 rip=7ffe4b278b03
Found by: call frame info
2 KERNELBASE.dll + 0x5842e
rsp=f778dff7a0 rip=7ffe4b29842e
Found by: stack scanning
3 electron::NodeBindings::WakeupMainThread() App.exe [node_bindings.cc : 437 + 0x21]
rsp=f778dff810 rip=7ff71959792f
Found by: stack scanning
4 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f778dff8a0 rip=7ff71bd34d42
Found by: call frame info
5 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f778dff8e0 rip=7ff71e8e37e0
Found by: call frame info
6 KERNEL32.DLL + 0x17bd4
rsp=f778dff910 rip=7ffe4d7f7bd4
Found by: call frame info
7 RtlUserThreadStart ntdll.dll + 0x21
rsp=f778dff940 rip=7ffe4e28ce51
Found by: stack scanning
Thread 33
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281d8ec50d0 rbx=0 rsi=0 rdi=0 rbp=281d8ec50d0 rsp=f778eff888 r8=b7 r9=281d8eeb150 r10=0 r11=f778eff670 r12=281d8ec50a0 r13=281d8ec5110 r14=281d8ec5118 r15=0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableSRW ntdll.dll + 0x130
rbx=0 rbp=281d8ec50d0 rsp=f778eff890 r12=281d8ec50a0 r13=281d8ec5110 r14=281d8ec5118 r15=0 rip=7ffe4e280590
Found by: call frame info
2 KERNELBASE.dll + 0x258fd
rbx=0 rbp=281d8ec50d0 rsp=f778eff900 r12=281d8ec50a0 r13=281d8ec5110 r14=281d8ec5118 r15=0 rip=7ffe4b2658fd
Found by: call frame info
3 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x14b668
rbp=281d8ec50d0 rsp=f778eff940 rip=7ffe17b8b668
Found by: stack scanning
4 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148ba0
rbp=281d8ec50d0 rsp=f778eff980 rip=7ffe17b88ba0
Found by: stack scanning
5 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148d18
rbp=281d8ec50d0 rsp=f778eff9b0 rip=7ffe17b88d18
Found by: stack scanning
6 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1489bb
rbp=281d8ec50d0 rsp=f778eff9c0 rip=7ffe17b889bb
Found by: stack scanning
7 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0xfd119
rbp=281d8ec50d0 rsp=f778eff9d0 rip=7ffe17b3d119
Found by: stack scanning
8 free_base ucrtbase.dll + 0x1b
rbp=281d8ec50d0 rsp=f778eff9f0 rip=7ffe4bee14cb
Found by: stack scanning
9 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e0c0
rbp=281d8ec50d0 rsp=f778effa20 rip=7ffe17a8e0c0
Found by: call frame info
10 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3869
rbp=281d8ec50d0 rsp=f778effa48 rip=7ffe17be3869
Found by: stack scanning
11 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3873
rbp=281d8ec50d0 rsp=f778effa50 rip=7ffe17be3873
Found by: stack scanning
12 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e9b2
rbp=281d8ec50d0 rsp=f778effae0 rip=7ffe17a8e9b2
Found by: stack scanning
13 strset ucrtbase.dll + 0x8078
rbp=281d8ec50d0 rsp=f778effaf0 rip=7ffe4bf89b68
Found by: stack scanning
14 KERNELBASE.dll + 0x76315
rbp=281d8ec50d0 rsp=f778effb00 rip=7ffe4b2b6315
Found by: stack scanning
15 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4f28f
rbp=281d8ec50d0 rsp=f778effb30 rip=7ffe17a8f28f
Found by: stack scanning
16 kernel.appcore.dll + 0x2fe0
rbp=281d8ec50d0 rsp=f778effb40 rip=7ffe4b0e2fe0
Found by: stack scanning
17 strset ucrtbase.dll + 0x8078
rbp=281d8ec50d0 rsp=f778effb48 rip=7ffe4bf89b68
Found by: stack scanning
18 static thread_start<unsigned int (__cdecl*)(void *),1>() ucrtbase.dll + 0x42
rbp=281d8ec50d0 rsp=f778effb60 rip=7ffe4bef0e82
Found by: stack scanning
19 KERNEL32.DLL + 0x17bd4
rbp=281d8ec50d0 rsp=f778effb90 rip=7ffe4d7f7bd4
Found by: call frame info
20 RtlUserThreadStart ntdll.dll + 0x21
rbp=281d8ec50d0 rsp=f778effbc0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 34
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281d8ec46d0 rbx=0 rsi=0 rdi=0 rbp=281d8ec46d0 rsp=f778fff5c8 r8=0 r9=0 r10=281d8ec4718 r11=281d8d90000 r12=281d8ec46a0 r13=281d8ec4710 r14=281d8ec4718 r15=0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableSRW ntdll.dll + 0x130
rbx=0 rbp=281d8ec46d0 rsp=f778fff5d0 r12=281d8ec46a0 r13=281d8ec4710 r14=281d8ec4718 r15=0 rip=7ffe4e280590
Found by: call frame info
2 KERNELBASE.dll + 0x258fd
rbx=0 rbp=281d8ec46d0 rsp=f778fff640 r12=281d8ec46a0 r13=281d8ec4710 r14=281d8ec4718 r15=0 rip=7ffe4b2658fd
Found by: call frame info
3 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x14b668
rbp=281d8ec46d0 rsp=f778fff680 rip=7ffe17b8b668
Found by: stack scanning
4 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148ba0
rbp=281d8ec46d0 rsp=f778fff6c0 rip=7ffe17b88ba0
Found by: stack scanning
5 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148d18
rbp=281d8ec46d0 rsp=f778fff6f0 rip=7ffe17b88d18
Found by: stack scanning
6 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1489bb
rbp=281d8ec46d0 rsp=f778fff700 rip=7ffe17b889bb
Found by: stack scanning
7 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0xfd119
rbp=281d8ec46d0 rsp=f778fff710 rip=7ffe17b3d119
Found by: stack scanning
8 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e0c0
rbp=281d8ec46d0 rsp=f778fff760 rip=7ffe17a8e0c0
Found by: stack scanning
9 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3869
rbp=281d8ec46d0 rsp=f778fff788 rip=7ffe17be3869
Found by: stack scanning
10 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3873
rbp=281d8ec46d0 rsp=f778fff790 rip=7ffe17be3873
Found by: stack scanning
11 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e9b2
rbp=281d8ec46d0 rsp=f778fff820 rip=7ffe17a8e9b2
Found by: stack scanning
12 _acrt_FlsGetValue ucrtbase.dll + 0x41
rbp=281d8ec46d0 rsp=f778fff840 rip=7ffe4bede6b1
Found by: stack scanning
13 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4f28f
rbp=281d8ec46d0 rsp=f778fff870 rip=7ffe17a8f28f
Found by: call frame info
14 static thread_start<unsigned int (__cdecl*)(void *),1>() ucrtbase.dll + 0x42
rbp=281d8ec46d0 rsp=f778fff8a0 rip=7ffe4bef0e82
Found by: stack scanning
15 KERNEL32.DLL + 0x17bd4
rbp=281d8ec46d0 rsp=f778fff8d0 rip=7ffe4d7f7bd4
Found by: call frame info
16 RtlUserThreadStart ntdll.dll + 0x21
rbp=281d8ec46d0 rsp=f778fff900 rip=7ffe4e28ce51
Found by: stack scanning
App.exe version:62.8.119.17949 debug_id:3AA6A57192854E7C4C4C44205044422E1 address_range: 0x7ff719460000, 0x7ff72015ffff isMain:True
windows.storage.node version:0.0.0.0 debug_id:A67C23E63E6C4A0AA6D52B1687299F691 address_range: 0x7ffe0ad90000, 0x7ffe0aeaafff isMain:False
ffmpeg.dll version:0.0.0.0 debug_id:3858DDD424ADA6C14C4C44205044422E1 address_range: 0x7ffe0b480000, 0x7ffe0b849fff isMain:False
vccorlib140.DLL version:14.23.27820.0 debug_id:3F69A6A4CF0A4B76891794E6B5F69C2F1 address_range: 0x7ffe0cb90000, 0x7ffe0cbe9fff isMain:False
VCRUNTIME140_1.dll version:14.25.28508.3 debug_id:7930BDEB1D314DF88CD619BBAD3945C81 address_range: 0x7ffe10dc0000, 0x7ffe10dcbfff isMain:False
MSVCP140.dll version:14.23.27820.0 debug_id:281A807C9D2447E794E484E559F61EF31 address_range: 0x7ffe10dd0000, 0x7ffe10e68fff isMain:False
VCRUNTIME140.dll version:14.12.25810.0 debug_id:E93D4EDDDEB54C72857912DE41650BF41 address_range: 0x7ffe10e70000, 0x7ffe10e85fff isMain:False
libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll version:0.0.0.0 debug_id:F2A58E712B3282A54C4C44205044422E1 address_range: 0x7ffe17a40000, 0x7ffe17c8ffff isMain:False
logging.node version:0.0.0.0 debug_id:8369529BAFBDE8C94C4C44205044422E1 address_range: 0x7ffe17c90000, 0x7ffe17f05fff isMain:False
dxva2.dll version:10.0.18362.1 debug_id:AFE6A5C433702435EEA619E99FE197F11 address_range: 0x7ffe1a990000, 0x7ffe1a9b2fff isMain:False
USP10.dll version:10.0.18362.476 debug_id:A1BD2C89EF38A71FC773E33F7EB3FE971 address_range: 0x7ffe1a9c0000, 0x7ffe1a9d8fff isMain:False
UIAutomationCore.DLL version:7.2.18362.693 debug_id:79BA30E6125473159F6FA5AFA9C3574D1 address_range: 0x7ffe2c310000, 0x7ffe2c57ffff isMain:False
mssprxy.dll version:7.0.18362.719 debug_id:8BCCAA2D00D7839FA2C9196088FA90B11 address_range: 0x7ffe2ca90000, 0x7ffe2cab7fff isMain:False
Windows.Storage.ApplicationData.dll version:10.0.18362.959 debug_id:CB0AC065BFB7C141C8E5E1730842C6061 address_range: 0x7ffe2e350000, 0x7ffe2e3a3fff isMain:False
wpnapps.dll version:10.0.18362.959 debug_id:E8CE2C5DF520024B0761B4D87F47337C1 address_range: 0x7ffe2f370000, 0x7ffe2f4bbfff isMain:False
daxexec.dll version:10.0.18362.900 debug_id:BD6ECA3F7515FC843D77DC7524377B851 address_range: 0x7ffe32f00000, 0x7ffe32faafff isMain:False
container.dll version:10.0.18362.387 debug_id:AF8F0C6FA47765A6AC30B85276178C5E1 address_range: 0x7ffe33190000, 0x7ffe331d9fff isMain:False
Secur32.dll version:10.0.18362.1 debug_id:4A3A76407D4E89FF5DDB13891699F9411 address_range: 0x7ffe38600000, 0x7ffe3860bfff isMain:False
WINHTTP.dll version:10.0.18362.778 debug_id:BF029FAE7B9788BBE8A0D29A78421D7C1 address_range: 0x7ffe3a810000, 0x7ffe3a8fffff isMain:False
DWrite.dll version:10.0.18362.959 debug_id:1AB1FEDD2511BD89DDDECB41DDB1E5D51 address_range: 0x7ffe3bd20000, 0x7ffe3c01dfff isMain:False
urlmon.dll version:11.0.18362.815 debug_id:8FAA0E97791025581393B55CC5B68D301 address_range: 0x7ffe3c020000, 0x7ffe3c1f5fff isMain:False
iertutil.dll version:11.0.18362.815 debug_id:C425A291A3BBD4475187A20AA46C98BD1 address_range: 0x7ffe3c200000, 0x7ffe3c4a5fff isMain:False
InputHost.dll version:10.0.18362.959 debug_id:9A2C2076C0CF5B6B474F9D2DA882EE381 address_range: 0x7ffe3d5e0000, 0x7ffe3d6fafff isMain:False
Windows.UI.dll version:10.0.18362.959 debug_id:49ABCA4F19CF54BD3366C473576F242B1 address_range: 0x7ffe3d870000, 0x7ffe3d9c0fff isMain:False
TextInputFramework.dll version:10.0.18362.693 debug_id:E79AC938832C0AD2C3FA89AACD787C651 address_range: 0x7ffe3dba0000, 0x7ffe3dc3dfff isMain:False
OLEACC.dll version:7.2.18362.1 debug_id:0FA7C40302FAD1DB9ADF07DB9FB8A5F71 address_range: 0x7ffe3e790000, 0x7ffe3e7f4fff isMain:False
COMCTL32.dll version:6.10.18362.959 debug_id:49CFB891F354C0AA33CE9CBC47140A201 address_range: 0x7ffe3e800000, 0x7ffe3ea83fff isMain:False
d3d9.dll version:10.0.18362.387 debug_id:1FE36F30E9C8715E0A32B9AC529BD7D01 address_range: 0x7ffe3ef60000, 0x7ffe3f126fff isMain:False
WINSPOOL.DRV version:10.0.18362.693 debug_id:9200E1705475175E4C989CA8D2150ED41 address_range: 0x7ffe3f2b0000, 0x7ffe3f338fff isMain:False
dbghelp.dll version:10.0.18362.1 debug_id:3136B409D05FC8575AC873344F6EA4911 address_range: 0x7ffe419c0000, 0x7ffe41bb3fff isMain:False
dhcpcsvc6.DLL version:10.0.18362.815 debug_id:A2E7B71547E670385CF23E4CD4412A751 address_range: 0x7ffe41bc0000, 0x7ffe41bd5fff isMain:False
dhcpcsvc.DLL version:10.0.18362.815 debug_id:FC9FF53755DDA69AEDDF5ADBB347B5FD1 address_range: 0x7ffe42320000, 0x7ffe4233bfff isMain:False
capauthz.dll version:10.0.18362.1 debug_id:F3E6040E0F5AE497933677772A138D1E1 address_range: 0x7ffe42570000, 0x7ffe425befff isMain:False
MMDevApi.dll version:10.0.18362.387 debug_id:413DB27B4E4628EB08BC483DB42EBF0B1 address_range: 0x7ffe42ba0000, 0x7ffe42c11fff isMain:False
FLTLIB.DLL version:10.0.18362.1 debug_id:155993078BA3729EAA83ED63360920D81 address_range: 0x7ffe43030000, 0x7ffe43039fff isMain:False
MSIMG32.dll version:10.0.18362.959 debug_id:0EC81C169A335000704DDCB517AA9B471 address_range: 0x7ffe44240000, 0x7ffe44246fff isMain:False
VERSION.dll version:10.0.18362.1 debug_id:FCF21B9CBFDAC57B3D7C9E297AA714D21 address_range: 0x7ffe443d0000, 0x7ffe443d9fff isMain:False
windows.applicationmodel.node version:0.0.0.0 debug_id:EC6BC150C9C149E2AEB1CBB433112DA11 address_range: 0x7ffe44770000, 0x7ffe4480afff isMain:False
windows.ui.notifications.node version:0.0.0.0 debug_id:5D3CCBAAD1FC473CBA527DB8EBA032B41 address_range: 0x7ffe44f70000, 0x7ffe4501afff isMain:False
XmlLite.dll version:10.0.18362.295 debug_id:44859733799C569F44173E32844C86061 address_range: 0x7ffe45750000, 0x7ffe45784fff isMain:False
WinTypes.dll version:10.0.18362.900 debug_id:D3AB25082D21A1E70D031F0AD720E64B1 address_range: 0x7ffe46f30000, 0x7ffe47082fff isMain:False
CoreUIComponents.dll version:10.0.18362.207 debug_id:F17D23C01EC63692D1DB107C8DAD28AA1 address_range: 0x7ffe47170000, 0x7ffe47499fff isMain:False
NLAapi.dll version:10.0.18362.959 debug_id:1E0C3E6B872046473D319066EFFC94831 address_range: 0x7ffe47900000, 0x7ffe4791bfff isMain:False
PROPSYS.dll version:7.0.18362.815 debug_id:8D40397FF6A2E362F71CFFBEC112C49B1 address_range: 0x7ffe47a80000, 0x7ffe47b6ffff isMain:False
WTSAPI32.dll version:10.0.18362.1 debug_id:2DA85AEF00D2FB458A9B73AC391985391 address_range: 0x7ffe47bd0000, 0x7ffe47be2fff isMain:False
winmmbase.dll version:10.0.18362.1 debug_id:B19A643D5AC23F362DEBDBA18D33921D1 address_range: 0x7ffe47d50000, 0x7ffe47d7cfff isMain:False
WINMM.dll version:10.0.18362.1 debug_id:6D145E3B6417F20C489BD311F39E921B1 address_range: 0x7ffe47d80000, 0x7ffe47da3fff isMain:False
d3d11.dll version:10.0.18362.387 debug_id:78D86FA11FBDD9713F897703816B20F81 address_range: 0x7ffe48370000, 0x7ffe485cafff isMain:False
CoreMessaging.dll version:10.0.18362.836 debug_id:DB9FB4F9AE5AB92AC57FDF66A7E350BA1 address_range: 0x7ffe49050000, 0x7ffe49123fff isMain:False
UxTheme.dll version:10.0.18362.449 debug_id:248E8408B4CA0E2A571DD54AFC9CA2741 address_range: 0x7ffe49420000, 0x7ffe494b8fff isMain:False
dwmapi.dll version:10.0.18362.267 debug_id:B9A27EB1451577911FC55AA4B5F9FDAE1 address_range: 0x7ffe49510000, 0x7ffe4953cfff isMain:False
twinapi.appcore.dll version:10.0.18362.959 debug_id:3F8FAB6DD2E2E3B169DE76FCAD97C1C91 address_range: 0x7ffe49540000, 0x7ffe497a1fff isMain:False
RMCLIENT.dll version:10.0.18362.267 debug_id:18973751CCE15FA091C60B9CB9E9C9591 address_range: 0x7ffe49a30000, 0x7ffe49a58fff isMain:False
HID.DLL version:10.0.18362.1 debug_id:C56ADCAE049303C41A632B93413F71151 address_range: 0x7ffe49ce0000, 0x7ffe49cedfff isMain:False
dxcore.dll version:10.0.18362.1 debug_id:33BB03A6A0D12CE88F0B5721CB8EB54A1 address_range: 0x7ffe49d40000, 0x7ffe49d5ffff isMain:False
dxgi.dll version:10.0.18362.815 debug_id:614357BB84DDD4CDD8787E22DC73B9E11 address_range: 0x7ffe49dd0000, 0x7ffe49ebafff isMain:False
ntmarta.dll version:10.0.18362.1 debug_id:D28B6BE617CA26467BC4D4A2CD0BB7AA1 address_range: 0x7ffe4a130000, 0x7ffe4a160fff isMain:False
WINSTA.dll version:10.0.18362.836 debug_id:3A51ED08B35D257D4354D8F42F601B121 address_range: 0x7ffe4a1a0000, 0x7ffe4a1f5fff isMain:False
rsaenh.dll version:10.0.18362.1 debug_id:97AF558854C0A219FD6A24F1F50F57311 address_range: 0x7ffe4a4b0000, 0x7ffe4a4e2fff isMain:False
IPHLPAPI.DLL version:10.0.18362.1 debug_id:A3177875244A46C8B31AF3DC3C6E1A341 address_range: 0x7ffe4a650000, 0x7ffe4a689fff isMain:False
DNSAPI.dll version:10.0.18362.815 debug_id:D73C7E4CE7E15ADD4F80DEE7F80E14D81 address_range: 0x7ffe4a690000, 0x7ffe4a75afff isMain:False
mswsock.dll version:10.0.18362.815 debug_id:835DC4B8116DDDA3C6B8A99B41BDB6E61 address_range: 0x7ffe4a940000, 0x7ffe4a9a6fff isMain:False
CRYPTBASE.DLL version:10.0.18362.1 debug_id:7588B6A3BD73290472DD810CEDFF8B821 address_range: 0x7ffe4ab10000, 0x7ffe4ab1bfff isMain:False
NTASN1.dll version:10.0.18362.1 debug_id:6B406A9E4F8B5AC5C8C4ECED22C5304C1 address_range: 0x7ffe4abd0000, 0x7ffe4ac0afff isMain:False
ncrypt.dll version:10.0.18362.1 debug_id:D2E25DA68B7DB60F04BC77907C23D5F61 address_range: 0x7ffe4ac10000, 0x7ffe4ac35fff isMain:False
DEVOBJ.dll version:10.0.18362.387 debug_id:8C31C73F74C69C4587C124613932A69D1 address_range: 0x7ffe4aed0000, 0x7ffe4aef9fff isMain:False
SSPICLI.DLL version:10.0.18362.1 debug_id:823D5A41E0D702A79C98A0A257924F9E1 address_range: 0x7ffe4afc0000, 0x7ffe4afeefff isMain:False
USERENV.dll version:10.0.18362.387 debug_id:9DF9BD938015A08CCF24399E8FB0A8D81 address_range: 0x7ffe4aff0000, 0x7ffe4b014fff isMain:False
UMPDC.dll version:0.0.0.0 debug_id:1504CC553EDB4294AC748FBEA390E9571 address_range: 0x7ffe4b0d0000, 0x7ffe4b0dffff isMain:False
kernel.appcore.dll version:10.0.18362.1 debug_id:B44A2A638A5CA8D814E9400D5FACD1FC1 address_range: 0x7ffe4b0e0000, 0x7ffe4b0f0fff isMain:False
MSASN1.dll version:10.0.18362.1 debug_id:FF420EFB35B10AA763D7FC05B2CED0A81 address_range: 0x7ffe4b100000, 0x7ffe4b111fff isMain:False
profapi.dll version:10.0.18362.693 debug_id:24C1A8B41030978083EE59C74E9580B81 address_range: 0x7ffe4b120000, 0x7ffe4b142fff isMain:False
powrprof.dll version:10.0.18362.1 debug_id:BAE22F436C95A7D5066F6C645A3500D51 address_range: 0x7ffe4b150000, 0x7ffe4b199fff isMain:False
msvcp_win.dll version:10.0.18362.815 debug_id:DE65FEF916BB6B73D06E0BB314C952341 address_range: 0x7ffe4b1a0000, 0x7ffe4b23dfff isMain:False
KERNELBASE.dll version:10.0.18362.959 debug_id:D517CA9ACA2078ADABEB0578B89079371 address_range: 0x7ffe4b240000, 0x7ffe4b4e3fff isMain:False
gdi32full.dll version:10.0.18362.959 debug_id:6D96D581BCA445B0A11DEAB68C014E671 address_range: 0x7ffe4b4f0000, 0x7ffe4b685fff isMain:False
bcryptPrimitives.dll version:10.0.18362.836 debug_id:9E2F1012F2DC5AC45255C35203A850D81 address_range: 0x7ffe4b690000, 0x7ffe4b70ffff isMain:False
windows.storage.dll version:10.0.18362.959 debug_id:D975D3DD8EDE2701C0C2AF18256003BD1 address_range: 0x7ffe4b710000, 0x7ffe4be91fff isMain:False
win32u.dll version:10.0.18362.959 debug_id:BC2E49ABE46D2E93B278B4DECFCA62A81 address_range: 0x7ffe4bea0000, 0x7ffe4bec0fff isMain:False
ucrtbase.dll version:10.0.18362.815 debug_id:15DCD9554735C5FBF0B28E3E15FBA9E51 address_range: 0x7ffe4bed0000, 0x7ffe4bfc9fff isMain:False
cryptsp.dll version:10.0.18362.1 debug_id:7618DEBEAC0F99987F3CAFD7430FC6EC1 address_range: 0x7ffe4c080000, 0x7ffe4c096fff isMain:False
cfgmgr32.dll version:10.0.18362.387 debug_id:C951EE8EA9B38EBFAED12377BDD8DD731 address_range: 0x7ffe4c0a0000, 0x7ffe4c0e9fff isMain:False
WINTRUST.dll version:10.0.18362.387 debug_id:4CB14CB920AC3FFA05B74B96AC368B291 address_range: 0x7ffe4c0f0000, 0x7ffe4c14bfff isMain:False
CRYPT32.dll version:10.0.18362.592 debug_id:214CDCF5653C044BE1695042E80DE6ED1 address_range: 0x7ffe4c150000, 0x7ffe4c298fff isMain:False
bcrypt.dll version:10.0.18362.267 debug_id:1A47218203678386DF440D6572C07FB71 address_range: 0x7ffe4c2a0000, 0x7ffe4c2c5fff isMain:False
ole32.dll version:10.0.18362.693 debug_id:DC73A1686F947185B5C2E2E35AD9F1BE1 address_range: 0x7ffe4c2d0000, 0x7ffe4c426fff isMain:False
sechost.dll version:10.0.18362.959 debug_id:163EA654B46707AA327963B5C7AC631D1 address_range: 0x7ffe4c430000, 0x7ffe4c4c6fff isMain:False
NSI.dll version:10.0.18362.449 debug_id:E62356AC433038BCB83C5FB9679DBA161 address_range: 0x7ffe4c4d0000, 0x7ffe4c4d7fff isMain:False
combase.dll version:10.0.18362.900 debug_id:A88ED30F8D97402835C42EED2C04A69B1 address_range: 0x7ffe4c4e0000, 0x7ffe4c814fff isMain:False
clbcatq.dll version:2001.12.10941.16384 debug_id:DA759F99B2BB75C2171C691554EB98B21 address_range: 0x7ffe4c820000, 0x7ffe4c8c1fff isMain:False
msvcrt.dll version:7.0.18362.1 debug_id:1FEA8DB6B57F5FBFA935E090243420D01 address_range: 0x7ffe4c8d0000, 0x7ffe4c96dfff isMain:False
shcore.dll version:10.0.18362.959 debug_id:3BF581C59EDA22C2CBC6197D4CC9810C1 address_range: 0x7ffe4c9f0000, 0x7ffe4ca98fff isMain:False
SHELL32.dll version:10.0.18362.959 debug_id:4E02104DB6D8096BB22F25858EFF6A921 address_range: 0x7ffe4caa0000, 0x7ffe4d185fff isMain:False
GDI32.dll version:10.0.18362.1 debug_id:209AD405837D061EF9D34CBDC009D7711 address_range: 0x7ffe4d190000, 0x7ffe4d1b5fff isMain:False
advapi32.dll version:10.0.18362.752 debug_id:41BA7F97400F96826215223FA4A29F2A1 address_range: 0x7ffe4d630000, 0x7ffe4d6d2fff isMain:False
IMM32.dll version:10.0.18362.387 debug_id:A71334B42E3311D0561A8F034058292D1 address_range: 0x7ffe4d6e0000, 0x7ffe4d70dfff isMain:False
COMDLG32.dll version:10.0.18362.900 debug_id:9F7F6C8F15133DBE3A073517F2560E4D1 address_range: 0x7ffe4d710000, 0x7ffe4d7dffff isMain:False
KERNEL32.DLL version:10.0.18362.959 debug_id:E5021BC0C818845BB7558654339B0FE81 address_range: 0x7ffe4d7e0000, 0x7ffe4d891fff isMain:False
RPCRT4.dll version:10.0.18362.628 debug_id:6104857DED3A09A289E87498A7125B731 address_range: 0x7ffe4d8a0000, 0x7ffe4d9bffff isMain:False
MSCTF.dll version:10.0.18362.900 debug_id:68E37BCD655FDE378FABDAEBCD6880581 address_range: 0x7ffe4d9c0000, 0x7ffe4daf4fff isMain:False
shlwapi.dll version:10.0.18362.1 debug_id:8B7DB15A0B8993DF43A76023DF895ED01 address_range: 0x7ffe4db10000, 0x7ffe4db61fff isMain:False
OLEAUT32.dll version:10.0.18362.959 debug_id:2E6890B676D0B413F58FFE10EE566C931 address_range: 0x7ffe4dd40000, 0x7ffe4de04fff isMain:False
WS2_32.dll version:10.0.18362.387 debug_id:A2BDFAA4631B2679BD34BB6670BFA69C1 address_range: 0x7ffe4de90000, 0x7ffe4defefff isMain:False
USER32.dll version:10.0.18362.959 debug_id:034AFFE8331738A54EC07A7655CAF0DC1 address_range: 0x7ffe4df00000, 0x7ffe4e093fff isMain:False
ntdll.dll version:10.0.18362.815 debug_id:54A4ABD98E75ECCB93B912D2747051301 address_range: 0x7ffe4e220000, 0x7ffe4e40ffff isMain:False
(app_source: windows_app_store)
(application_state: initializing)
(build_number: 234833437)
(build_revision: 5899e0605095e4ec216245f929d64da554ff66f6)
(device_id: 2476b0a8-7fc7-44b0-8aaf-3207b36a1fdb)
(electron_version: 9.1.0)
(in_rtc_call: false)
(mobile_app_version: 62.8.119)
(platform: win32)
(process_type: main)
(raw_minidump: GIYWmwMJJe-uoMcBAJvpi67TlxQpbgl-AAAA)
(scribe_category: errorlog_app_crash)
(user_id: None)"><pre class="notranslate"><code class="notranslate">static void crashpad::`anonymous namespace'::HandleAbortSignal(int) [crashpad_client_win.cc]
Crash reason: 0x40000015 / 0x00000001
Crash thread: 0
Crash address: 0x7ff71b8c3f7b
Operating system: Windows NT
10.0.18362 959
CPU: amd64 family 6 model 26 stepping 5
8 CPUs
Thread 0
0 static void crashpad::`anonymous namespace'::HandleAbortSignal(int) App.exe [crashpad_client_win.cc : 189 + 0]
1 raise App.exe [signal.cpp : 541 + 0xe]
2 v8::base::OS::Abort() App.exe [platform-win32.cc : 931 + 0xa]
3 V8_Fatal(char const *,...) App.exe [logging.cc : 167 + 0x5]
4 static class v8::internal::MaybeHandle<v8::internal::Object> v8::internal::`anonymous namespace'::Invoke(class v8::internal::Isolate *, const struct v8::internal::`anonymous namespace'::InvokeParams & const) App.exe [execution.cc : 295 + 0xba]
5 v8::internal::Execution::Call(v8::internal::Isolate *,v8::internal::Handle<v8::internal::Object>,v8::internal::Handle<v8::internal::Object>,int,v8::internal::Handle<v8::internal::Object> * const) App.exe [execution.cc : 461 + 0xb]
6 v8::Function::Call(v8::Local<v8::Context>,v8::Local<v8::Value>,int,v8::Local<v8::Value> * const) App.exe [api.cc : 4994 + 0x2b]
7 node::InternalMakeCallback(node::Environment *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> * const,node::async_context) App.exe [callback.cc : 156 + 0x1c]
8 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 221 + 0x2f]
9 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::String>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 202 + 0x3e]
10 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,char const *,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 188 + 0x29]
11 gin_helper::internal::CallMethodWithArgs(v8::Isolate *,v8::Local<v8::Object>,char const *,std::__1::vector<v8::Local<v8::Value>,std::__1::allocator<v8::Local<v8::Value> > > *) App.exe [event_emitter_caller.cc : 23 + 0x24]
12 class v8::Local<v8::Value> gin_helper::EmitEvent<base::BasicStringPiece<std::__1::basic_string<char>>,v8::Local<v8::Object> &,const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class v8::Isolate *, class v8::Local<v8::Object>, const class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>> & const, class v8::Local<v8::Object> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter_caller.h : 50 + 0x1a]
13 bool gin_helper::EventEmitter<electron::api::App>::EmitWithEvent<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, class v8::Local<v8::Object>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 114 + 0x22]
14 bool gin_helper::EventEmitter<electron::api::App>::Emit<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 79 + 0x1e]
15 electron::api::App::OnSecondInstance(std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> >,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> > > > const &,base::FilePath const &) App.exe [electron_api_app.cc : 960 + 0x5]
16 static bool electron::api::`anonymous namespace'::NotificationCallbackWrapper(const class base::RepeatingCallback<void (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [electron_api_app.cc : 442 + 0xc]
17 static bool `anonymous namespace'::ProcessLaunchNotification(const class base::RepeatingCallback<bool (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, unsigned int, unsigned __int64, __int64, __int64 *) App.exe [process_singleton_win.cc : 157 + 0x11]
18 base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [message_window.cc : 156 + 0x18]
19 base::win::WrappedWindowProc<&base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64)>(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [wrapped_window_proc.h : 75 + 0x5]
20 USER32.dll + 0x15c1d
21 Builtins_JSEntry App.exe + 0xcc
Thread 0
0 static void crashpad::`anonymous namespace'::HandleAbortSignal(int) App.exe [crashpad_client_win.cc : 189 + 0]
rax=9014b75a36df rdx=7ffe4e2ac510 rcx=f776bea360 rbx=16 rsi=f776bea360 rdi=7ff71fd5dbf0 rbp=5 rsp=f776bea290 r8=f776bea8d8 r9=f776bea8d0 r10=ffee37187ea r11=40000000000 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71b8c3f7b
Found by: given as instruction pointer in context
1 raise App.exe [signal.cpp : 541 + 0xe]
rbx=16 rbp=5 rsp=f776bea850 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71e8fe6c5
Found by: call frame info
2 v8::base::OS::Abort() App.exe [platform-win32.cc : 931 + 0xa]
rbx=16 rbp=5 rsp=f776bea8c0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bad8edd
Found by: call frame info
3 V8_Fatal(char const *,...) App.exe [logging.cc : 167 + 0x5]
rbx=16 rbp=5 rsp=f776bea8f0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bad5720
Found by: call frame info
4 static class v8::internal::MaybeHandle<v8::internal::Object> v8::internal::`anonymous namespace'::Invoke(class v8::internal::Isolate *, const struct v8::internal::`anonymous namespace'::InvokeParams & const) App.exe [execution.cc : 295 + 0xba]
rbx=16 rbp=5 rsp=f776beab50 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71a0d7b82
Found by: call frame info
5 v8::internal::Execution::Call(v8::internal::Isolate *,v8::internal::Handle<v8::internal::Object>,v8::internal::Handle<v8::internal::Object>,int,v8::internal::Handle<v8::internal::Object> * const) App.exe [execution.cc : 461 + 0xb]
rbx=16 rbp=5 rsp=f776bead10 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71a0d6d7a
Found by: call frame info
6 v8::Function::Call(v8::Local<v8::Context>,v8::Local<v8::Value>,int,v8::Local<v8::Value> * const) App.exe [api.cc : 4994 + 0x2b]
rbx=16 rbp=5 rsp=f776beadc0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719fcd385
Found by: call frame info
7 node::InternalMakeCallback(node::Environment *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> * const,node::async_context) App.exe [callback.cc : 156 + 0x1c]
rbx=16 rbp=5 rsp=f776beaf10 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecc98
Found by: call frame info
8 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::Function>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 221 + 0x2f]
rbx=16 rbp=5 rsp=f776beafe0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecfe5
Found by: call frame info
9 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,v8::Local<v8::String>,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 202 + 0x3e]
rbx=16 rbp=5 rsp=f776beb090 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecece
Found by: call frame info
10 node::MakeCallback(v8::Isolate *,v8::Local<v8::Object>,char const *,int,v8::Local<v8::Value> *,node::async_context) App.exe [callback.cc : 188 + 0x29]
rbx=16 rbp=5 rsp=f776beb120 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71bcecdfa
Found by: call frame info
11 gin_helper::internal::CallMethodWithArgs(v8::Isolate *,v8::Local<v8::Object>,char const *,std::__1::vector<v8::Local<v8::Value>,std::__1::allocator<v8::Local<v8::Value> > > *) App.exe [event_emitter_caller.cc : 23 + 0x24]
rbx=16 rbp=5 rsp=f776beb1c0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719592f10
Found by: call frame info
12 class v8::Local<v8::Value> gin_helper::EmitEvent<base::BasicStringPiece<std::__1::basic_string<char>>,v8::Local<v8::Object> &,const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class v8::Isolate *, class v8::Local<v8::Object>, const class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>> & const, class v8::Local<v8::Object> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter_caller.h : 50 + 0x1a]
rbx=16 rbp=5 rsp=f776beb260 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71947613f
Found by: call frame info
13 bool gin_helper::EventEmitter<electron::api::App>::EmitWithEvent<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, class v8::Local<v8::Object>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 114 + 0x22]
rbx=16 rbp=5 rsp=f776beb310 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719475fe1
Found by: call frame info
14 bool gin_helper::EventEmitter<electron::api::App>::Emit<const std::__1::vector<std::__1::basic_string<wchar_t>,std::__1::allocator<std::__1::basic_string<wchar_t>>> &,const base::FilePath &>(class base::BasicStringPiece<std::__1::basic_string<char,std::__1::char_traits<char>,std::__1::allocator<char>>>, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [event_emitter.h : 79 + 0x1e]
rbx=16 rbp=5 rsp=f776beb3e0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71946bf8b
Found by: call frame info
15 electron::api::App::OnSecondInstance(std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> >,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t> > > > const &,base::FilePath const &) App.exe [electron_api_app.cc : 960 + 0x5]
rbx=16 rbp=5 rsp=f776beb490 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71946bee9
Found by: call frame info
16 static bool electron::api::`anonymous namespace'::NotificationCallbackWrapper(const class base::RepeatingCallback<void (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, const class std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> & const, const class base::FilePath & const) App.exe [electron_api_app.cc : 442 + 0xc]
rbx=16 rbp=5 rsp=f776beb4d0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71946c14e
Found by: call frame info
17 static bool `anonymous namespace'::ProcessLaunchNotification(const class base::RepeatingCallback<bool (const std::__1::vector<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>,std::__1::allocator<std::__1::basic_string<wchar_t,std::__1::char_traits<wchar_t>,std::__1::allocator<wchar_t>>>> &, const base::FilePath &)> & const, unsigned int, unsigned __int64, __int64, __int64 *) App.exe [process_singleton_win.cc : 157 + 0x11]
rbx=16 rbp=5 rsp=f776beb570 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff719461f1c
Found by: call frame info
18 base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [message_window.cc : 156 + 0x18]
rbx=16 rbp=5 rsp=f776beb7a0 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71b5f3ca4
Found by: call frame info
19 base::win::WrappedWindowProc<&base::win::MessageWindow::WindowProc(HWND__ *,unsigned int,unsigned __int64,__int64)>(HWND__ *,unsigned int,unsigned __int64,__int64) App.exe [wrapped_window_proc.h : 75 + 0x5]
rbx=16 rbp=5 rsp=f776beb810 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ff71b5f395f
Found by: call frame info
20 USER32.dll + 0x15c1d
rbx=16 rbp=5 rsp=f776beb840 r12=910 r13=0 r14=f776bead01 r15=281dc0a3570 rip=7ffe4df15c1d
Found by: call frame info
21 Builtins_JSEntry App.exe + 0xcc
rsp=f776beb848 rip=7ff71a8ed44c
Found by: stack scanning
Thread 1
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e06d50 rcx=5c rbx=281d8e070d0 rsi=281d8e04ac0 rdi=281d8e070d0 rbp=0 rsp=f776eff9f8 r8=2 r9=0 r10=ff r11=f776eff640 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e070d0 rbp=0 rsp=f776effa00 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e070d0 rbp=0 rsp=f776effdc0 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f776effdf0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 2
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e07f20 rcx=5c rbx=281d8e082a0 rsi=281d8e04ac0 rdi=281d8e082a0 rbp=0 rsp=f776fff4a8 r8=f776ffec10 r9=281d8e137c0 r10=6c r11=f776ffea10 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e082a0 rbp=0 rsp=f776fff4b0 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e082a0 rbp=0 rsp=f776fff870 r12=0 r13=281d8e047f8 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f776fff8a0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 3
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e08710 rcx=5c rbx=281d8e08a90 rsi=281d8e04ac0 rdi=281d8e08a90 rbp=0 rsp=f7770ff398 r8=2 r9=0 r10=ff r11=f7770fefe0 r12=0 r13=281d8e04810 r14=2 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e08a90 rbp=0 rsp=f7770ff3a0 r12=0 r13=281d8e04810 r14=2 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e08a90 rbp=0 rsp=f7770ff760 r12=0 r13=281d8e04810 r14=2 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7770ff790 rip=7ffe4e28ce51
Found by: stack scanning
Thread 4
0 NtRemoveIoCompletion ntdll.dll + 0x14
rax=9 rdx=f7771ffb20 rcx=300 rbx=f7771ffb18 rsi=281dc26cd20 rdi=f7771ffb2c rbp=300 rsp=f7771ffa38 r8=281dc26cd30 r9=281dc26cd30 r10=0 r11=246 r12=f7771ffb48 r13=f7771ffb30 r14=0 r15=7ffe4d7efd10 rip=7ffe4e2bc194
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58403
rbx=f7771ffb18 rbp=300 rsp=f7771ffa40 r12=f7771ffb48 r13=f7771ffb30 r14=0 r15=7ffe4d7efd10 rip=7ffe4b298403
Found by: call frame info
2 KERNELBASE.dll + 0x6476b
rsp=f7771ffa70 rip=7ffe4b2a476b
Found by: stack scanning
3 sandbox::BrokerServicesBase::TargetEventsThread(void *) App.exe [broker_services.cc : 236 + 0x26]
rsp=f7771ffaa0 rip=7ff71c1bf917
Found by: stack scanning
4 KERNEL32.DLL + 0x17bd4
rsp=f7771ffbf0 rip=7ffe4d7f7bd4
Found by: call frame info
5 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7771ffc20 rip=7ffe4e28ce51
Found by: stack scanning
Thread 5
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=3dc rbx=0 rsi=f7772ff5e8 rdi=3dc rbp=7fffffffffffffff rsp=f7772ff5b8 r8=f7772ff683 r9=7ffed000 r10=546c6148 r11=fffffffff10dff53 r12=f7772ff688 r13=0 r14=3dc r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=7fffffffffffffff rsp=f7772ff5c0 r12=f7772ff688 r13=0 r14=3dc r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::sequence_manager::internal::SequenceManagerImpl::MaybeReclaimMemory() App.exe [sequence_manager_impl.cc : 962 + 0xd]
rbp=7fffffffffffffff rsp=f7772ff5d0 rip=7ff71b5b5eac
Found by: stack scanning
3 base::WaitableEvent::TimedWait(base::TimeDelta const &) App.exe [waitable_event_win.cc : 107 + 0x2]
rbp=7fffffffffffffff rsp=f7772ff660 rip=7ff71b5f0ac0
Found by: call frame info
4 base::MessagePumpDefault::Run(base::MessagePump::Delegate *) App.exe [message_pump_default.cc : 57 + 0xb]
rbp=7fffffffffffffff rsp=f7772ff750 rip=7ff71bd65ffe
Found by: call frame info
5 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rbp=7fffffffffffffff rsp=f7772ff7d0 rip=7ff71bd744e8
Found by: call frame info
6 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rbp=7fffffffffffffff rsp=f7772ff830 rip=7ff71b59bbba
Found by: call frame info
7 base::internal::ServiceThread::Run(base::RunLoop *) App.exe [service_thread.cc : 61 + 0x5]
rbp=7fffffffffffffff rsp=f7772ff8d0 rip=7ff71c994270
Found by: call frame info
8 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rbp=7fffffffffffffff rsp=f7772ff910 rip=7ff71b5c21a6
Found by: call frame info
9 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=7fffffffffffffff rsp=f7772ff990 rip=7ff71b5f13bd
Found by: call frame info
10 KERNEL32.DLL + 0x17bd4
rbp=7fffffffffffffff rsp=f7772ffa10 rip=7ffe4d7f7bd4
Found by: call frame info
11 RtlUserThreadStart ntdll.dll + 0x21
rbp=7fffffffffffffff rsp=f7772ffa40 rip=7ffe4e28ce51
Found by: stack scanning
Thread 6
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=380 rbx=0 rsi=f7773ff418 rdi=380 rbp=f7773ff668 rsp=f7773ff3e8 r8=f7773fefd0 r9=7ff719488c40 r10=0 r11=f7773fee30 r12=f7773ff4b8 r13=1 r14=380 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7773ff668 rsp=f7773ff3f0 r12=f7773ff4b8 r13=1 r14=380 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7773ff668 rsp=f7773ff400 rip=7ff71c997eff
Found by: stack scanning
Thread 7
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=388 rbx=0 rsi=f7774ffa58 rdi=388 rbp=0 rsp=f7774ffa28 r8=7937007d377105a6 r9=281dad00e40 r10=1 r11=7 r12=f7774ffaf8 r13=0 r14=388 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=0 rsp=f7774ffa30 r12=f7774ffaf8 r13=0 r14=388 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 RtlpFreeHeapInternal ntdll.dll + 0x3f4
rsp=f7774ffa40 rip=7ffe4e2603f4
Found by: stack scanning
Thread 8
0 NtRemoveIoCompletion ntdll.dll + 0x14
rax=9 rdx=f7775ff9d0 rcx=3a0 rbx=f7775ff9c8 rsi=281dad5ea20 rdi=f7775ff9c0 rbp=1 rsp=f7775ff918 r8=f7775ff4d0 r9=42 r10=0 r11=f7775ff380 r12=f7775ffa38 r13=0 r14=f7775ffa30 r15=7fffffffffffffff rip=7ffe4e2bc194
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58403
rbx=f7775ff9c8 rbp=1 rsp=f7775ff920 r12=f7775ffa38 r13=0 r14=f7775ffa30 r15=7fffffffffffffff rip=7ffe4b298403
Found by: call frame info
2 base::sequence_manager::internal::SequenceManagerImpl::HasPendingHighResolutionTasks() App.exe [sequence_manager_impl.cc : 698 + 0x5]
rsp=f7775ff930 rip=7ff71b5b5cd1
Found by: stack scanning
3 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() App.exe [thread_controller_with_message_pump_impl.cc : 399 + 0xd]
rsp=f7775ff970 rip=7ff71bd743ba
Found by: call frame info
4 base::MessagePumpForIO::DoRunLoop() App.exe [message_pump_win.cc : 643 + 0x3d]
rsp=f7775ffa00 rip=7ff71b5ed0f4
Found by: call frame info
5 base::MessagePumpWin::Run(base::MessagePump::Delegate *) App.exe [message_pump_win.cc : 74 + 0x9]
rsp=f7775ffa80 rip=7ff71b5eb88e
Found by: call frame info
6 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rsp=f7775ffad0 rip=7ff71bd744e8
Found by: call frame info
7 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rsp=f7775ffb30 rip=7ff71b59bbba
Found by: call frame info
8 content::BrowserProcessSubThread::IOThreadRun(base::RunLoop *) App.exe [browser_process_sub_thread.cc : 144 + 0xb]
rsp=f7775ffbd0 rip=7ff71ac3497b
Found by: call frame info
9 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rsp=f7775ffc30 rip=7ff71b5c21a6
Found by: call frame info
10 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rsp=f7775ffcb0 rip=7ff71b5f13bd
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7775ffd30 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7775ffd60 rip=7ffe4e28ce51
Found by: stack scanning
Thread 9
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=404 rbx=0 rsi=0 rdi=404 rbp=7fffffffffffffff rsp=f7776ff378 r8=2 r9=0 r10=ff r11=f7776fe600 r12=1 r13=0 r14=404 r15=f7776ff500 rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=7fffffffffffffff rsp=f7776ff380 r12=1 r13=0 r14=404 r15=f7776ff500 rip=7ffe4b278b03
Found by: call frame info
2 base::WaitableEvent::Wait() App.exe [waitable_event_win.cc : 69 + 0xb]
rbp=7fffffffffffffff rsp=f7776ff420 rip=7ff71b5f08ed
Found by: stack scanning
3 base::MessagePumpDefault::Run(base::MessagePump::Delegate *) App.exe [message_pump_default.cc : 55 + 0x8]
rbp=7fffffffffffffff rsp=f7776ff4e0 rip=7ff71bd6603f
Found by: call frame info
4 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rbp=7fffffffffffffff rsp=f7776ff560 rip=7ff71bd744e8
Found by: call frame info
5 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rbp=7fffffffffffffff rsp=f7776ff5c0 rip=7ff71b59bbba
Found by: call frame info
6 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rbp=7fffffffffffffff rsp=f7776ff660 rip=7ff71b5c21a6
Found by: call frame info
7 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=7fffffffffffffff rsp=f7776ff6e0 rip=7ff71b5f13bd
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rbp=7fffffffffffffff rsp=f7776ff760 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rbp=7fffffffffffffff rsp=f7776ff790 rip=7ffe4e28ce51
Found by: stack scanning
Thread 10
0 NtRemoveIoCompletionEx ntdll.dll + 0x14
rax=16a rdx=f7777fea60 rcx=42c rbx=0 rsi=f7777fea50 rdi=281dad6cf01 rbp=ffffffff rsp=f7777fe968 r8=0 r9=0 r10=546c6148 r11=fffffffff10dff53 r12=f7777fea60 r13=42c r14=80 r15=0 rip=7ffe4e2beda4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0xfbc53
rbx=0 rbp=ffffffff rsp=f7777fe970 r12=f7777fea60 r13=42c r14=80 r15=0 rip=7ffe4b33bc53
Found by: call frame info
2 uv_run App.exe [core.c : 528 + 0x2a]
rsp=f7777fea10 rip=7ff71bd342c0
Found by: stack scanning
3 node::WorkerThreadsTaskRunner::DelayedTaskScheduler::Run() App.exe [node_platform.cc : 90 + 0xa]
rsp=f7777ffad0 rip=7ff71bd2b911
Found by: call frame info
4 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7777ffb80 rip=7ff71bd34d42
Found by: call frame info
5 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7777ffbc0 rip=7ff71e8e37e0
Found by: call frame info
6 KERNEL32.DLL + 0x17bd4
rsp=f7777ffbf0 rip=7ffe4d7f7bd4
Found by: call frame info
7 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7777ffc20 rip=7ffe4e28ce51
Found by: stack scanning
Thread 11
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dad6cd78 rbx=0 rsi=f7778ff588 rdi=0 rbp=f7778ff5b0 rsp=f7778ff558 r8=4 r9=3 r10=14 r11=ffffffff00000000 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7778ff5b0 rsp=f7778ff560 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7778ff5b0 rsp=f7778ff5d0 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4b2bc2b9
Found by: call frame info
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7778ff600 rip=7ff71bd35210
Found by: stack scanning
4 node::TaskQueue<v8::Task>::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]
rsp=f7778ff630 rip=7ff71bd2ba7e
Found by: call frame info
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]
rsp=f7778ff680 rip=7ff71bd2a20c
Found by: call frame info
6 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7778ff740 rip=7ff71bd34d42
Found by: call frame info
7 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7778ff780 rip=7ff71e8e37e0
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rsp=f7778ff7b0 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7778ff7e0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 12
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dad6cd78 rbx=0 rsi=f7779ff9d8 rdi=0 rbp=f7779ffa00 rsp=f7779ff9a8 r8=0 r9=281dc224310 r10=0 r11=281dc12e690 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7779ffa00 rsp=f7779ff9b0 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7779ffa00 rsp=f7779ffa20 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4b2bc2b9
Found by: call frame info
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7779ffa50 rip=7ff71bd35210
Found by: stack scanning
4 node::TaskQueue<v8::Task>::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]
rsp=f7779ffa80 rip=7ff71bd2ba7e
Found by: call frame info
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]
rsp=f7779ffad0 rip=7ff71bd2a20c
Found by: call frame info
6 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7779ffb90 rip=7ff71bd34d42
Found by: call frame info
7 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7779ffbd0 rip=7ff71e8e37e0
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rsp=f7779ffc00 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7779ffc30 rip=7ffe4e28ce51
Found by: stack scanning
Thread 13
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dad6cd78 rbx=0 rsi=f777affa68 rdi=0 rbp=f777affa90 rsp=f777affa38 r8=7 r9=6 r10=20 r11=ffffffff00000000 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f777affa90 rsp=f777affa40 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f777affa90 rsp=f777affab0 r12=0 r13=0 r14=281dad6cd78 r15=281dad6cda0 rip=7ffe4b2bc2b9
Found by: call frame info
3 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f777affae0 rip=7ff71bd35210
Found by: stack scanning
4 node::TaskQueue<v8::Task>::BlockingPop() App.exe [node_platform.cc : 516 + 0xb]
rsp=f777affb10 rip=7ff71bd2ba7e
Found by: call frame info
5 static void node::`anonymous namespace'::PlatformWorkerThread(void *) App.exe [node_platform.cc : 44 + 0xb]
rsp=f777affb60 rip=7ff71bd2a20c
Found by: call frame info
6 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f777affc20 rip=7ff71bd34d42
Found by: call frame info
7 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f777affc60 rip=7ff71e8e37e0
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rsp=f777affc90 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rsp=f777affcc0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 14
0 NtWaitForMultipleObjects ntdll.dll + 0x14
rax=5b rdx=f777bffc00 rcx=1 rbx=1 rsi=0 rdi=1 rbp=520 rsp=f777bff8a8 r8=281d8e7d6d0 r9=7ffe4c5905b0 r10=fffc98b20b6 r11=40001010040000 r12=ffffffff r13=f777bffc00 r14=0 r15=0 rip=7ffe4e2bcbc4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58037
rbx=1 rbp=520 rsp=f777bff8b0 r12=ffffffff r13=f777bffc00 r14=0 r15=0 rip=7ffe4b298037
Found by: call frame info
2 RMCLIENT.dll + 0x9720
rsp=f777bff8c8 rip=7ffe49a39720
Found by: stack scanning
3 LdrpInitializeThread ntdll.dll + 0x1fa
rsp=f777bff8d0 rip=7ffe4e242ee2
Found by: stack scanning
4 LdrpInitialize ntdll.dll + 0xa6
rsp=f777bff9b0 rip=7ffe4e291892
Found by: call frame info
5 LdrpInitialize ntdll.dll + 0x3b
rsp=f777bffa50 rip=7ffe4e2917d3
Found by: call frame info
Thread 15
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e81040 rcx=14 rbx=281d8e813c0 rsi=281d8e02340 rdi=281d8e813c0 rbp=0 rsp=f777cff468 r8=30 r9=30 r10=1 r11=1 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e813c0 rbp=0 rsp=f777cff470 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e813c0 rbp=0 rsp=f777cff830 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f777cff860 rip=7ffe4e28ce51
Found by: stack scanning
Thread 16
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8e83780 rcx=14 rbx=281d8e83b00 rsi=281d8e02340 rdi=281d8e83b00 rbp=0 rsp=f777dffa38 r8=1 r9=1 r10=2 r11=f777dff630 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=281d8e83b00 rbp=0 rsp=f777dffa40 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=281d8e83b00 rbp=0 rsp=f777dffe00 r12=0 r13=281d8e02548 r14=1 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f777dffe30 rip=7ffe4e28ce51
Found by: stack scanning
Thread 17
0 NtWaitForMultipleObjects ntdll.dll + 0x14
rax=5b rdx=f777eff7f0 rcx=2 rbx=2 rsi=1 rdi=2 rbp=540 rsp=f777eff498 r8=7ffe4c74fa28 r9=1 r10=fffc5e76aae r11=40400404000400 r12=ffffffff r13=f777eff7f0 r14=0 r15=0 rip=7ffe4e2bcbc4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x58037
rbx=2 rbp=540 rsp=f777eff4a0 r12=ffffffff r13=f777eff7f0 r14=0 r15=0 rip=7ffe4b298037
Found by: call frame info
2 RtlpHpFreeWithExceptionProtection ntdll.dll + 0x1e
rsp=f777eff4c0 rip=7ffe4e25fc6e
Found by: stack scanning
3 + 0xffffffffffffffff
rsp=f777eff530 rip=ffffffffffffffff
Found by: call frame info
4 KERNELBASE.dll + 0x58128
rsp=f777eff540 rip=7ffe4b298128
Found by: stack scanning
5 combase.dll + 0x52bb3
rsp=f777eff570 rip=7ffe4c532bb3
Found by: stack scanning
6 combase.dll + 0x5209d
rsp=f777eff5d0 rip=7ffe4c53209d
Found by: stack scanning
7 combase.dll + 0x2e3700
rsp=f777eff5e8 rip=7ffe4c7c3700
Found by: stack scanning
8 combase.dll + 0x53700
rsp=f777eff600 rip=7ffe4c533700
Found by: stack scanning
9 RtlpFreeActivationContextStackFrame ntdll.dll + 0x100
rsp=f777eff6d0 rip=7ffe4e28e688
Found by: stack scanning
Thread 18
0 win32u.dll + 0x9a84
rax=1452 rdx=f777fffbf0 rcx=1 rbx=7530 rsi=281d8f0f020 rdi=22b1d rbp=f777fffc20 rsp=f777fffad8 r8=1078 r9=1 r10=281d8ed9228 r11=281dbe700c8 r12=0 r13=0 r14=0 r15=0 rip=7ffe4bea9a84
Found by: given as instruction pointer in context
1 USER32.dll + 0x21cbd
rbp=f777fffc20 rsp=f777fffae0 rip=7ffe4df21cbd
Found by: stack scanning
2 windows.storage.dll + 0x178eab
rbp=f777fffc20 rsp=f777fffaf0 rip=7ffe4b888eab
Found by: stack scanning
3 shcore.dll + 0xc487
rbp=f777fffc20 rsp=f777fffb20 rip=7ffe4c9fc487
Found by: stack scanning
Thread 19
0 NtWaitForWorkViaWorkerFactory ntdll.dll + 0x14
rax=1cd rdx=281d8eae860 rcx=698 rbx=f776d86000 rsi=281d8eb1690 rdi=0 rbp=0 rsp=f7780ffa18 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=0 r15=0 rip=7ffe4e2bfa04
Found by: given as instruction pointer in context
1 TppWorkerThread ntdll.dll + 0x300
rbx=f776d86000 rbp=0 rsp=f7780ffa20 r12=0 r13=0 r14=0 r15=0 rip=7ffe4e253fe0
Found by: call frame info
2 KERNEL32.DLL + 0x17bd4
rbx=f776d86000 rbp=0 rsp=f7780ffde0 r12=0 r13=0 r14=0 r15=0 rip=7ffe4d7f7bd4
Found by: call frame info
3 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7780ffe10 rip=7ffe4e28ce51
Found by: stack scanning
Thread 20
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7781ffd68 rdi=0 rbp=f7781ffd90 rsp=f7781ffd38 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7781ffd90 rsp=f7781ffd40 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7781ffd90 rsp=f7781ffdb0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7781ffdb8 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7781ffdc0 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7781ffdc8 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7781ffdd8 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7781ffde0 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7781ffe10 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7781ffe80 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7781ffec0 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7781ffef0 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7781fff20 rip=7ffe4e28ce51
Found by: stack scanning
Thread 21
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7782ffd08 rdi=0 rbp=f7782ffd30 rsp=f7782ffcd8 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7782ffd30 rsp=f7782ffce0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7782ffd30 rsp=f7782ffd50 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7782ffd58 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7782ffd60 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7782ffd68 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7782ffd78 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7782ffd80 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7782ffdb0 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7782ffe20 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7782ffe60 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7782ffe90 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7782ffec0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 22
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7783ff7b8 rdi=0 rbp=f7783ff7e0 rsp=f7783ff788 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7783ff7e0 rsp=f7783ff790 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7783ff7e0 rsp=f7783ff800 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7783ff808 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7783ff810 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7783ff818 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7783ff828 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7783ff830 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7783ff860 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7783ff8d0 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7783ff910 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7783ff940 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7783ff970 rip=7ffe4e28ce51
Found by: stack scanning
Thread 23
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=7ff71faace18 rbx=0 rsi=f7784ff9e8 rdi=0 rbp=f7784ffa10 rsp=f7784ff9b8 r8=0 r9=0 r10=0 r11=0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableCS ntdll.dll + 0x105
rbx=0 rbp=f7784ffa10 rsp=f7784ff9c0 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4e280815
Found by: call frame info
2 KERNELBASE.dll + 0x7c2b9
rbx=0 rbp=f7784ffa10 rsp=f7784ffa30 r12=0 r13=0 r14=7ff71faace18 r15=7ff71faacdd8 rip=7ffe4b2bc2b9
Found by: call frame info
3 RtlUnwindEx App.exe + 0x1190440
rsp=f7784ffa38 rip=7ff71faace40
Found by: stack scanning
4 RtlUnwindEx App.exe + 0x1190418
rsp=f7784ffa40 rip=7ff71faace18
Found by: stack scanning
5 RtlUnwindEx App.exe + 0x1190460
rsp=f7784ffa48 rip=7ff71faace60
Found by: stack scanning
6 RtlUnwindEx App.exe + 0x1190440
rsp=f7784ffa58 rip=7ff71faace40
Found by: stack scanning
7 uv_cond_wait App.exe [thread.c : 414 + 0xc]
rsp=f7784ffa60 rip=7ff71bd35210
Found by: stack scanning
8 static void worker(void *) App.exe [threadpool.c : 76 + 0xb]
rsp=f7784ffa90 rip=7ff71c9400ad
Found by: call frame info
9 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f7784ffb00 rip=7ff71bd34d42
Found by: call frame info
10 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f7784ffb40 rip=7ff71e8e37e0
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f7784ffb70 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7784ffba0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 24
0 win32u.dll + 0x9a84
rax=1452 rdx=f7785ffa38 rcx=1 rbx=f7785ffac0 rsi=281dc13a380 rdi=0 rbp=f7785ffb08 rsp=f7785ff9c8 r8=0 r9=0 r10=0 r11=f776db9800 r12=281dc13a380 r13=1 r14=f7785ffaf0 r15=f7785ffae0 rip=7ffe4bea9a84
Found by: given as instruction pointer in context
1 USER32.dll + 0x21cbd
rbp=f7785ffb08 rsp=f7785ff9d0 rip=7ffe4df21cbd
Found by: stack scanning
2 void base::internal::`anonymous namespace'::WorkerThreadDelegate::DidProcessTask(class base::internal::RegisteredTaskSource) App.exe [pooled_single_thread_task_runner_manager.cc : 132 + 0x15]
rbp=f7785ffb08 rsp=f7785ff9e0 rip=7ff71c996b44
Found by: stack scanning
3 base::internal::WorkerThread::RunWorker() App.exe [worker_thread.cc : 334 + 0x9]
rbp=f7785ffb08 rsp=f7785ffa60 rip=7ff71d43a5c9
Found by: call frame info
4 base::internal::WorkerThread::RunSharedCOMWorker() App.exe [worker_thread.cc : 261 + 0x5]
rbp=f7785ffb08 rsp=f7785ffb80 rip=7ff71d43a230
Found by: call frame info
5 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=f7785ffb08 rsp=f7785ffbc0 rip=7ff71b5f13bd
Found by: call frame info
6 KERNEL32.DLL + 0x17bd4
rbp=f7785ffb08 rsp=f7785ffc40 rip=7ffe4d7f7bd4
Found by: call frame info
7 RtlUserThreadStart ntdll.dll + 0x21
rsp=f7785ffc70 rip=7ffe4e28ce51
Found by: stack scanning
Thread 25
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=730 rbx=0 rsi=f7786ff458 rdi=730 rbp=f7786ff6a8 rsp=f7786ff428 r8=30 r9=30 r10=1 r11=1 r12=f7786ff4f8 r13=1 r14=730 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7786ff6a8 rsp=f7786ff430 r12=f7786ff4f8 r13=1 r14=730 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7786ff6a8 rsp=f7786ff440 rip=7ff71c997eff
Found by: stack scanning
Thread 26
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=7cc rbx=0 rsi=f7787ff588 rdi=7cc rbp=f7787ff7d8 rsp=f7787ff558 r8=0 r9=281dc1b13c0 r10=281dc17a09c r11=f7787fe548 r12=f7787ff628 r13=1 r14=7cc r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7787ff7d8 rsp=f7787ff560 r12=f7787ff628 r13=1 r14=7cc r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7787ff7d8 rsp=f7787ff570 rip=7ff71c997eff
Found by: stack scanning
Thread 27
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=808 rbx=0 rsi=f7788ff628 rdi=808 rbp=f7788ff878 rsp=f7788ff5f8 r8=2 r9=0 r10=ca2882a2a r11=f7788fed30 r12=f7788ff6c8 r13=1 r14=808 r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f7788ff878 rsp=f7788ff600 r12=f7788ff6c8 r13=1 r14=808 r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 base::internal::ThreadGroupImpl::ScopedCommandsExecutor::~ScopedCommandsExecutor() App.exe [thread_group_impl.cc : 105 + 0x5]
rbp=f7788ff878 rsp=f7788ff610 rip=7ff71c997eff
Found by: stack scanning
Thread 28
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=80c rbx=0 rsi=f7789ff928 rdi=80c rbp=0 rsp=f7789ff8f8 r8=ff0 r9=1f r10=f7789fe920 r11=281dc1b4050 r12=f7789ff9c8 r13=0 r14=80c r15=7fffffffffffffff rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=0 rsp=f7789ff900 r12=f7789ff9c8 r13=0 r14=80c r15=7fffffffffffffff rip=7ffe4b278b03
Found by: call frame info
2 RtlpFreeHeapInternal ntdll.dll + 0x3f4
rsp=f7789ff910 rip=7ffe4e2603f4
Found by: stack scanning
Thread 29
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281dada2888 rbx=0 rsi=0 rdi=f778affc18 rbp=281dada2888 rsp=f778affa98 r8=f778affc18 r9=0 r10=0 r11=246 r12=0 r13=0 r14=281dada28d0 r15=0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableSRW ntdll.dll + 0x130
rbx=0 rbp=281dada2888 rsp=f778affaa0 r12=0 r13=0 r14=281dada28d0 r15=0 rip=7ffe4e280590
Found by: call frame info
2 KERNELBASE.dll + 0x258fd
rbx=0 rbp=281dada2888 rsp=f778affb10 r12=0 r13=0 r14=281dada28d0 r15=0 rip=7ffe4b2658fd
Found by: call frame info
3 RtlpHpFreeWithExceptionProtection ntdll.dll + 0x1e
rbp=281dada2888 rsp=f778affb30 rip=7ffe4e25fc6e
Found by: stack scanning
4 + 0x281dada2870
rbp=281dada2888 rsp=f778affba0 rip=281dada2870
Found by: call frame info
5 base::internal::LockImpl::Lock() App.exe [lock_impl_win.cc : 37 + 0x15]
rbp=281dada2888 rsp=f778affbd0 rip=7ff71b5f0797
Found by: stack scanning
6 cc::SingleThreadTaskGraphRunner::Run() App.exe [single_thread_task_graph_runner.cc : 123 + 0x8]
rbp=281dada2888 rsp=f778affc30 rip=7ff71b8751ed
Found by: call frame info
7 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rbp=281dada2888 rsp=f778affc80 rip=7ff71b5f13bd
Found by: call frame info
8 KERNEL32.DLL + 0x17bd4
rbp=281dada2888 rsp=f778affd00 rip=7ffe4d7f7bd4
Found by: call frame info
9 RtlUserThreadStart ntdll.dll + 0x21
rbp=281dada2888 rsp=f778affd30 rip=7ffe4e28ce51
Found by: stack scanning
Thread 30
0 win32u.dll + 0x9a84
rax=1452 rdx=0 rcx=0 rbx=f778bff95c rsi=f778bffa00 rdi=7ffe4df21c20 rbp=0 rsp=f778bff8a8 r8=2 r9=0 r10=0 r11=f778bff970 r12=7fffffffffffffff r13=f778bff958 r14=f778bff920 r15=f778bff960 rip=7ffe4bea9a84
Found by: given as instruction pointer in context
1 USER32.dll + 0x21cbd
rsp=f778bff8b0 rip=7ffe4df21cbd
Found by: stack scanning
2 RtlUnwindEx App.exe + 0x6b2230
rsp=f778bff8d0 rip=7ff71efcec30
Found by: stack scanning
3 base::sequence_manager::internal::SequenceManagerImpl::OnSystemIdle() App.exe [sequence_manager_impl.cc : 713 + 0xc]
rsp=f778bff8e0 rip=7ff71b5b5de6
Found by: stack scanning
4 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::DoIdleWork() App.exe [thread_controller_with_message_pump_impl.cc : 399 + 0xd]
rsp=f778bff940 rip=7ff71bd743ba
Found by: call frame info
5 base::MessagePumpForUI::DoRunLoop() App.exe [message_pump_win.cc : 247 + 0x12]
rsp=f778bff9d0 rip=7ff71b5ec1ae
Found by: call frame info
6 base::MessagePumpWin::Run(base::MessagePump::Delegate *) App.exe [message_pump_win.cc : 74 + 0x9]
rsp=f778bffa90 rip=7ff71b5eb88e
Found by: call frame info
7 base::sequence_manager::internal::ThreadControllerWithMessagePumpImpl::Run(bool,base::TimeDelta) App.exe [thread_controller_with_message_pump_impl.cc : 429 + 0xa]
rsp=f778bffae0 rip=7ff71bd744e8
Found by: call frame info
8 base::RunLoop::Run() App.exe [run_loop.cc : 124 + 0x10]
rsp=f778bffb40 rip=7ff71b59bbba
Found by: call frame info
9 base::Thread::ThreadMain() App.exe [thread.cc : 380 + 0xc]
rsp=f778bffbe0 rip=7ff71b5c21a6
Found by: call frame info
10 static unsigned long base::`anonymous namespace'::ThreadFunc(void *) App.exe [platform_thread_win.cc : 110 + 0x8]
rsp=f778bffc60 rip=7ff71b5f13bd
Found by: call frame info
11 KERNEL32.DLL + 0x17bd4
rsp=f778bffce0 rip=7ffe4d7f7bd4
Found by: call frame info
12 RtlUserThreadStart ntdll.dll + 0x21
rsp=f778bffd10 rip=7ffe4e28ce51
Found by: stack scanning
Thread 31
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=898 rbx=0 rsi=0 rdi=898 rbp=f778cff6a8 rsp=f778cff458 r8=f778cfea88 r9=f778cfeb00 r10=0 r11=f778cfe8d0 r12=281dc1c3c00 r13=1 r14=898 r15=f778cff680 rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=f778cff6a8 rsp=f778cff460 r12=281dc1c3c00 r13=1 r14=898 r15=f778cff680 rip=7ffe4b278b03
Found by: call frame info
2 RtlUnwindEx App.exe + 0x341a46
rbp=f778cff6a8 rsp=f778cff478 rip=7ff71ec5e446
Found by: stack scanning
3 RtlUnwindEx App.exe + 0x341a0f
rbp=f778cff6a8 rsp=f778cff480 rip=7ff71ec5e40f
Found by: stack scanning
4 content::internal::ChildProcessLauncherHelper::StartLaunchOnClientThread() App.exe [child_process_launcher_helper.cc : 111 + 0x21]
rbp=f778cff6a8 rsp=f778cff490 rip=7ff71ac6eabe
Found by: stack scanning
Thread 32
0 NtWaitForSingleObject ntdll.dll + 0x14
rax=4 rdx=0 rcx=8c0 rbx=0 rsi=0 rdi=8c0 rbp=0 rsp=f778dff788 r8=70 r9=4 r10=f778dfe510 r11=281dc1bb050 r12=0 r13=0 r14=8c0 r15=0 rip=7ffe4e2bc0f4
Found by: given as instruction pointer in context
1 KERNELBASE.dll + 0x38b03
rbx=0 rbp=0 rsp=f778dff790 r12=0 r13=0 r14=8c0 r15=0 rip=7ffe4b278b03
Found by: call frame info
2 KERNELBASE.dll + 0x5842e
rsp=f778dff7a0 rip=7ffe4b29842e
Found by: stack scanning
3 electron::NodeBindings::WakeupMainThread() App.exe [node_bindings.cc : 437 + 0x21]
rsp=f778dff810 rip=7ff71959792f
Found by: stack scanning
4 static unsigned int uv__thread_start(void *) App.exe [thread.c : 108 + 0x5]
rsp=f778dff8a0 rip=7ff71bd34d42
Found by: call frame info
5 static unsigned long thread_start<unsigned int (__cdecl*)(void *),1>(void *) App.exe [thread.cpp : 97 + 0xd]
rsp=f778dff8e0 rip=7ff71e8e37e0
Found by: call frame info
6 KERNEL32.DLL + 0x17bd4
rsp=f778dff910 rip=7ffe4d7f7bd4
Found by: call frame info
7 RtlUserThreadStart ntdll.dll + 0x21
rsp=f778dff940 rip=7ffe4e28ce51
Found by: stack scanning
Thread 33
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281d8ec50d0 rbx=0 rsi=0 rdi=0 rbp=281d8ec50d0 rsp=f778eff888 r8=b7 r9=281d8eeb150 r10=0 r11=f778eff670 r12=281d8ec50a0 r13=281d8ec5110 r14=281d8ec5118 r15=0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableSRW ntdll.dll + 0x130
rbx=0 rbp=281d8ec50d0 rsp=f778eff890 r12=281d8ec50a0 r13=281d8ec5110 r14=281d8ec5118 r15=0 rip=7ffe4e280590
Found by: call frame info
2 KERNELBASE.dll + 0x258fd
rbx=0 rbp=281d8ec50d0 rsp=f778eff900 r12=281d8ec50a0 r13=281d8ec5110 r14=281d8ec5118 r15=0 rip=7ffe4b2658fd
Found by: call frame info
3 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x14b668
rbp=281d8ec50d0 rsp=f778eff940 rip=7ffe17b8b668
Found by: stack scanning
4 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148ba0
rbp=281d8ec50d0 rsp=f778eff980 rip=7ffe17b88ba0
Found by: stack scanning
5 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148d18
rbp=281d8ec50d0 rsp=f778eff9b0 rip=7ffe17b88d18
Found by: stack scanning
6 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1489bb
rbp=281d8ec50d0 rsp=f778eff9c0 rip=7ffe17b889bb
Found by: stack scanning
7 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0xfd119
rbp=281d8ec50d0 rsp=f778eff9d0 rip=7ffe17b3d119
Found by: stack scanning
8 free_base ucrtbase.dll + 0x1b
rbp=281d8ec50d0 rsp=f778eff9f0 rip=7ffe4bee14cb
Found by: stack scanning
9 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e0c0
rbp=281d8ec50d0 rsp=f778effa20 rip=7ffe17a8e0c0
Found by: call frame info
10 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3869
rbp=281d8ec50d0 rsp=f778effa48 rip=7ffe17be3869
Found by: stack scanning
11 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3873
rbp=281d8ec50d0 rsp=f778effa50 rip=7ffe17be3873
Found by: stack scanning
12 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e9b2
rbp=281d8ec50d0 rsp=f778effae0 rip=7ffe17a8e9b2
Found by: stack scanning
13 strset ucrtbase.dll + 0x8078
rbp=281d8ec50d0 rsp=f778effaf0 rip=7ffe4bf89b68
Found by: stack scanning
14 KERNELBASE.dll + 0x76315
rbp=281d8ec50d0 rsp=f778effb00 rip=7ffe4b2b6315
Found by: stack scanning
15 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4f28f
rbp=281d8ec50d0 rsp=f778effb30 rip=7ffe17a8f28f
Found by: stack scanning
16 kernel.appcore.dll + 0x2fe0
rbp=281d8ec50d0 rsp=f778effb40 rip=7ffe4b0e2fe0
Found by: stack scanning
17 strset ucrtbase.dll + 0x8078
rbp=281d8ec50d0 rsp=f778effb48 rip=7ffe4bf89b68
Found by: stack scanning
18 static thread_start<unsigned int (__cdecl*)(void *),1>() ucrtbase.dll + 0x42
rbp=281d8ec50d0 rsp=f778effb60 rip=7ffe4bef0e82
Found by: stack scanning
19 KERNEL32.DLL + 0x17bd4
rbp=281d8ec50d0 rsp=f778effb90 rip=7ffe4d7f7bd4
Found by: call frame info
20 RtlUserThreadStart ntdll.dll + 0x21
rbp=281d8ec50d0 rsp=f778effbc0 rip=7ffe4e28ce51
Found by: stack scanning
Thread 34
0 NtWaitForAlertByThreadId ntdll.dll + 0x14
rax=1ca rdx=0 rcx=281d8ec46d0 rbx=0 rsi=0 rdi=0 rbp=281d8ec46d0 rsp=f778fff5c8 r8=0 r9=0 r10=281d8ec4718 r11=281d8d90000 r12=281d8ec46a0 r13=281d8ec4710 r14=281d8ec4718 r15=0 rip=7ffe4e2bf9a4
Found by: given as instruction pointer in context
1 RtlSleepConditionVariableSRW ntdll.dll + 0x130
rbx=0 rbp=281d8ec46d0 rsp=f778fff5d0 r12=281d8ec46a0 r13=281d8ec4710 r14=281d8ec4718 r15=0 rip=7ffe4e280590
Found by: call frame info
2 KERNELBASE.dll + 0x258fd
rbx=0 rbp=281d8ec46d0 rsp=f778fff640 r12=281d8ec46a0 r13=281d8ec4710 r14=281d8ec4718 r15=0 rip=7ffe4b2658fd
Found by: call frame info
3 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x14b668
rbp=281d8ec46d0 rsp=f778fff680 rip=7ffe17b8b668
Found by: stack scanning
4 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148ba0
rbp=281d8ec46d0 rsp=f778fff6c0 rip=7ffe17b88ba0
Found by: stack scanning
5 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x148d18
rbp=281d8ec46d0 rsp=f778fff6f0 rip=7ffe17b88d18
Found by: stack scanning
6 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1489bb
rbp=281d8ec46d0 rsp=f778fff700 rip=7ffe17b889bb
Found by: stack scanning
7 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0xfd119
rbp=281d8ec46d0 rsp=f778fff710 rip=7ffe17b3d119
Found by: stack scanning
8 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e0c0
rbp=281d8ec46d0 rsp=f778fff760 rip=7ffe17a8e0c0
Found by: stack scanning
9 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3869
rbp=281d8ec46d0 rsp=f778fff788 rip=7ffe17be3869
Found by: stack scanning
10 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x1a3873
rbp=281d8ec46d0 rsp=f778fff790 rip=7ffe17be3873
Found by: stack scanning
11 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4e9b2
rbp=281d8ec46d0 rsp=f778fff820 rip=7ffe17a8e9b2
Found by: stack scanning
12 _acrt_FlsGetValue ucrtbase.dll + 0x41
rbp=281d8ec46d0 rsp=f778fff840 rip=7ffe4bede6b1
Found by: stack scanning
13 libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll + 0x4f28f
rbp=281d8ec46d0 rsp=f778fff870 rip=7ffe17a8f28f
Found by: call frame info
14 static thread_start<unsigned int (__cdecl*)(void *),1>() ucrtbase.dll + 0x42
rbp=281d8ec46d0 rsp=f778fff8a0 rip=7ffe4bef0e82
Found by: stack scanning
15 KERNEL32.DLL + 0x17bd4
rbp=281d8ec46d0 rsp=f778fff8d0 rip=7ffe4d7f7bd4
Found by: call frame info
16 RtlUserThreadStart ntdll.dll + 0x21
rbp=281d8ec46d0 rsp=f778fff900 rip=7ffe4e28ce51
Found by: stack scanning
App.exe version:62.8.119.17949 debug_id:3AA6A57192854E7C4C4C44205044422E1 address_range: 0x7ff719460000, 0x7ff72015ffff isMain:True
windows.storage.node version:0.0.0.0 debug_id:A67C23E63E6C4A0AA6D52B1687299F691 address_range: 0x7ffe0ad90000, 0x7ffe0aeaafff isMain:False
ffmpeg.dll version:0.0.0.0 debug_id:3858DDD424ADA6C14C4C44205044422E1 address_range: 0x7ffe0b480000, 0x7ffe0b849fff isMain:False
vccorlib140.DLL version:14.23.27820.0 debug_id:3F69A6A4CF0A4B76891794E6B5F69C2F1 address_range: 0x7ffe0cb90000, 0x7ffe0cbe9fff isMain:False
VCRUNTIME140_1.dll version:14.25.28508.3 debug_id:7930BDEB1D314DF88CD619BBAD3945C81 address_range: 0x7ffe10dc0000, 0x7ffe10dcbfff isMain:False
MSVCP140.dll version:14.23.27820.0 debug_id:281A807C9D2447E794E484E559F61EF31 address_range: 0x7ffe10dd0000, 0x7ffe10e68fff isMain:False
VCRUNTIME140.dll version:14.12.25810.0 debug_id:E93D4EDDDEB54C72857912DE41650BF41 address_range: 0x7ffe10e70000, 0x7ffe10e85fff isMain:False
libxplat_app_native_Logging_Core_appLoggingCoreWindows.dll version:0.0.0.0 debug_id:F2A58E712B3282A54C4C44205044422E1 address_range: 0x7ffe17a40000, 0x7ffe17c8ffff isMain:False
logging.node version:0.0.0.0 debug_id:8369529BAFBDE8C94C4C44205044422E1 address_range: 0x7ffe17c90000, 0x7ffe17f05fff isMain:False
dxva2.dll version:10.0.18362.1 debug_id:AFE6A5C433702435EEA619E99FE197F11 address_range: 0x7ffe1a990000, 0x7ffe1a9b2fff isMain:False
USP10.dll version:10.0.18362.476 debug_id:A1BD2C89EF38A71FC773E33F7EB3FE971 address_range: 0x7ffe1a9c0000, 0x7ffe1a9d8fff isMain:False
UIAutomationCore.DLL version:7.2.18362.693 debug_id:79BA30E6125473159F6FA5AFA9C3574D1 address_range: 0x7ffe2c310000, 0x7ffe2c57ffff isMain:False
mssprxy.dll version:7.0.18362.719 debug_id:8BCCAA2D00D7839FA2C9196088FA90B11 address_range: 0x7ffe2ca90000, 0x7ffe2cab7fff isMain:False
Windows.Storage.ApplicationData.dll version:10.0.18362.959 debug_id:CB0AC065BFB7C141C8E5E1730842C6061 address_range: 0x7ffe2e350000, 0x7ffe2e3a3fff isMain:False
wpnapps.dll version:10.0.18362.959 debug_id:E8CE2C5DF520024B0761B4D87F47337C1 address_range: 0x7ffe2f370000, 0x7ffe2f4bbfff isMain:False
daxexec.dll version:10.0.18362.900 debug_id:BD6ECA3F7515FC843D77DC7524377B851 address_range: 0x7ffe32f00000, 0x7ffe32faafff isMain:False
container.dll version:10.0.18362.387 debug_id:AF8F0C6FA47765A6AC30B85276178C5E1 address_range: 0x7ffe33190000, 0x7ffe331d9fff isMain:False
Secur32.dll version:10.0.18362.1 debug_id:4A3A76407D4E89FF5DDB13891699F9411 address_range: 0x7ffe38600000, 0x7ffe3860bfff isMain:False
WINHTTP.dll version:10.0.18362.778 debug_id:BF029FAE7B9788BBE8A0D29A78421D7C1 address_range: 0x7ffe3a810000, 0x7ffe3a8fffff isMain:False
DWrite.dll version:10.0.18362.959 debug_id:1AB1FEDD2511BD89DDDECB41DDB1E5D51 address_range: 0x7ffe3bd20000, 0x7ffe3c01dfff isMain:False
urlmon.dll version:11.0.18362.815 debug_id:8FAA0E97791025581393B55CC5B68D301 address_range: 0x7ffe3c020000, 0x7ffe3c1f5fff isMain:False
iertutil.dll version:11.0.18362.815 debug_id:C425A291A3BBD4475187A20AA46C98BD1 address_range: 0x7ffe3c200000, 0x7ffe3c4a5fff isMain:False
InputHost.dll version:10.0.18362.959 debug_id:9A2C2076C0CF5B6B474F9D2DA882EE381 address_range: 0x7ffe3d5e0000, 0x7ffe3d6fafff isMain:False
Windows.UI.dll version:10.0.18362.959 debug_id:49ABCA4F19CF54BD3366C473576F242B1 address_range: 0x7ffe3d870000, 0x7ffe3d9c0fff isMain:False
TextInputFramework.dll version:10.0.18362.693 debug_id:E79AC938832C0AD2C3FA89AACD787C651 address_range: 0x7ffe3dba0000, 0x7ffe3dc3dfff isMain:False
OLEACC.dll version:7.2.18362.1 debug_id:0FA7C40302FAD1DB9ADF07DB9FB8A5F71 address_range: 0x7ffe3e790000, 0x7ffe3e7f4fff isMain:False
COMCTL32.dll version:6.10.18362.959 debug_id:49CFB891F354C0AA33CE9CBC47140A201 address_range: 0x7ffe3e800000, 0x7ffe3ea83fff isMain:False
d3d9.dll version:10.0.18362.387 debug_id:1FE36F30E9C8715E0A32B9AC529BD7D01 address_range: 0x7ffe3ef60000, 0x7ffe3f126fff isMain:False
WINSPOOL.DRV version:10.0.18362.693 debug_id:9200E1705475175E4C989CA8D2150ED41 address_range: 0x7ffe3f2b0000, 0x7ffe3f338fff isMain:False
dbghelp.dll version:10.0.18362.1 debug_id:3136B409D05FC8575AC873344F6EA4911 address_range: 0x7ffe419c0000, 0x7ffe41bb3fff isMain:False
dhcpcsvc6.DLL version:10.0.18362.815 debug_id:A2E7B71547E670385CF23E4CD4412A751 address_range: 0x7ffe41bc0000, 0x7ffe41bd5fff isMain:False
dhcpcsvc.DLL version:10.0.18362.815 debug_id:FC9FF53755DDA69AEDDF5ADBB347B5FD1 address_range: 0x7ffe42320000, 0x7ffe4233bfff isMain:False
capauthz.dll version:10.0.18362.1 debug_id:F3E6040E0F5AE497933677772A138D1E1 address_range: 0x7ffe42570000, 0x7ffe425befff isMain:False
MMDevApi.dll version:10.0.18362.387 debug_id:413DB27B4E4628EB08BC483DB42EBF0B1 address_range: 0x7ffe42ba0000, 0x7ffe42c11fff isMain:False
FLTLIB.DLL version:10.0.18362.1 debug_id:155993078BA3729EAA83ED63360920D81 address_range: 0x7ffe43030000, 0x7ffe43039fff isMain:False
MSIMG32.dll version:10.0.18362.959 debug_id:0EC81C169A335000704DDCB517AA9B471 address_range: 0x7ffe44240000, 0x7ffe44246fff isMain:False
VERSION.dll version:10.0.18362.1 debug_id:FCF21B9CBFDAC57B3D7C9E297AA714D21 address_range: 0x7ffe443d0000, 0x7ffe443d9fff isMain:False
windows.applicationmodel.node version:0.0.0.0 debug_id:EC6BC150C9C149E2AEB1CBB433112DA11 address_range: 0x7ffe44770000, 0x7ffe4480afff isMain:False
windows.ui.notifications.node version:0.0.0.0 debug_id:5D3CCBAAD1FC473CBA527DB8EBA032B41 address_range: 0x7ffe44f70000, 0x7ffe4501afff isMain:False
XmlLite.dll version:10.0.18362.295 debug_id:44859733799C569F44173E32844C86061 address_range: 0x7ffe45750000, 0x7ffe45784fff isMain:False
WinTypes.dll version:10.0.18362.900 debug_id:D3AB25082D21A1E70D031F0AD720E64B1 address_range: 0x7ffe46f30000, 0x7ffe47082fff isMain:False
CoreUIComponents.dll version:10.0.18362.207 debug_id:F17D23C01EC63692D1DB107C8DAD28AA1 address_range: 0x7ffe47170000, 0x7ffe47499fff isMain:False
NLAapi.dll version:10.0.18362.959 debug_id:1E0C3E6B872046473D319066EFFC94831 address_range: 0x7ffe47900000, 0x7ffe4791bfff isMain:False
PROPSYS.dll version:7.0.18362.815 debug_id:8D40397FF6A2E362F71CFFBEC112C49B1 address_range: 0x7ffe47a80000, 0x7ffe47b6ffff isMain:False
WTSAPI32.dll version:10.0.18362.1 debug_id:2DA85AEF00D2FB458A9B73AC391985391 address_range: 0x7ffe47bd0000, 0x7ffe47be2fff isMain:False
winmmbase.dll version:10.0.18362.1 debug_id:B19A643D5AC23F362DEBDBA18D33921D1 address_range: 0x7ffe47d50000, 0x7ffe47d7cfff isMain:False
WINMM.dll version:10.0.18362.1 debug_id:6D145E3B6417F20C489BD311F39E921B1 address_range: 0x7ffe47d80000, 0x7ffe47da3fff isMain:False
d3d11.dll version:10.0.18362.387 debug_id:78D86FA11FBDD9713F897703816B20F81 address_range: 0x7ffe48370000, 0x7ffe485cafff isMain:False
CoreMessaging.dll version:10.0.18362.836 debug_id:DB9FB4F9AE5AB92AC57FDF66A7E350BA1 address_range: 0x7ffe49050000, 0x7ffe49123fff isMain:False
UxTheme.dll version:10.0.18362.449 debug_id:248E8408B4CA0E2A571DD54AFC9CA2741 address_range: 0x7ffe49420000, 0x7ffe494b8fff isMain:False
dwmapi.dll version:10.0.18362.267 debug_id:B9A27EB1451577911FC55AA4B5F9FDAE1 address_range: 0x7ffe49510000, 0x7ffe4953cfff isMain:False
twinapi.appcore.dll version:10.0.18362.959 debug_id:3F8FAB6DD2E2E3B169DE76FCAD97C1C91 address_range: 0x7ffe49540000, 0x7ffe497a1fff isMain:False
RMCLIENT.dll version:10.0.18362.267 debug_id:18973751CCE15FA091C60B9CB9E9C9591 address_range: 0x7ffe49a30000, 0x7ffe49a58fff isMain:False
HID.DLL version:10.0.18362.1 debug_id:C56ADCAE049303C41A632B93413F71151 address_range: 0x7ffe49ce0000, 0x7ffe49cedfff isMain:False
dxcore.dll version:10.0.18362.1 debug_id:33BB03A6A0D12CE88F0B5721CB8EB54A1 address_range: 0x7ffe49d40000, 0x7ffe49d5ffff isMain:False
dxgi.dll version:10.0.18362.815 debug_id:614357BB84DDD4CDD8787E22DC73B9E11 address_range: 0x7ffe49dd0000, 0x7ffe49ebafff isMain:False
ntmarta.dll version:10.0.18362.1 debug_id:D28B6BE617CA26467BC4D4A2CD0BB7AA1 address_range: 0x7ffe4a130000, 0x7ffe4a160fff isMain:False
WINSTA.dll version:10.0.18362.836 debug_id:3A51ED08B35D257D4354D8F42F601B121 address_range: 0x7ffe4a1a0000, 0x7ffe4a1f5fff isMain:False
rsaenh.dll version:10.0.18362.1 debug_id:97AF558854C0A219FD6A24F1F50F57311 address_range: 0x7ffe4a4b0000, 0x7ffe4a4e2fff isMain:False
IPHLPAPI.DLL version:10.0.18362.1 debug_id:A3177875244A46C8B31AF3DC3C6E1A341 address_range: 0x7ffe4a650000, 0x7ffe4a689fff isMain:False
DNSAPI.dll version:10.0.18362.815 debug_id:D73C7E4CE7E15ADD4F80DEE7F80E14D81 address_range: 0x7ffe4a690000, 0x7ffe4a75afff isMain:False
mswsock.dll version:10.0.18362.815 debug_id:835DC4B8116DDDA3C6B8A99B41BDB6E61 address_range: 0x7ffe4a940000, 0x7ffe4a9a6fff isMain:False
CRYPTBASE.DLL version:10.0.18362.1 debug_id:7588B6A3BD73290472DD810CEDFF8B821 address_range: 0x7ffe4ab10000, 0x7ffe4ab1bfff isMain:False
NTASN1.dll version:10.0.18362.1 debug_id:6B406A9E4F8B5AC5C8C4ECED22C5304C1 address_range: 0x7ffe4abd0000, 0x7ffe4ac0afff isMain:False
ncrypt.dll version:10.0.18362.1 debug_id:D2E25DA68B7DB60F04BC77907C23D5F61 address_range: 0x7ffe4ac10000, 0x7ffe4ac35fff isMain:False
DEVOBJ.dll version:10.0.18362.387 debug_id:8C31C73F74C69C4587C124613932A69D1 address_range: 0x7ffe4aed0000, 0x7ffe4aef9fff isMain:False
SSPICLI.DLL version:10.0.18362.1 debug_id:823D5A41E0D702A79C98A0A257924F9E1 address_range: 0x7ffe4afc0000, 0x7ffe4afeefff isMain:False
USERENV.dll version:10.0.18362.387 debug_id:9DF9BD938015A08CCF24399E8FB0A8D81 address_range: 0x7ffe4aff0000, 0x7ffe4b014fff isMain:False
UMPDC.dll version:0.0.0.0 debug_id:1504CC553EDB4294AC748FBEA390E9571 address_range: 0x7ffe4b0d0000, 0x7ffe4b0dffff isMain:False
kernel.appcore.dll version:10.0.18362.1 debug_id:B44A2A638A5CA8D814E9400D5FACD1FC1 address_range: 0x7ffe4b0e0000, 0x7ffe4b0f0fff isMain:False
MSASN1.dll version:10.0.18362.1 debug_id:FF420EFB35B10AA763D7FC05B2CED0A81 address_range: 0x7ffe4b100000, 0x7ffe4b111fff isMain:False
profapi.dll version:10.0.18362.693 debug_id:24C1A8B41030978083EE59C74E9580B81 address_range: 0x7ffe4b120000, 0x7ffe4b142fff isMain:False
powrprof.dll version:10.0.18362.1 debug_id:BAE22F436C95A7D5066F6C645A3500D51 address_range: 0x7ffe4b150000, 0x7ffe4b199fff isMain:False
msvcp_win.dll version:10.0.18362.815 debug_id:DE65FEF916BB6B73D06E0BB314C952341 address_range: 0x7ffe4b1a0000, 0x7ffe4b23dfff isMain:False
KERNELBASE.dll version:10.0.18362.959 debug_id:D517CA9ACA2078ADABEB0578B89079371 address_range: 0x7ffe4b240000, 0x7ffe4b4e3fff isMain:False
gdi32full.dll version:10.0.18362.959 debug_id:6D96D581BCA445B0A11DEAB68C014E671 address_range: 0x7ffe4b4f0000, 0x7ffe4b685fff isMain:False
bcryptPrimitives.dll version:10.0.18362.836 debug_id:9E2F1012F2DC5AC45255C35203A850D81 address_range: 0x7ffe4b690000, 0x7ffe4b70ffff isMain:False
windows.storage.dll version:10.0.18362.959 debug_id:D975D3DD8EDE2701C0C2AF18256003BD1 address_range: 0x7ffe4b710000, 0x7ffe4be91fff isMain:False
win32u.dll version:10.0.18362.959 debug_id:BC2E49ABE46D2E93B278B4DECFCA62A81 address_range: 0x7ffe4bea0000, 0x7ffe4bec0fff isMain:False
ucrtbase.dll version:10.0.18362.815 debug_id:15DCD9554735C5FBF0B28E3E15FBA9E51 address_range: 0x7ffe4bed0000, 0x7ffe4bfc9fff isMain:False
cryptsp.dll version:10.0.18362.1 debug_id:7618DEBEAC0F99987F3CAFD7430FC6EC1 address_range: 0x7ffe4c080000, 0x7ffe4c096fff isMain:False
cfgmgr32.dll version:10.0.18362.387 debug_id:C951EE8EA9B38EBFAED12377BDD8DD731 address_range: 0x7ffe4c0a0000, 0x7ffe4c0e9fff isMain:False
WINTRUST.dll version:10.0.18362.387 debug_id:4CB14CB920AC3FFA05B74B96AC368B291 address_range: 0x7ffe4c0f0000, 0x7ffe4c14bfff isMain:False
CRYPT32.dll version:10.0.18362.592 debug_id:214CDCF5653C044BE1695042E80DE6ED1 address_range: 0x7ffe4c150000, 0x7ffe4c298fff isMain:False
bcrypt.dll version:10.0.18362.267 debug_id:1A47218203678386DF440D6572C07FB71 address_range: 0x7ffe4c2a0000, 0x7ffe4c2c5fff isMain:False
ole32.dll version:10.0.18362.693 debug_id:DC73A1686F947185B5C2E2E35AD9F1BE1 address_range: 0x7ffe4c2d0000, 0x7ffe4c426fff isMain:False
sechost.dll version:10.0.18362.959 debug_id:163EA654B46707AA327963B5C7AC631D1 address_range: 0x7ffe4c430000, 0x7ffe4c4c6fff isMain:False
NSI.dll version:10.0.18362.449 debug_id:E62356AC433038BCB83C5FB9679DBA161 address_range: 0x7ffe4c4d0000, 0x7ffe4c4d7fff isMain:False
combase.dll version:10.0.18362.900 debug_id:A88ED30F8D97402835C42EED2C04A69B1 address_range: 0x7ffe4c4e0000, 0x7ffe4c814fff isMain:False
clbcatq.dll version:2001.12.10941.16384 debug_id:DA759F99B2BB75C2171C691554EB98B21 address_range: 0x7ffe4c820000, 0x7ffe4c8c1fff isMain:False
msvcrt.dll version:7.0.18362.1 debug_id:1FEA8DB6B57F5FBFA935E090243420D01 address_range: 0x7ffe4c8d0000, 0x7ffe4c96dfff isMain:False
shcore.dll version:10.0.18362.959 debug_id:3BF581C59EDA22C2CBC6197D4CC9810C1 address_range: 0x7ffe4c9f0000, 0x7ffe4ca98fff isMain:False
SHELL32.dll version:10.0.18362.959 debug_id:4E02104DB6D8096BB22F25858EFF6A921 address_range: 0x7ffe4caa0000, 0x7ffe4d185fff isMain:False
GDI32.dll version:10.0.18362.1 debug_id:209AD405837D061EF9D34CBDC009D7711 address_range: 0x7ffe4d190000, 0x7ffe4d1b5fff isMain:False
advapi32.dll version:10.0.18362.752 debug_id:41BA7F97400F96826215223FA4A29F2A1 address_range: 0x7ffe4d630000, 0x7ffe4d6d2fff isMain:False
IMM32.dll version:10.0.18362.387 debug_id:A71334B42E3311D0561A8F034058292D1 address_range: 0x7ffe4d6e0000, 0x7ffe4d70dfff isMain:False
COMDLG32.dll version:10.0.18362.900 debug_id:9F7F6C8F15133DBE3A073517F2560E4D1 address_range: 0x7ffe4d710000, 0x7ffe4d7dffff isMain:False
KERNEL32.DLL version:10.0.18362.959 debug_id:E5021BC0C818845BB7558654339B0FE81 address_range: 0x7ffe4d7e0000, 0x7ffe4d891fff isMain:False
RPCRT4.dll version:10.0.18362.628 debug_id:6104857DED3A09A289E87498A7125B731 address_range: 0x7ffe4d8a0000, 0x7ffe4d9bffff isMain:False
MSCTF.dll version:10.0.18362.900 debug_id:68E37BCD655FDE378FABDAEBCD6880581 address_range: 0x7ffe4d9c0000, 0x7ffe4daf4fff isMain:False
shlwapi.dll version:10.0.18362.1 debug_id:8B7DB15A0B8993DF43A76023DF895ED01 address_range: 0x7ffe4db10000, 0x7ffe4db61fff isMain:False
OLEAUT32.dll version:10.0.18362.959 debug_id:2E6890B676D0B413F58FFE10EE566C931 address_range: 0x7ffe4dd40000, 0x7ffe4de04fff isMain:False
WS2_32.dll version:10.0.18362.387 debug_id:A2BDFAA4631B2679BD34BB6670BFA69C1 address_range: 0x7ffe4de90000, 0x7ffe4defefff isMain:False
USER32.dll version:10.0.18362.959 debug_id:034AFFE8331738A54EC07A7655CAF0DC1 address_range: 0x7ffe4df00000, 0x7ffe4e093fff isMain:False
ntdll.dll version:10.0.18362.815 debug_id:54A4ABD98E75ECCB93B912D2747051301 address_range: 0x7ffe4e220000, 0x7ffe4e40ffff isMain:False
(app_source: windows_app_store)
(application_state: initializing)
(build_number: 234833437)
(build_revision: 5899e0605095e4ec216245f929d64da554ff66f6)
(device_id: 2476b0a8-7fc7-44b0-8aaf-3207b36a1fdb)
(electron_version: 9.1.0)
(in_rtc_call: false)
(mobile_app_version: 62.8.119)
(platform: win32)
(process_type: main)
(raw_minidump: GIYWmwMJJe-uoMcBAJvpi67TlxQpbgl-AAAA)
(scribe_category: errorlog_app_crash)
(user_id: None)
</code></pre></div> | 1 |
<p dir="auto">Line 19 | react/docs/tutorial/tutorial.md</p>
<p dir="auto">Links to: <a href="http://codepen.io/ericnakagawa/debug/ALxakj/auth" rel="nofollow">http://codepen.io/ericnakagawa/debug/ALxakj/auth</a></p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">report a bug</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">broken link in the first section of <a href="https://github.com/facebook/react/blob/master/docs/tutorial/tutorial.md">https://github.com/facebook/react/blob/master/docs/tutorial/tutorial.md</a></p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via <a href="https://jsfiddle.net" rel="nofollow">https://jsfiddle.net</a> or similar (template: <a href="https://jsfiddle.net/reactjs/69z2wepo/" rel="nofollow">https://jsfiddle.net/reactjs/69z2wepo/</a>).</strong></p>
<p dir="auto">N/A</p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">Link should go to a working version of tic-tac-toe on codepen</p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p>
<p dir="auto">N/A</p> | 1 |
<p dir="auto">Abstract class should not be required to implement all the properties/methods of the interfaces it implements. So the following should be legal:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface A {
p;
m();
}
abstract class B implements A {
}
class C extends B {
get p() {...};
set p(v) {...};
m() {...}
}"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-c1">p</span><span class="pl-kos">;</span>
<span class="pl-c1">m</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">abstract</span> <span class="pl-k">class</span> <span class="pl-smi">B</span> <span class="pl-k">implements</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">C</span> <span class="pl-k">extends</span> <span class="pl-smi">B</span> <span class="pl-kos">{</span>
<span class="pl-k">get</span> <span class="pl-en">p</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">set</span> <span class="pl-en">p</span><span class="pl-kos">(</span><span class="pl-s1">v</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>...<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-en">m</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">But currently it gives:</p>
<blockquote>
<p dir="auto">Error:(2, 16) TS2420: Class 'B' incorrectly implements interface 'A'. Property 'p' is missing in type 'B'.</p>
</blockquote>
<p dir="auto">This issue is related to proposal <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="89677065" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/3578" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/3578/hovercard" href="https://github.com/microsoft/TypeScript/issues/3578">#3578</a>.</p> | <p dir="auto">Some properties in JavaScript are actually read-only, i.e. writes to them either fail silently or cause an exception. These should be modelable in TypeScript.</p>
<p dir="auto">Previous attempts to design this have run into problems. A brief exploration:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface Point {
x: number;
y: number;
}
interface ImmutablePoint {
readonly x: number;
readonly y: number;
}
var pt: ImmutablePoint = { x: 4, y: 5 }; // OK, can convert mutable to non-mutable
pt.x = 5; // Error, 'pt.x' is not a valid target of assignment
var pt2: Point = pt; // Error, cannot convert readonly 'x' to mutable 'x'
// Possibly bad behavior
var pt3: Point = { x: 1, y: 1 };
var pt4: ImmutablePoint = pt3; // OK
pt3.x = 5; // pt4.x is also changed?
// Really bad behavior
/** This function was written in TypeScript 1.0 **/
function magnitudeSquared(v: { x: number; y: number }) {
return v.x * v.x + v.y * v.y;
}
// Now try to use it with ImmutablePoint
console.log(magnitudeSquared(pt)); // Error, cannot use readonly object in non-readonly call"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">Point</span> <span class="pl-kos">{</span>
<span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-c1">y</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">interface</span> <span class="pl-smi">ImmutablePoint</span> <span class="pl-kos">{</span>
<span class="pl-k">readonly</span> <span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-k">readonly</span> <span class="pl-c1">y</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">pt</span>: <span class="pl-smi">ImmutablePoint</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">4</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">5</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-c">// OK, can convert mutable to non-mutable</span>
<span class="pl-s1">pt</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span><span class="pl-kos">;</span> <span class="pl-c">// Error, 'pt.x' is not a valid target of assignment</span>
<span class="pl-k">var</span> <span class="pl-s1">pt2</span>: <span class="pl-smi">Point</span> <span class="pl-c1">=</span> <span class="pl-s1">pt</span><span class="pl-kos">;</span> <span class="pl-c">// Error, cannot convert readonly 'x' to mutable 'x'</span>
<span class="pl-c">// Possibly bad behavior</span>
<span class="pl-k">var</span> <span class="pl-s1">pt3</span>: <span class="pl-smi">Point</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">y</span>: <span class="pl-c1">1</span> <span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">pt4</span>: <span class="pl-smi">ImmutablePoint</span> <span class="pl-c1">=</span> <span class="pl-s1">pt3</span><span class="pl-kos">;</span> <span class="pl-c">// OK</span>
<span class="pl-s1">pt3</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span><span class="pl-kos">;</span> <span class="pl-c">// pt4.x is also changed?</span>
<span class="pl-c">// Really bad behavior</span>
<span class="pl-c">/** This function was written in TypeScript 1.0 **/</span>
<span class="pl-k">function</span> <span class="pl-en">magnitudeSquared</span><span class="pl-kos">(</span><span class="pl-s1">v</span>: <span class="pl-kos">{</span> <span class="pl-c1">x</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c1">y</span>: <span class="pl-smi">number</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">*</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">+</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">y</span> <span class="pl-c1">*</span> <span class="pl-s1">v</span><span class="pl-kos">.</span><span class="pl-c1">y</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">// Now try to use it with ImmutablePoint</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-en">magnitudeSquared</span><span class="pl-kos">(</span><span class="pl-s1">pt</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Error, cannot use readonly object in non-readonly call</span></pre></div>
<p dir="auto">Possible solutions?</p>
<ul dir="auto">
<li>Allow bivariance of mutability: this is very unsound</li>
<li>Something else clever? C++ did not do well with const contamination</li>
</ul> | 0 |
<p dir="auto">Here are the steps I followed to learn node.js and Boostrap</p>
<ol dir="auto">
<li>Downloaded the bootstrap .zip file from the github<br>
$ wget <a href="https://github.com/twbs/bootstrap/releases/download/v3.0.0/bootstrap-3.0.0-dist.zip">https://github.com/twbs/bootstrap/releases/download/v3.0.0/bootstrap-3.0.0-dist.zip</a></li>
<li>Extract the files<br>
$unzip bootstrap-3.0.0-dist.zip</li>
<li>Create a directory<br>
$ mkdir myapp</li>
<li>Copy the extracted bootstrap directory to "myapp" folder and name it "mybootstrap"<br>
$ move dist myapp/mybootstrap</li>
<li>Create app.js as below</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/64a9569e588b1c147452265ffde989757c719874045795de768adf5674dcc12a/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353639322f30636236633565322d326238392d313165332d383830312d3832646461653638653930332e4a5047"><img src="https://camo.githubusercontent.com/64a9569e588b1c147452265ffde989757c719874045795de768adf5674dcc12a/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353639322f30636236633565322d326238392d313165332d383830312d3832646461653638653930332e4a5047" alt="capture_appjs" data-canonical-src="https://f.cloud.github.com/assets/4803827/1255692/0cb6c5e2-2b89-11e3-8801-82ddae68e903.JPG" style="max-width: 100%;"></a></p>
<ol dir="auto">
<li>Created index.html as below (note: bootstrap directory is updated)</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/458ec52f280fbee4e2818bc90129e71d8743a75148f46c22cd01b171c953834e/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353730342f34323062383035322d326238392d313165332d396338612d3365366465376338393734382e4a5047"><img src="https://camo.githubusercontent.com/458ec52f280fbee4e2818bc90129e71d8743a75148f46c22cd01b171c953834e/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353730342f34323062383035322d326238392d313165332d396338612d3365366465376338393734382e4a5047" alt="capture" data-canonical-src="https://f.cloud.github.com/assets/4803827/1255704/420b8052-2b89-11e3-9c8a-3e6de7c89748.JPG" style="max-width: 100%;"></a></p>
<ol dir="auto">
<li>When I execute node app and view the page in Chrome browser, I do not see the bootstrap applied index.html (See image below)<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9f5c27bf1a30dea6dcbc08cdd0f01e4cebf2ad88dde13aa4d2e2c6c8f6e30949/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353733312f61663466663362342d326238392d313165332d393839622d3363333261633436663935312e4a5047"><img src="https://camo.githubusercontent.com/9f5c27bf1a30dea6dcbc08cdd0f01e4cebf2ad88dde13aa4d2e2c6c8f6e30949/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353733312f61663466663362342d326238392d313165332d393839622d3363333261633436663935312e4a5047" alt="capture_chrome" data-canonical-src="https://f.cloud.github.com/assets/4803827/1255731/af4ff3b4-2b89-11e3-989b-3c32ac46f951.JPG" style="max-width: 100%;"></a></li>
<li>When I tried to look at the css file by clicking on the URL, I get a Cannot GET error.</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/4e24b3cf41a4284a6a83e951ef4edafb24f5c26f84c5e0ff2b605cc7f7c6cd70/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353734392f66393233663231302d326238392d313165332d396238652d3461363161373636653132342e4a5047"><img src="https://camo.githubusercontent.com/4e24b3cf41a4284a6a83e951ef4edafb24f5c26f84c5e0ff2b605cc7f7c6cd70/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353734392f66393233663231302d326238392d313165332d396238652d3461363161373636653132342e4a5047" alt="capture_404" data-canonical-src="https://f.cloud.github.com/assets/4803827/1255749/f923f210-2b89-11e3-9b8e-4a61a766e124.JPG" style="max-width: 100%;"></a></p>
<p dir="auto">If I refer to CDN links, instead of my local links, the page renders just fine. So, I am lost as to what may be wrong with my setup. I checked the permission on the folder as well.</p>
<p dir="auto">The above is setup on Ubuntu Linux.</p>
<p dir="auto">Appreciate any help in this regard.</p>
<p dir="auto">Thanks in advance,</p>
<p dir="auto">Vinay</p> | <p dir="auto">I am new to node.js and Bootstrap. Here is what I have done so far on a Linux setup.</p>
<ol dir="auto">
<li>$ mkdir myapp</li>
<li>$ mv bootstrap myapp/mybootstrap - Moving the downloaded compiled bootstrap to "mybootstrap" folder under "myapp" directory</li>
</ol>
<p dir="auto">2.$ emacs app.js</p>
<p dir="auto">app.js looks like below<br>
<code class="notranslate"><br>
var express = require('express');<br>
var fs = require('fs');</code></p><code class="notranslate">
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" var app = express();
app.get('/', function(request, response){
response.send(fs.readFileSync('index.html', 'utf8'));
});
var port = process.env.PORT || 8888;
app.listen(port, function(){
console.log("Listening on " + port);
});"><pre class="notranslate"><code class="notranslate"> var app = express();
app.get('/', function(request, response){
response.send(fs.readFileSync('index.html', 'utf8'));
});
var port = process.env.PORT || 8888;
app.listen(port, function(){
console.log("Listening on " + port);
});
</code></pre></div>
</code>
1. $ emacs index.html - I have copied the content of HTML shown at http://getbootstrap.com/getting-started/. I have changed the path settings for referring to bootstrap files as below
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/998205248669668e6534dfacd95b964cf276e64dc1bd856f3f06b85e049668c8/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353036312f62356336323063612d326237652d313165332d383237332d6464366432366166326231322e4a5047"><img src="https://camo.githubusercontent.com/998205248669668e6534dfacd95b964cf276e64dc1bd856f3f06b85e049668c8/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f343830333832372f313235353036312f62356336323063612d326237652d313165332d383237332d6464366432366166326231322e4a5047" alt="capture" data-canonical-src="https://f.cloud.github.com/assets/4803827/1255061/b5c620ca-2b7e-11e3-8273-dd6d26af2b12.JPG" style="max-width: 100%;"></a></p>
<ol dir="auto">
<li>All the necessary require packages are in place</li>
</ol>
<p dir="auto">When I execute node app, the page does show up, however the bootstrap CSS is not applied.</p>
<p dir="auto">Google Chrome's "Inspect Element" option shows the error as "</p>
<p dir="auto"><a href="http://IPADDRESS:8888/mybootstrap/css/bootstrap.min.css" rel="nofollow">http://IPADDRESS:8888/mybootstrap/css/bootstrap.min.css</a><br>
404<br>
Not Found"</p>
<p dir="auto">I don't know what am I doing wrong.</p>
<p dir="auto">Any help would be greatly appreciated.</p>
<p dir="auto">Thanks<br>
Vinay</p> | 1 |
<p dir="auto">We start to hit some SystemJS-related bugs that were already fixed upstream. Examples:</p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="97102951" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/3275" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/3275/hovercard" href="https://github.com/angular/angular/issues/3275">#3275</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="100054585" data-permission-text="Title is private" data-url="https://github.com/systemjs/builder/issues/271" data-hovercard-type="issue" data-hovercard-url="/systemjs/builder/issues/271/hovercard" href="https://github.com/systemjs/builder/issues/271">systemjs/builder#271</a></li>
</ul>
<p dir="auto">We should upgrade to the newer builder + loader combo</p> | <p dir="auto"><strong>I'm submitting a ...</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report"><pre class="notranslate"><code class="notranslate">[X] bug report
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">If I have a sync and a async validation on a formControl the async validation overwrites the sync validation when it comes back even if the value has changed. So if I put in something in a field that passes the sync validation the async validation triggers. However when I then change the value of the field before the last async validation have come back to something that doesn't pass the sync validation the last value async validation becomes the winning one.</p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">Probably that the async validation should be ignored if the value has changed since the request?</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<p dir="auto"><a href="http://plnkr.co/edit/MrY2Gq03dNjp8hvET3cn?p=preview" rel="nofollow">http://plnkr.co/edit/MrY2Gq03dNjp8hvET3cn?p=preview</a></p>
<ol dir="auto">
<li>Fill in <a href="mailto:[email protected]">[email protected]</a> in the input field.</li>
<li>Within 5 seconds, change the value of the field to asdf.</li>
<li>Wait a second or two and now the Control is valid, but asdf is not valid according to the sync validation.</li>
</ol>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.1.12</li>
</ul>
<ul dir="auto">
<li><strong>Browser:</strong>: Tested in latest Chrome and Safari</li>
</ul>
<ul dir="auto">
<li><strong>Language:</strong>: Typescript</li>
</ul> | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.