text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<p dir="auto">One example is the <code class="notranslate">unreachable!</code> macro, though I think I've seen it elsewhere. The documention of the macro <a href="http://doc.rust-lang.org/stable/core/macro.unreachable!.html" rel="nofollow">in libcore</a> is fine, but the docs of the same macro <a href="http://doc.rust-lang.org/std/macro.unreachable!.html" rel="nofollow">in libstd</a> have the source formatting all weird, and the actual <code class="notranslate">[src]</code> link is broken.</p> | <p dir="auto">For some macros the documentation has presentation problems,<br>
for others macros the documentation it is OK.<br>
Problems:</p>
<ul dir="auto">
<li>Variable names are not highlighted in blue</li>
<li>There is an additional space between $ and the variable name (and in other places)</li>
<li>Unexpected line breaks even when horizontal space is left (Might be a separate unrelated problem)</li>
</ul>
<p dir="auto">OK<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1041267/18816982/5107d07a-8355-11e6-9fb4-ef0d9e995641.png"><img src="https://cloud.githubusercontent.com/assets/1041267/18816982/5107d07a-8355-11e6-9fb4-ef0d9e995641.png" alt="ok_macro_panic" style="max-width: 100%;"></a></p>
<p dir="auto">Problematic<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1041267/18816985/570e974c-8355-11e6-88f5-add8dedf9374.png"><img src="https://cloud.githubusercontent.com/assets/1041267/18816985/570e974c-8355-11e6-88f5-add8dedf9374.png" alt="error_macro_assert" style="max-width: 100%;"></a></p>
<p dir="auto">Problematic macros:<br>
<a href="https://doc.rust-lang.org/std/macro.assert!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.assert!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.assert_eq!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.assert_eq!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.try!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.try!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.unreachable!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.unreachable!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.vec!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.vec!.html</a> (no problem of linebreaks here)<br>
<a href="https://doc.rust-lang.org/std/macro.write!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.write!.html</a><br>
...</p>
<p dir="auto">Ok macros:<br>
<a href="https://doc.rust-lang.org/std/macro.cfg!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.cfg!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.concat!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.concat!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.env!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.env!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.format_args!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.format_args!.html</a><br>
<a href="https://doc.rust-lang.org/std/macro.panic!.html" rel="nofollow">https://doc.rust-lang.org/std/macro.panic!.html</a><br>
...</p>
<p dir="auto">It seems macros with "Stable since 1.0.0" are displayed properly?</p>
<p dir="auto">Firefox 48.0, Ubuntu 16.04<br>
Android, Chrome 53.0</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">Bug Report</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">1.8 (devel) - works in 1.7</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">running on: Linux Ubuntu<br>
managing: Linux Ubuntu</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto"><code class="notranslate">vars/main.yml</code> gets loaded from all roles at the beginning of playbook (expected). In case one variable is in multiple roles, it <strong>gets overwritten</strong> and receives the content from the last role in playbook, not the current role (unexpected, regression).</p>
<p dir="auto">In Ansible versions prior 1.8 (devel) any such variable got the current role's <code class="notranslate">vars/main.yml</code> content. The current behavior breaks our infrastructure and effectively eliminates our variable and task reuse.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">playbook-role-example.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- hosts: server
roles:
- role-1
- role-2"><pre class="notranslate"><code class="notranslate">- hosts: server
roles:
- role-1
- role-2
</code></pre></div>
<p dir="auto">roles/role-1/vars/main.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="current_role: role-1"><pre class="notranslate"><code class="notranslate">current_role: role-1
</code></pre></div>
<p dir="auto">roles/role-1/tasks/main.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: print current_role variable
debug: msg="Variable current_role is {{ current_role }}""><pre class="notranslate"><code class="notranslate">- name: print current_role variable
debug: msg="Variable current_role is {{ current_role }}"
</code></pre></div>
<p dir="auto">roles/role-2/vars/main.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="current_role: role-2"><pre class="notranslate"><code class="notranslate">current_role: role-2
</code></pre></div>
<p dir="auto">roles/role-2/tasks/main.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: print current_role variable
debug: msg="Variable current_role is {{ current_role }}""><pre class="notranslate"><code class="notranslate">- name: print current_role variable
debug: msg="Variable current_role is {{ current_role }}"
</code></pre></div>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">Output until (and including) 1.7.2:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [role-1 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-1"
}
TASK: [role-2 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-2"
}"><pre class="notranslate"><code class="notranslate">TASK: [role-1 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-1"
}
TASK: [role-2 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-2"
}
</code></pre></div>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">Output in 1.8 (devel):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [role-1 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-2"
}
TASK: [role-2 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-2"
}"><pre class="notranslate"><code class="notranslate">TASK: [role-1 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-2"
}
TASK: [role-2 | print current_role variable] **********************************
ok: [192.168.56.101] => {
"msg": "Variable current_role is role-2"
}
</code></pre></div> | <p dir="auto">This has come and gone over the previous releases, and is currently present on the devel branch.</p>
<p dir="auto">To reproduce:</p>
<p dir="auto">roles/test1/vars/main.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="myvar: test1"><pre class="notranslate"><code class="notranslate">myvar: test1
</code></pre></div>
<p dir="auto">roles/test2/vars/main.yml:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="myvar: test2"><pre class="notranslate"><code class="notranslate">myvar: test2
</code></pre></div>
<p dir="auto">both roles' task file is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- debug: var=myvar"><pre class="notranslate"><code class="notranslate">- debug: var=myvar
</code></pre></div>
<p dir="auto">and the playbook:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- hosts: localhost
roles:
- test1
- test2"><pre class="notranslate"><code class="notranslate">- hosts: localhost
roles:
- test1
- test2
</code></pre></div>
<p dir="auto">The results should be:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [test1 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test1"
}
TASK: [test2 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test2"
}"><pre class="notranslate"><code class="notranslate">TASK: [test1 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test1"
}
TASK: [test2 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test2"
}
</code></pre></div>
<p dir="auto">But are actually:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [test1 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test2"
}
TASK: [test2 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test2"
}"><pre class="notranslate"><code class="notranslate">TASK: [test1 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test2"
}
TASK: [test2 | debug var=myvar] ***********************************************
ok: [localhost] => {
"myvar": "test2"
}
</code></pre></div>
<p dir="auto"><code class="notranslate">git bisect</code> points to <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/8a1fbed5d6a61583950024df60ac74d5c98d6cca/hovercard" href="https://github.com/ansible/ansible/commit/8a1fbed5d6a61583950024df60ac74d5c98d6cca"><tt>8a1fbed</tt></a></p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=irwinm" rel="nofollow">Eric Fletcher</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-3019?redirect=false" rel="nofollow">SPR-3019</a></strong> and commented</p>
<p dir="auto">The issue appears to be a compatibility issue between Quartz1.6 JDBCJobStore and Spring scheduling.</p>
<p dir="auto">When using a CronTriggerBean to persist a cron trigger a DataTruncationExceptions is being thrown when attempting to insert the trigger. The stack trace indicates that Quartz is trying to insert a new BlobTrigger instead of a CronTrigger.</p>
<p dir="auto">The issue appears to be a change in how the org.quartz.impl.jdbcjobstore.StdJDBCDelegate checks to see what type of trigger is to be inserted. The code for the check in the older(1.5.2) version is shown below:</p>
<p dir="auto">[code]<br>
1166 if (trigger instanceof SimpleTrigger) {<br>
1167 ps.setString(10, TTYPE_SIMPLE);<br>
1168 } else if (trigger instanceof CronTrigger) {<br>
1169 ps.setString(10, TTYPE_CRON);<br>
1170 } else { // (trigger instanceof BlobTrigger)<br>
1171 ps.setString(10, TTYPE_BLOB);<br>
[/code]</p>
<p dir="auto">In the older implementations of Quartz's org.quartz.impl.jdbcjobstore.StdJDBCDelegate, it was using an instanceof check to determine the trigger type. That was fine, since CronTriggerBean subclasses CronTrigger.</p>
<p dir="auto">In Quartz version 1.6, the trigger type check is now relying on the getClass method, shown below:</p>
<p dir="auto">[code]<br>
if (trigger.getClass() == SimpleTrigger.class) {<br>
ps.setString(10, TTYPE_SIMPLE);<br>
} else if (trigger.getClass() == CronTrigger.class) {<br>
ps.setString(10, TTYPE_CRON);<br>
} else {<br>
ps.setString(10, TTYPE_BLOB);<br>
}<br>
[/code]</p>
<p dir="auto">In this case, the CronTriggerBean (or a SimpleTriggerBean) check is always going to return false, and Quartz is going to try to insert a BlobTrigger all the time, causing the data truncation exception.</p>
<p dir="auto">There are a couple workarounds:<br>
-Use the Trigger directly as a Bean instead of using CronTriggerBean<br>
-Manually enter the trigger record to the database<br>
-swap in the Quartz 1.5.2 jars for the 1.6 jars, start the app and insert the trigger, then go back to 1.6(if desired).</p>
<p dir="auto">I stumbled across the last one and it is what I have tested so far. The other workarounds should work, but I haven't tested them.</p>
<p dir="auto">This post also describes the issue:<br>
<a href="http://forum.springframework.org/showthread.php?t=33301" rel="nofollow">http://forum.springframework.org/showthread.php?t=33301</a></p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 final</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398072964" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/7537" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/7537/hovercard" href="https://github.com/spring-projects/spring-framework/issues/7537">#7537</a> Upgrade to Quartz 1.6.1 (for trigger persistence with SimpleTriggerBean and CronTriggerBean) (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=bjsion" rel="nofollow">Ben Sion</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8210?redirect=false" rel="nofollow">SPR-8210</a></strong> and commented</p>
<p dir="auto">It would be very helpful if the EmbeddedDatabaseBuilder could be configured to continue on error or ignore drop statements when executing schema and data scripts. This would simplify the use of the EmbeddedDatabase for use in unit tests (and probably other scenarios).</p>
<p dir="auto">I have attached a patch for this issue. Basically a new constructor is added to the EmbeddedDatabaseBuilder taking in 2 booleans that configure the underlying DatabasePopulator's ignoreFailedDrops and continueOnError values.</p>
<p dir="auto">I realise that I could create my own DatabasePopulator and execute the scripts outside of the EmbeddedDatabaseBuilder's initialisation but this seems like a lot of extra lines of code. Please let me know if I can provide more information.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.5, 3.1 M1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/17992/patch-embeddedDB.txt" rel="nofollow">patch-embeddedDB.txt</a> (<em>2.95 kB</em>)</li>
</ul>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398165430" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/16037" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/16037/hovercard" href="https://github.com/spring-projects/spring-framework/issues/16037">#16037</a> Improve configurability of EmbeddedDatabaseBuilder (<em><strong>"is superseded by"</strong></em>)</li>
</ul> | 0 |
<p dir="auto">without threads it is fine:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> function foo(x,y,z)
for i in eachindex(y)
y[i] -= z[x]
end
x += 1
return x
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
#self#::Core.Const(foo)
x@_2::Int64
y::Vector{Int64}
z::Vector{Int64}
@_5::Union{Nothing, Tuple{Int64, Int64}}
i::Int64
x@_7::Int64
Body::Int64
1 โ (x@_7 = x@_2)
โ %2 = Main.eachindex(y)::Base.OneTo{Int64}
โ (@_5 = Base.iterate(%2))
โ %4 = (@_5 === nothing)::Bool
โ %5 = Base.not_int(%4)::Bool
โโโ goto #4 if not %5
2 โ %7 = @_5::Tuple{Int64, Int64}::Tuple{Int64, Int64}
โ (i = Core.getfield(%7, 1))
โ %9 = Core.getfield(%7, 2)::Int64
โ %10 = Base.getindex(y, i)::Int64
โ %11 = Base.getindex(z, x@_7)::Int64
โ %12 = (%10 - %11)::Int64
โ Base.setindex!(y, %12, i)
โ (@_5 = Base.iterate(%2, %9))
โ %15 = (@_5 === nothing)::Bool
โ %16 = Base.not_int(%15)::Bool
โโโ goto #4 if not %16
3 โ goto #2
4 โ (x@_7 = x@_7 + 1)
โโโ return x@_7"><pre class="notranslate"><code class="notranslate">julia> function foo(x,y,z)
for i in eachindex(y)
y[i] -= z[x]
end
x += 1
return x
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
#self#::Core.Const(foo)
x@_2::Int64
y::Vector{Int64}
z::Vector{Int64}
@_5::Union{Nothing, Tuple{Int64, Int64}}
i::Int64
x@_7::Int64
Body::Int64
1 โ (x@_7 = x@_2)
โ %2 = Main.eachindex(y)::Base.OneTo{Int64}
โ (@_5 = Base.iterate(%2))
โ %4 = (@_5 === nothing)::Bool
โ %5 = Base.not_int(%4)::Bool
โโโ goto #4 if not %5
2 โ %7 = @_5::Tuple{Int64, Int64}::Tuple{Int64, Int64}
โ (i = Core.getfield(%7, 1))
โ %9 = Core.getfield(%7, 2)::Int64
โ %10 = Base.getindex(y, i)::Int64
โ %11 = Base.getindex(z, x@_7)::Int64
โ %12 = (%10 - %11)::Int64
โ Base.setindex!(y, %12, i)
โ (@_5 = Base.iterate(%2, %9))
โ %15 = (@_5 === nothing)::Bool
โ %16 = Base.not_int(%15)::Bool
โโโ goto #4 if not %16
3 โ goto #2
4 โ (x@_7 = x@_7 + 1)
โโโ return x@_7
</code></pre></div>
<p dir="auto">same function but with the loop threaded. <code class="notranslate">x</code> is now unstable. i've marked the red bits with ###:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> function foo(x,y,z)
Threads.@threads for i in eachindex(y)
y[i] -= z[x]
end
x += 1
return x
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
#self#::Core.Const(foo)
x@_2::Int64
y::Vector{Int64}
z::Vector{Int64}
threadsfor_fun::var"#4#threadsfor_fun#1"{Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
range::Base.OneTo{Int64}
x@_7::Union{}
x@_8::Union{}
x@_9::Union{Int64, Core.Box} ###
@_10::Bool
Body::Any ###
1 โโ (x@_9 = x@_2)
โ (x@_9 = Core.Box(x@_9::Int64))
โ %3 = Main.eachindex(y)::Base.OneTo{Int64}
โ (range = %3)
โ %5 = Main.:(var"#4#threadsfor_fun#1")::Core.Const(var"#4#threadsfor_fun#1")
โ %6 = Core.typeof(y)::Core.Const(Vector{Int64})
โ %7 = Core.typeof(z)::Core.Const(Vector{Int64})
โ %8 = Core.typeof(range)::Core.Const(Base.OneTo{Int64})
โ %9 = Core.apply_type(%5, %6, %7, %8)::Core.Const(var"#4#threadsfor_fun#1"{Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}})
โ %10 = x@_9::Core.Box::Core.Box ###
โ (threadsfor_fun = %new(%9, %10, y, z, range))
โ %12 = Base.Threads.threadid()::Int64
โ %13 = (%12 != 1)::Bool
โโโโ goto #3 if not %13
2 โโ (@_10 = %13)
โโโโ goto #4
3 โโ %17 = $(Expr(:foreigncall, :(:jl_in_threaded_region), Int32, svec(), 0, :(:ccall)))::Int32
โโโโ (@_10 = %17 != 0)
4 โโ goto #6 if not @_10
5 โโ %20 = Base.invokelatest::Core.Const(Base.invokelatest)
โ %21 = threadsfor_fun::var"#4#threadsfor_fun#1"{Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
โ (%20)(%21, true)
โโโโ goto #7
6 โโ Base.Threads.threading_run(threadsfor_fun)
7 โโ Base.Threads.nothing
โ %26 = Core.isdefined(x@_9::Core.Box, :contents)::Bool
โโโโ goto #9 if not %26
8 โโ goto #10
9 โโ Core.NewvarNode(:(x@_7))
โโโโ x@_7
10 โ %31 = Core.getfield(x@_9::Core.Box, :contents)::Any ###
โ %32 = (%31 + 1)::Any ###
โ Core.setfield!(x@_9::Core.Box, :contents, %32)
โ %34 = Core.isdefined(x@_9::Core.Box, :contents)::Bool
โโโโ goto #12 if not %34
11 โ goto #13
12 โ Core.NewvarNode(:(x@_8))
โโโโ x@_8
13 โ %39 = Core.getfield(x@_9::Core.Box, :contents)::Any ###
โโโโ return %39
julia>"><pre class="notranslate"><code class="notranslate">julia> function foo(x,y,z)
Threads.@threads for i in eachindex(y)
y[i] -= z[x]
end
x += 1
return x
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
#self#::Core.Const(foo)
x@_2::Int64
y::Vector{Int64}
z::Vector{Int64}
threadsfor_fun::var"#4#threadsfor_fun#1"{Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
range::Base.OneTo{Int64}
x@_7::Union{}
x@_8::Union{}
x@_9::Union{Int64, Core.Box} ###
@_10::Bool
Body::Any ###
1 โโ (x@_9 = x@_2)
โ (x@_9 = Core.Box(x@_9::Int64))
โ %3 = Main.eachindex(y)::Base.OneTo{Int64}
โ (range = %3)
โ %5 = Main.:(var"#4#threadsfor_fun#1")::Core.Const(var"#4#threadsfor_fun#1")
โ %6 = Core.typeof(y)::Core.Const(Vector{Int64})
โ %7 = Core.typeof(z)::Core.Const(Vector{Int64})
โ %8 = Core.typeof(range)::Core.Const(Base.OneTo{Int64})
โ %9 = Core.apply_type(%5, %6, %7, %8)::Core.Const(var"#4#threadsfor_fun#1"{Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}})
โ %10 = x@_9::Core.Box::Core.Box ###
โ (threadsfor_fun = %new(%9, %10, y, z, range))
โ %12 = Base.Threads.threadid()::Int64
โ %13 = (%12 != 1)::Bool
โโโโ goto #3 if not %13
2 โโ (@_10 = %13)
โโโโ goto #4
3 โโ %17 = $(Expr(:foreigncall, :(:jl_in_threaded_region), Int32, svec(), 0, :(:ccall)))::Int32
โโโโ (@_10 = %17 != 0)
4 โโ goto #6 if not @_10
5 โโ %20 = Base.invokelatest::Core.Const(Base.invokelatest)
โ %21 = threadsfor_fun::var"#4#threadsfor_fun#1"{Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
โ (%20)(%21, true)
โโโโ goto #7
6 โโ Base.Threads.threading_run(threadsfor_fun)
7 โโ Base.Threads.nothing
โ %26 = Core.isdefined(x@_9::Core.Box, :contents)::Bool
โโโโ goto #9 if not %26
8 โโ goto #10
9 โโ Core.NewvarNode(:(x@_7))
โโโโ x@_7
10 โ %31 = Core.getfield(x@_9::Core.Box, :contents)::Any ###
โ %32 = (%31 + 1)::Any ###
โ Core.setfield!(x@_9::Core.Box, :contents, %32)
โ %34 = Core.isdefined(x@_9::Core.Box, :contents)::Bool
โโโโ goto #12 if not %34
11 โ goto #13
12 โ Core.NewvarNode(:(x@_8))
โโโโ x@_8
13 โ %39 = Core.getfield(x@_9::Core.Box, :contents)::Any ###
โโโโ return %39
julia>
</code></pre></div>
<p dir="auto">the workaround is to not mutate <code class="notranslate">x</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> function foo(x,y,z)
Threads.@threads for i in eachindex(y)
y[i] -= z[x]
end
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
#self#::Core.Const(foo)
x::Int64
y::Vector{Int64}
z::Vector{Int64}
threadsfor_fun::var"#25#threadsfor_fun#2"{Int64, Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
range::Base.OneTo{Int64}
@_7::Bool
Body::Nothing
1 โ %1 = Main.eachindex(y)::Base.OneTo{Int64}
โ (range = %1)
โ %3 = Main.:(var"#25#threadsfor_fun#2")::Core.Const(var"#25#threadsfor_fun#2")
โ %4 = Core.typeof(x)::Core.Const(Int64)
โ %5 = Core.typeof(y)::Core.Const(Vector{Int64})
โ %6 = Core.typeof(z)::Core.Const(Vector{Int64})
โ %7 = Core.typeof(range)::Core.Const(Base.OneTo{Int64})
โ %8 = Core.apply_type(%3, %4, %5, %6, %7)::Core.Const(var"#25#threadsfor_fun#2"{Int64, Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}})
โ (threadsfor_fun = %new(%8, x, y, z, range))
โ %10 = Base.Threads.threadid()::Int64
โ %11 = (%10 != 1)::Bool
โโโ goto #3 if not %11
2 โ (@_7 = %11)
โโโ goto #4
3 โ %15 = $(Expr(:foreigncall, :(:jl_in_threaded_region), Int32, svec(), 0, :(:ccall)))::Int32
โโโ (@_7 = %15 != 0)
4 โ goto #6 if not @_7
5 โ %18 = Base.invokelatest::Core.Const(Base.invokelatest)
โ %19 = threadsfor_fun::var"#25#threadsfor_fun#2"{Int64, Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
โ (%18)(%19, true)
โโโ goto #7
6 โ Base.Threads.threading_run(threadsfor_fun)
7 โ %23 = Base.Threads.nothing::Core.Const(nothing)
โโโ return %23"><pre class="notranslate"><code class="notranslate">julia> function foo(x,y,z)
Threads.@threads for i in eachindex(y)
y[i] -= z[x]
end
end
foo (generic function with 1 method)
julia> @code_warntype foo(1,[1,2,3],[4,5,6])
Variables
#self#::Core.Const(foo)
x::Int64
y::Vector{Int64}
z::Vector{Int64}
threadsfor_fun::var"#25#threadsfor_fun#2"{Int64, Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
range::Base.OneTo{Int64}
@_7::Bool
Body::Nothing
1 โ %1 = Main.eachindex(y)::Base.OneTo{Int64}
โ (range = %1)
โ %3 = Main.:(var"#25#threadsfor_fun#2")::Core.Const(var"#25#threadsfor_fun#2")
โ %4 = Core.typeof(x)::Core.Const(Int64)
โ %5 = Core.typeof(y)::Core.Const(Vector{Int64})
โ %6 = Core.typeof(z)::Core.Const(Vector{Int64})
โ %7 = Core.typeof(range)::Core.Const(Base.OneTo{Int64})
โ %8 = Core.apply_type(%3, %4, %5, %6, %7)::Core.Const(var"#25#threadsfor_fun#2"{Int64, Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}})
โ (threadsfor_fun = %new(%8, x, y, z, range))
โ %10 = Base.Threads.threadid()::Int64
โ %11 = (%10 != 1)::Bool
โโโ goto #3 if not %11
2 โ (@_7 = %11)
โโโ goto #4
3 โ %15 = $(Expr(:foreigncall, :(:jl_in_threaded_region), Int32, svec(), 0, :(:ccall)))::Int32
โโโ (@_7 = %15 != 0)
4 โ goto #6 if not @_7
5 โ %18 = Base.invokelatest::Core.Const(Base.invokelatest)
โ %19 = threadsfor_fun::var"#25#threadsfor_fun#2"{Int64, Vector{Int64}, Vector{Int64}, Base.OneTo{Int64}}
โ (%18)(%19, true)
โโโ goto #7
6 โ Base.Threads.threading_run(threadsfor_fun)
7 โ %23 = Base.Threads.nothing::Core.Const(nothing)
โโโ return %23
</code></pre></div> | <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="using Images: realtype
function ifi{T<:Real,K,N}(img::AbstractArray{T,N}, kern::AbstractArray{K,N}, border::AbstractString, value)
if border == "circular" && size(img) == size(kern)
out = real(ifftshift(ifft(fft(img).*fft(kern))))
elseif border != "inner"
prepad = [div(size(kern,i)-1, 2) for i = 1:N]
postpad = [div(size(kern,i), 2) for i = 1:N]
fullpad = [nextprod([2,3], size(img,i) + prepad[i] + postpad[i]) - size(img, i) - prepad[i] for i = 1:N]
A = padarray(img, prepad, fullpad, border, convert(T, value))
krn = zeros(typeof(one(T)*one(K)), size(A))
indexesK = ntuple(d->[size(krn,d)-prepad[d]+1:size(krn,d);1:size(kern,d)-prepad[d]], N)::NTuple{N,Vector{Int}}
AF = ifft(fft(A).*fft(krn))
out = Array(realtype(eltype(AF)), size(img))
end
out
end"><pre class="notranslate"><span class="pl-k">using</span> Images<span class="pl-k">:</span> realtype
<span class="pl-k">function</span> <span class="pl-en">ifi</span><span class="pl-c1">{T<:Real,K,N}</span>(img<span class="pl-k">::</span><span class="pl-c1">AbstractArray{T,N}</span>, kern<span class="pl-k">::</span><span class="pl-c1">AbstractArray{K,N}</span>, border<span class="pl-k">::</span><span class="pl-c1">AbstractString</span>, value)
<span class="pl-k">if</span> border <span class="pl-k">==</span> <span class="pl-s"><span class="pl-pds">"</span>circular<span class="pl-pds">"</span></span> <span class="pl-k">&&</span> <span class="pl-c1">size</span>(img) <span class="pl-k">==</span> <span class="pl-c1">size</span>(kern)
out <span class="pl-k">=</span> <span class="pl-c1">real</span>(<span class="pl-c1">ifftshift</span>(<span class="pl-c1">ifft</span>(<span class="pl-c1">fft</span>(img)<span class="pl-k">.*</span><span class="pl-c1">fft</span>(kern))))
<span class="pl-k">elseif</span> border <span class="pl-k">!=</span> <span class="pl-s"><span class="pl-pds">"</span>inner<span class="pl-pds">"</span></span>
prepad <span class="pl-k">=</span> [<span class="pl-c1">div</span>(<span class="pl-c1">size</span>(kern,i)<span class="pl-k">-</span><span class="pl-c1">1</span>, <span class="pl-c1">2</span>) <span class="pl-k">for</span> i <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span>N]
postpad <span class="pl-k">=</span> [<span class="pl-c1">div</span>(<span class="pl-c1">size</span>(kern,i), <span class="pl-c1">2</span>) <span class="pl-k">for</span> i <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span>N]
fullpad <span class="pl-k">=</span> [<span class="pl-c1">nextprod</span>([<span class="pl-c1">2</span>,<span class="pl-c1">3</span>], <span class="pl-c1">size</span>(img,i) <span class="pl-k">+</span> prepad[i] <span class="pl-k">+</span> postpad[i]) <span class="pl-k">-</span> <span class="pl-c1">size</span>(img, i) <span class="pl-k">-</span> prepad[i] <span class="pl-k">for</span> i <span class="pl-k">=</span> <span class="pl-c1">1</span><span class="pl-k">:</span>N]
A <span class="pl-k">=</span> <span class="pl-c1">padarray</span>(img, prepad, fullpad, border, <span class="pl-c1">convert</span>(T, value))
krn <span class="pl-k">=</span> <span class="pl-c1">zeros</span>(<span class="pl-c1">typeof</span>(<span class="pl-c1">one</span>(T)<span class="pl-k">*</span><span class="pl-c1">one</span>(K)), <span class="pl-c1">size</span>(A))
indexesK <span class="pl-k">=</span> <span class="pl-c1">ntuple</span>(d<span class="pl-k">-></span>[<span class="pl-c1">size</span>(krn,d)<span class="pl-k">-</span>prepad[d]<span class="pl-k">+</span><span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">size</span>(krn,d);<span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">size</span>(kern,d)<span class="pl-k">-</span>prepad[d]], N)<span class="pl-k">::</span><span class="pl-c1">NTuple{N,Vector{Int}}</span>
AF <span class="pl-k">=</span> <span class="pl-c1">ifft</span>(<span class="pl-c1">fft</span>(A)<span class="pl-k">.*</span><span class="pl-c1">fft</span>(krn))
out <span class="pl-k">=</span> <span class="pl-c1">Array</span>(<span class="pl-c1">realtype</span>(<span class="pl-c1">eltype</span>(AF)), <span class="pl-c1">size</span>(img))
<span class="pl-k">end</span>
out
<span class="pl-k">end</span></pre></div>
<p dir="auto">Test:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> @code_warntype ifi(rand(3,3), rand(3,3), "replicate", 0)
Variables:
#self#::#ifi
img::Array{Float64,2}
kern::Array{Float64,2}
border::ASCIIString
value::Int64
prepad::Box
..."><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-c1">@code_warntype</span> <span class="pl-c1">ifi</span>(<span class="pl-c1">rand</span>(<span class="pl-c1">3</span>,<span class="pl-c1">3</span>), <span class="pl-c1">rand</span>(<span class="pl-c1">3</span>,<span class="pl-c1">3</span>), <span class="pl-s"><span class="pl-pds">"</span>replicate<span class="pl-pds">"</span></span>, <span class="pl-c1">0</span>)
Variables<span class="pl-k">:</span>
<span class="pl-c"><span class="pl-c">#</span>self#::#ifi</span>
img<span class="pl-k">::</span><span class="pl-c1">Array{Float64,2}</span>
kern<span class="pl-k">::</span><span class="pl-c1">Array{Float64,2}</span>
border<span class="pl-k">::</span><span class="pl-c1">ASCIIString</span>
value<span class="pl-k">::</span><span class="pl-c1">Int64</span>
prepad<span class="pl-k">::</span><span class="pl-c1">Box</span>
<span class="pl-k">...</span></pre></div>
<p dir="auto">Now comment out the <code class="notranslate">indexesK = ...</code> line (the output of which is not used at all). Suddenly <code class="notranslate">prepad</code> is inferred as <code class="notranslate">Array{Int, 1}</code>.</p> | 1 |
<p dir="auto">IS:<br>
As the title says the output of deno bundle when including something from pika.dev seems to ignore pika atleast partially.</p>
<p dir="auto">I created a little test repo with a "bundle.sh" script: <a href="https://github.com/katywings/deno-pika-bundle-test">https://github.com/katywings/deno-pika-bundle-test</a></p>
<p dir="auto">What I try to bundle looks something like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { css } from 'https://cdn.pika.dev/otion@^0.3.1/runtime-deno'
css({ backgroundColor: 'black' })"><pre class="notranslate"><code class="notranslate">import { css } from 'https://cdn.pika.dev/otion@^0.3.1/runtime-deno'
css({ backgroundColor: 'black' })
</code></pre></div>
<p dir="auto">The result bundle actually includes the code from "<a href="https://cdn.pika.dev/otion@%5E0.3.1/runtime-deno" rel="nofollow">https://cdn.pika.dev/otion@^0.3.1/runtime-deno</a>", but then the nested exports from the lines of runtime-deno are missing. So it looks like deno bundle is ignoring stuff like this:<br>
<code class="notranslate">export * from '/-/[email protected]/dist=es2017,mode=exports/server-deno';</code></p>
<p dir="auto">SHOULD:<br>
deno bundle should include all imported dependencies from pika.</p>
<p dir="auto">DETAILS:</p>
<ul dir="auto">
<li>Execution of deno bundle does not give any errors</li>
<li>My random guess would be that this could be related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="591088352" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/4542" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/4542/hovercard" href="https://github.com/denoland/deno/issues/4542">#4542</a> because <code class="notranslate">/-/[email protected]/dist=es2017,mode=exports/server-deno</code> also seems to be using the <code class="notranslate">export X as Y</code> syntax, but I am not sure</li>
</ul> | <h2 dir="auto">Steps to reproduce</h2>
<p dir="auto">Run <code class="notranslate">deno bundle https://deno.land/x/once/index.js</code></p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">It prints a bundled JavaScript code</p>
<h2 dir="auto">Actual behavior</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error TS5012: Cannot read file 'https://deno.land/x/once/index.js': Error: assert.
โบ
error TS6053: File 'https://deno.land/x/once/index.js' not found.
โบ
Found 2 errors."><pre class="notranslate"><code class="notranslate">error TS5012: Cannot read file 'https://deno.land/x/once/index.js': Error: assert.
โบ
error TS6053: File 'https://deno.land/x/once/index.js' not found.
โบ
Found 2 errors.
</code></pre></div>
<hr>
<p dir="auto">I didn't try to bundle remote URL at first, instead, I tried bundling a local file (<code class="notranslate">deps.ts</code>) that import remote JS file. No compile errors occur, but a runtime error (cannot read property of <code class="notranslate">undefined</code>) was thrown when attempting to run it in the browser and in Node.js.</p> | 1 |
<p dir="auto">I have a very strange behavior with the np.dot() function. When computing:<br>
np.dot(vector, vector)<br>
I get a negative value, -3.68935e+19, with the array below:<br>
[-0.95558429 -0.79491568 -0.34074336 -0.31960416 -0.50112027 -0.14804825<br>
0.83092237 -1.04872239 -0.06821966 0.95099533 0.23211323 -0.08363034<br>
-0.84720689 0.53866994 0.33275896 0.18167147 0.42636991 -0.90105802<br>
1.03073204 0.35682318 0.753968 -1.25347698 -0.15214275 0.01669976<br>
0.61865449 0.5806967 1.33312941 0.20144169 0.11802452 -0.29711285<br>
-0.29448548 1.11324942 0.1951234 -0.20648302 -0.28658506 1.09960926<br>
-0.36813557 -0.78195006 0.57407916 0.15383098 0.30026323 1.03336143<br>
0.67244434 0.00452838 0.80118829 -0.23254229 0.66596371 0.15719646<br>
0.40883717 0.40989453 -1.20930338 0.94520253 0.79906452 -0.22432771<br>
0.97588438 -1.72914338 0.05262739 -0.54656118 0.30642688 1.95097971<br>
0.31468016 -0.37122983 -0.77826643 0.06892334 -1.80932391 -0.50851583<br>
-0.37202829 -1.51686203 0.74873447 0.01304383 -0.19901061 -1.07052517<br>
0.75449711 -0.21430047 0.67405069 0.30016151 -0.54680014 1.19146216<br>
0.36444184 0.03734953 -0.32377601 0.56825429 0.81616706 -0.8266384<br>
1.17172229 -0.30052993 1.3422761 -0.33125407 1.96316791 -0.7671603<br>
-0.51845783 -1.07401311 0.47158152 -0.20735571 0.62432927 0.3078284<br>
0.11610977 -1.04085588 -0.97068292 1.1042937 ]</p>
<p dir="auto">I am using the latest version of Anaconda3 (5.0.1) on macOS 10.13.1<br>
The dtype of the array is float32. The problem disappears when converting it to float or np.float64.</p> | <p dir="auto">I've found a very strange bug. Under certain circumstances, a small number of the entries in the dot product of two 2D arrays will be wrong:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
nrow, ncol = 2, 69900
rows = np.random.normal(size=(nrow, 1)).astype(np.float32)
columns = np.random.normal(size=(1, ncol)).astype(np.float32)
np_outer = rows.dot(columns)
ind0, ind1 = 0, 69818
print(np_outer[ind0, ind1], rows[ind0, 0]*columns[0, ind1])"><pre class="notranslate"><code class="notranslate">import numpy as np
nrow, ncol = 2, 69900
rows = np.random.normal(size=(nrow, 1)).astype(np.float32)
columns = np.random.normal(size=(1, ncol)).astype(np.float32)
np_outer = rows.dot(columns)
ind0, ind1 = 0, 69818
print(np_outer[ind0, ind1], rows[ind0, 0]*columns[0, ind1])
</code></pre></div>
<p dir="auto">Most entries are fine. In this example, only columns 69818-69899 in the product are wrong.</p>
<p dir="auto">This issue remains the same using <code class="notranslate">np.matmul(rows,columns)</code> and for different values of <code class="notranslate">nrow</code>. However it doesn't appear for an arbitrary values of <code class="notranslate">ncol</code>. There's a band of values around 69900 where errors appear, but there are none at 60000 or 70000. It's also not always the case that the last columns are the ones affected. For some values of <code class="notranslate">ncol</code>, there will be multiple bands of columns affected.</p>
<p dir="auto">I have not seen this behavior with float64 arrays. It also disappears if you do the dot product in transposed order:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" np_outer_t = columns.T.dot(rows.T).T
print(np_outer_t[ind0, ind1], rows[ind0, 0]*columns[0, ind1])"><pre class="notranslate"><code class="notranslate"> np_outer_t = columns.T.dot(rows.T).T
print(np_outer_t[ind0, ind1], rows[ind0, 0]*columns[0, ind1])
</code></pre></div>
<p dir="auto">System info: numpy 1.12.1, python 3.6.1, Macbook Pro, OS 10.6.1</p> | 1 |
<p dir="auto">Is there a simple integrated way to handle the load animation based on a condition not at the call time but at the loading time ?</p>
<p dir="auto">Typical basic usage : <code class="notranslate">.animate(getUserVisibleHint() ? R.anim.abc_fade_in : R.anim.none)</code> with a viewpager that preload fragments.</p>
<p dir="auto">This works well when loading from cache as it's fast so 99% of the time the image is loaded in invisible fragment before displaying. But when loading from Internet it can be slow and so the image can be loaded while the fragment is visible.</p>
<p dir="auto">And of course in that case the animation does not play since the call was made when the fragment was not visible.</p>
<p dir="auto">This would also maybe allow a proper handling of animate / don't animate in more global way avoiding the empty anim to cover this, since you can't pass 0 or -1 to animate to disable or a boolean somewhere. Making the usage of the builder pattern less useful.</p> | 0 |
|
<h3 dir="auto">Problem description</h3>
<p dir="auto">By default all IE browsers > 10 show a clear icon for text input when any value is entered. Normally the icon has the same height as the input element.</p>
<p dir="auto">With Material-UI the input element is far higher than the actual text, so the demo page <a href="http://www.material-ui.com/#/components/text-field" rel="nofollow">http://www.material-ui.com/#/components/text-field</a><br>
results in the following ugly appearance in IE:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/10390407/20382734/1ce9af36-ace8-11e6-9296-b64b8ff979dd.png"><img src="https://cloud.githubusercontent.com/assets/10390407/20382734/1ce9af36-ace8-11e6-9296-b64b8ff979dd.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">According to Microsoft document <a href="https://support.microsoft.com/en-us/kb/2813492" rel="nofollow">https://support.microsoft.com/en-us/kb/2813492</a>, the clear icon can be disabled by adding a style for the IE-specific pseudo element like:</p>
<p dir="auto"><code class="notranslate">input::-ms-clear { display: none; }</code></p>
<p dir="auto">I think there should by default be a conditional rendering of this css for the TextField for a consistent looking across browsers.</p>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>Material-UI: 0.16.2</li>
<li>React: 15.4.0</li>
<li>Browser: IE 11</li>
</ul> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">I want to get the dom nodes of the Table to complete some events.But there is no way to get the dom in the document.What can I do๏ผ</p>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>0.19.0</td>
</tr>
<tr>
<td>React</td>
<td>15.5.4</td>
</tr>
<tr>
<td>browser</td>
<td>61.0.3163.100</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">Since the default recommended filters for scipy are now SOS, it should make sense to use them for decimate (and other internal uses)</p>
<p dir="auto">This is the current state of scipy.signal.decimate</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" if zero_phase:
y = filtfilt(b, a, x, axis=axis)
else:
y = lfilter(b, a, x, axis=axis)"><pre class="notranslate"><code class="notranslate"> if zero_phase:
y = filtfilt(b, a, x, axis=axis)
else:
y = lfilter(b, a, x, axis=axis)
</code></pre></div>
<p dir="auto">Sorry if this isn't the right class of Issue, new to doing this.</p> | <p dir="auto">Importing <code class="notranslate">scipy.sparse</code> or <code class="notranslate">scipy.special</code> (from 1.0.0rc1 openblas linked wheels) on windows can fail with an ImportError if the target machine does not have msvcp140.dll (part of MS Visual C++ 2015 redistributable package) installed.</p>
<h3 dir="auto">Reproducing code example:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="pip install scipy==1.0.0rc1
python -c"import scipy.sparse"
python -c"import scipy.special""><pre class="notranslate"><code class="notranslate">pip install scipy==1.0.0rc1
python -c"import scipy.sparse"
python -c"import scipy.special"
</code></pre></div>
<h3 dir="auto">Error message:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\biolab\AppData\Local\Programs\Python\Python36\lib\site-packages\scipy\sparse\__init__.py", line 229, in <module>
from .csr import *
File "C:\Users\biolab\AppData\Local\Programs\Python\Python36\lib\site-packages\scipy\sparse\csr.py", line 15, in <module>
from ._sparsetools import csr_tocsc, csr_tobsr, csr_count_blocks, \
ImportError: DLL load failed: The specified module could not be found."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\Users\biolab\AppData\Local\Programs\Python\Python36\lib\site-packages\scipy\sparse\__init__.py", line 229, in <module>
from .csr import *
File "C:\Users\biolab\AppData\Local\Programs\Python\Python36\lib\site-packages\scipy\sparse\csr.py", line 15, in <module>
from ._sparsetools import csr_tocsc, csr_tobsr, csr_count_blocks, \
ImportError: DLL load failed: The specified module could not be found.
</code></pre></div>
<h3 dir="auto">Scipy/Numpy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.0.0rc1 1.13.3 sys.version_info(major=3, minor=6, micro=2, releaselevel='final' , serial=0)"><pre class="notranslate"><code class="notranslate">1.0.0rc1 1.13.3 sys.version_info(major=3, minor=6, micro=2, releaselevel='final' , serial=0)
</code></pre></div>
<p dir="auto">Inspecting the sparsetools*.pyd with dependency walker reveals the missing dependency and installing the appropriate redistributable solves the problem.</p>
<p dir="auto">Also putting the msvc*.dll into 'scipy/extra-dll/' directory also seems to work.</p> | 0 |
<p dir="auto">Might it make sense to define <code class="notranslate">eachindex</code> on strings to be the set of valid indices into the string? That would allow some code to be generic with regards to being passed abstract arrays or strings.</p> | <p dir="auto">Using the Color package made Julia exit without any message whatsoever.<br>
I pinned the error down to Color.jl line 616</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const CAT97s = [ 0.8562 0.3372 -0.1934
-0.8360 1.8327 0.0033
0.0357 -0.0469 1.0112 ]
const CAT97s_INV = inv(CAT97s)"><pre class="notranslate"><code class="notranslate">const CAT97s = [ 0.8562 0.3372 -0.1934
-0.8360 1.8327 0.0033
0.0357 -0.0469 1.0112 ]
const CAT97s_INV = inv(CAT97s)
</code></pre></div>
<p dir="auto">Same behaviour in the Julia readline.<br>
After playing around with it a little, it seems it doesn't like a 3x3 matrix:<br>
<code class="notranslate">inv(rand(3,3))</code> makes Julia also fail without any feedback.<br>
The error seems to be somewhere in <code class="notranslate">inv{T}(F::Factorization{T}) at linalg/factorization.jl:795</code></p>
<h1 dir="auto">versioninfo(true) :</h1>
<p dir="auto">Julia Version 0.3.0-prerelease+2591<br>
Commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/JuliaLang/julia/commit/550866d5fc05d96aab93cf392eea448d9ecb5741/hovercard" href="https://github.com/JuliaLang/julia/commit/550866d5fc05d96aab93cf392eea448d9ecb5741"><tt>550866d</tt></a> (2014-04-10 22:42 UTC)<br>
Platform Info:<br>
System: Windows (x86_64-w64-mingw32)<br>
CPU: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz<br>
WORD_SIZE: 64<br>
Microsoft Windows [Version 6.3.9600]<br>
uname: MINGW32_NT-6.2 1.0.12(0.46/3/2) 2011-07-20 17:52 i686 unknown<br>
Memory: 7.914325714111328 GB (3898.83984375 MB free)<br>
Uptime: 41389.478131 sec<br>
Load Avg: 0.0 0.0 0.0<br>
Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz:<br>
speed user nice sys idle irq ticks<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817954" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/1" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/1/hovercard" href="https://github.com/JuliaLang/julia/issues/1">#1</a> 2295 MHz 1488812 0 757703 38903406 26234 ticks<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="817959" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/2" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/2/hovercard" href="https://github.com/JuliaLang/julia/issues/2">#2</a> 2295 MHz 1430765 0 815171 38903406 157046 ticks<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="818013" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/3" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/3/hovercard" href="https://github.com/JuliaLang/julia/issues/3">#3</a> 2295 MHz 1644765 0 702296 38802281 5062 ticks<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="818058" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/4" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/4/hovercard" href="https://github.com/JuliaLang/julia/issues/4">#4</a> 2295 MHz 1345656 0 588609 39215078 2656 ticks</p>
<p dir="auto">BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY)<br>
LAPACK: libopenblas<br>
LIBM: libopenlibm<br>
Environment:<br>
APR_ICONV_PATH = C:\Program Files (x86)\Subversion\iconv<br>
HOMEDRIVE = C:<br>
HOMEPATH = \Users\Sim<br>
JULIA_EDITOR = start<br>
PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC<br>
VBOX_INSTALL_PATH = C:\Program Files\Oracle\VirtualBox\</p>
<p dir="auto">Package Directory: C:\Users\Sim.julia\v0.3<br>
6 required packages:</p>
<ul dir="auto">
<li>Color 0.2.9</li>
<li>DictUtils 0.0.0</li>
<li>GLUT 0.3.0</li>
<li>ImmutableArrays 0.0.4</li>
<li>Match 0.0.3</li>
<li>SDL 0.1.0<br>
12 additional packages:</li>
<li>BinDeps 0.2.12</li>
<li>Cartesian 0.1.5</li>
<li>Events 0.0.0- master (unregistered, dirty)</li>
<li>GLUtil 0.0.0- master (unregistered, dirty)</li>
<li>GetC 1.1.1</li>
<li>Images 0.2.34</li>
<li>ModernGL 0.0.0- master (unregistered)</li>
<li>OpenGL 1.1.3</li>
<li>SIUnits 0.0.1</li>
<li>TexExtensions 0.0.1</li>
<li>URIParser 0.0.1</li>
<li>Zlib 0.1.6</li>
</ul> | 0 |
<p dir="auto">I just reviewed a PR with the line <code class="notranslate">case err.Error() == "http: can't write HTTP request on broken connection"</code>. That's brittle code, and it's hard to test in a way that ensures it stays in sync with any changes to the error message wording in net/http--but there's no way to improve upon it given the errors the http package emits.</p>
<p dir="auto">Possible improments:</p>
<ul dir="auto">
<li>net/http could predeclare its errors</li>
<li>or make a custom error type</li>
</ul>
<p dir="auto">Any mechanism is fine as long as it lets the compiler check that people are referring to the error they intend to.</p>
<p dir="auto">(I realize this is probably low priority.)</p> | <p dir="auto">(From aaronlevy on IRC)</p>
<p dir="auto">It's hard for a client to know when a HTTP request failed due to timeout, and when for other reasons.</p>
<p dir="auto">Given a slow server</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package main
import (
"fmt"
"net/http"
"time"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
time.Sleep(3*time.Second)
fmt.Fprintf(w, "req rcvd")
})
http.ListenAndServe(":8080", nil)
}"><pre class="notranslate"><span class="pl-k">package</span> main
<span class="pl-k">import</span> (
<span class="pl-s">"fmt"</span>
<span class="pl-s">"net/http"</span>
<span class="pl-s">"time"</span>
)
<span class="pl-k">func</span> <span class="pl-en">main</span>() {
<span class="pl-s1">http</span>.<span class="pl-en">HandleFunc</span>(<span class="pl-s">"/"</span>, <span class="pl-k">func</span>(<span class="pl-s1">w</span> http.<span class="pl-smi">ResponseWriter</span>, <span class="pl-s1">r</span> <span class="pl-c1">*</span>http.<span class="pl-smi">Request</span>) {
<span class="pl-s1">time</span>.<span class="pl-en">Sleep</span>(<span class="pl-c1">3</span><span class="pl-c1">*</span><span class="pl-s1">time</span>.<span class="pl-c1">Second</span>)
<span class="pl-s1">fmt</span>.<span class="pl-en">Fprintf</span>(<span class="pl-s1">w</span>, <span class="pl-s">"req rcvd"</span>)
})
<span class="pl-s1">http</span>.<span class="pl-en">ListenAndServe</span>(<span class="pl-s">":8080"</span>, <span class="pl-c1">nil</span>)
}</pre></div>
<p dir="auto">and a client</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package main
import (
"fmt"
"io/ioutil"
"net"
"net/http"
"net/url"
"time"
)
func main() {
client := &http.Client{
Timeout: time.Duration(time.Second),
}
req, err := client.Get("http://localhost:8080")
if err != nil {
fmt.Printf("type: %T\n", err)
fmt.Printf("error: %v\n", err)
if err2, ok := err.(*url.Error); ok {
fmt.Printf("inner type: %T\n", err2.Err)
fmt.Printf("inner error: %v\n", err2.Err)
if err3, ok := err2.Err.(net.Error); ok {
fmt.Printf("is timeout: %v\n", err3.Timeout())
}
if err4, ok := err2.Err.(*net.OpError); ok {
fmt.Printf("OpError inner type: %T\n", err4.Err)
fmt.Printf("OpError inner error: %v\n", err4.Err)
}
}
return
}
resp, err := ioutil.ReadAll(req.Body)
req.Body.Close()
if err != nil {
fmt.Println(err)
}
fmt.Printf("%s", resp)
}"><pre class="notranslate"><span class="pl-k">package</span> main
<span class="pl-k">import</span> (
<span class="pl-s">"fmt"</span>
<span class="pl-s">"io/ioutil"</span>
<span class="pl-s">"net"</span>
<span class="pl-s">"net/http"</span>
<span class="pl-s">"net/url"</span>
<span class="pl-s">"time"</span>
)
<span class="pl-k">func</span> <span class="pl-en">main</span>() {
<span class="pl-s1">client</span> <span class="pl-c1">:=</span> <span class="pl-c1">&</span>http.<span class="pl-smi">Client</span>{
<span class="pl-c1">Timeout</span>: <span class="pl-s1">time</span>.<span class="pl-en">Duration</span>(<span class="pl-s1">time</span>.<span class="pl-c1">Second</span>),
}
<span class="pl-s1">req</span>, <span class="pl-s1">err</span> <span class="pl-c1">:=</span> <span class="pl-s1">client</span>.<span class="pl-en">Get</span>(<span class="pl-s">"http://localhost:8080"</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">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"type: %T<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err</span>)
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"error: %v<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err</span>)
<span class="pl-k">if</span> <span class="pl-s1">err2</span>, <span class="pl-s1">ok</span> <span class="pl-c1">:=</span> <span class="pl-s1">err</span>.(<span class="pl-c1">*</span>url.<span class="pl-smi">Error</span>); <span class="pl-s1">ok</span> {
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"inner type: %T<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err2</span>.<span class="pl-c1">Err</span>)
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"inner error: %v<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err2</span>.<span class="pl-c1">Err</span>)
<span class="pl-k">if</span> <span class="pl-s1">err3</span>, <span class="pl-s1">ok</span> <span class="pl-c1">:=</span> <span class="pl-s1">err2</span>.<span class="pl-c1">Err</span>.(net.<span class="pl-smi">Error</span>); <span class="pl-s1">ok</span> {
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"is timeout: %v<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err3</span>.<span class="pl-en">Timeout</span>())
}
<span class="pl-k">if</span> <span class="pl-s1">err4</span>, <span class="pl-s1">ok</span> <span class="pl-c1">:=</span> <span class="pl-s1">err2</span>.<span class="pl-c1">Err</span>.(<span class="pl-c1">*</span>net.<span class="pl-smi">OpError</span>); <span class="pl-s1">ok</span> {
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"OpError inner type: %T<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err4</span>.<span class="pl-c1">Err</span>)
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"OpError inner error: %v<span class="pl-cce">\n</span>"</span>, <span class="pl-s1">err4</span>.<span class="pl-c1">Err</span>)
}
}
<span class="pl-k">return</span>
}
<span class="pl-s1">resp</span>, <span class="pl-s1">err</span> <span class="pl-c1">:=</span> <span class="pl-s1">ioutil</span>.<span class="pl-en">ReadAll</span>(<span class="pl-s1">req</span>.<span class="pl-c1">Body</span>)
<span class="pl-s1">req</span>.<span class="pl-c1">Body</span>.<span class="pl-en">Close</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">fmt</span>.<span class="pl-en">Println</span>(<span class="pl-s1">err</span>)
}
<span class="pl-s1">fmt</span>.<span class="pl-en">Printf</span>(<span class="pl-s">"%s"</span>, <span class="pl-s1">resp</span>)
}</pre></div>
<p dir="auto">Results in</p>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ go run server.go &
$ go run client.go
type: *url.Error
error: Get http://localhost:8080: read tcp 127.0.0.1:8080: use of closed network connection
inner type: *net.OpError
inner error: read tcp 127.0.0.1:8080: use of closed network connection
is timeout: false
OpError inner type: *errors.errorString
OpError inner error: use of closed network connection"><pre class="notranslate">$ <span class="pl-s1">go run server.go <span class="pl-k">&</span></span>
$ <span class="pl-s1">go run client.go</span>
<span class="pl-c1">type: *url.Error</span>
<span class="pl-c1">error: Get http://localhost:8080: read tcp 127.0.0.1:8080: use of closed network connection</span>
<span class="pl-c1">inner type: *net.OpError</span>
<span class="pl-c1">inner error: read tcp 127.0.0.1:8080: use of closed network connection</span>
<span class="pl-c1">is timeout: false</span>
<span class="pl-c1">OpError inner type: *errors.errorString</span>
<span class="pl-c1">OpError inner error: use of closed network connection</span></pre></div>
<p dir="auto">That's quite the gift wrapping on that error. But the real bug is "is timeout: false". The error was caused by a timeout, it should claim to be one.</p> | 1 |
<p dir="auto"><strong>Description</strong></p>
<p dir="auto">When a page executes too many queries it would be extremely useful to know where these queries are executed. Since these queries are generated by Doctrine it is very non-obvious where they are coming from.</p>
<p dir="auto"><strong>Example</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1752683/51982533-92e9c900-2496-11e9-92c1-fc0e824ee39c.png"><img src="https://user-images.githubusercontent.com/1752683/51982533-92e9c900-2496-11e9-92c1-fc0e824ee39c.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I would add another toggle "Show stack trace" that shows you exactly where the query was executed in your code.</p> | <blockquote>
<p dir="auto">Checking that the bundle is autoloaded FAILED</p>
</blockquote> | 0 |
<blockquote>
<p dir="auto">Issue originally made by John (jan.dolezal71)</p>
</blockquote>
<h3 dir="auto">Bug information</h3>
<ul dir="auto">
<li><strong>Babel version:</strong> 6.4.0</li>
<li><strong>Node version:</strong> 4.2.0</li>
<li><strong>npm version:</strong> 2.14.15</li>
</ul>
<h3 dir="auto">Options</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"presets": [ "es2015", "stage-0" ]
}"><pre class="notranslate"><code class="notranslate">{
"presets": [ "es2015", "stage-0" ]
}
</code></pre></div>
<h3 dir="auto">Input code</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class Tester {
foo () {
const foo = 'hi';
return foo;
}
}"><pre class="notranslate"><code class="notranslate">class Tester {
foo () {
const foo = 'hi';
return foo;
}
}
</code></pre></div>
<h3 dir="auto">Description</h3>
<p dir="auto">Hi,</p>
<p dir="auto">i upgraded babel to version 6 (from 5) and after editing .babelrc, im getting error these codes:</p>
<p dir="auto">With let:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Duplicate declaration "foo" while parsing file"><pre class="notranslate"><code class="notranslate">Duplicate declaration "foo" while parsing file
</code></pre></div>
<p dir="auto">or with const:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""foo" is read-only (This is an error on an internal node. Probably an internal error. Location has been estimated.) while parsing file:"><pre class="notranslate"><code class="notranslate">"foo" is read-only (This is an error on an internal node. Probably an internal error. Location has been estimated.) while parsing file:
</code></pre></div>
<p dir="auto">babel-core, babel-preset-es2015, babel-preset-stage-0 installed</p>
<p dir="auto">Im attaching test code, same error.</p>
<p dir="auto">thanks in advance,<br>
John.</p> | <p dir="auto">Feature request</p>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">Currently the following block:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="render`
<div>
<h1>Hello, world!</h1>
<h2>It is ${new Date().toLocaleTimeString()}.</h2>
</div>
`;"><pre class="notranslate"><span class="pl-en">render</span><span class="pl-s">`</span>
<span class="pl-s"> <div></span>
<span class="pl-s"> <h1>Hello, world!</h1></span>
<span class="pl-s"> <h2>It is <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-k">new</span> <span class="pl-v">Date</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toLocaleTimeString</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">}</span></span>.</h2></span>
<span class="pl-s"> </div></span>
<span class="pl-s"> `</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">will result into:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""use strict";
var _templateObject = _taggedTemplateLiteral(
["\n <div>\n <h1>Hello, world!</h1>\n <h2>It is ", ".</h2>\n </div>\n "],
["\n <div>\n <h1>Hello, world!</h1>\n <h2>It is ", ".</h2>\n </div>\n "]
);
function _taggedTemplateLiteral(strings, raw) { return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
render(_templateObject, new Date().toLocaleTimeString());"><pre class="notranslate"><span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">_templateObject</span> <span class="pl-c1">=</span> <span class="pl-en">_taggedTemplateLiteral</span><span class="pl-kos">(</span>
<span class="pl-kos">[</span><span class="pl-s">"\n <div>\n <h1>Hello, world!</h1>\n <h2>It is "</span><span class="pl-kos">,</span> <span class="pl-s">".</h2>\n </div>\n "</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">[</span><span class="pl-s">"\n <div>\n <h1>Hello, world!</h1>\n <h2>It is "</span><span class="pl-kos">,</span> <span class="pl-s">".</h2>\n </div>\n "</span><span class="pl-kos">]</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">_taggedTemplateLiteral</span><span class="pl-kos">(</span><span class="pl-s1">strings</span><span class="pl-kos">,</span> <span class="pl-s1">raw</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">freeze</span><span class="pl-kos">(</span><span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">defineProperties</span><span class="pl-kos">(</span><span class="pl-s1">strings</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">raw</span>: <span class="pl-kos">{</span> <span class="pl-c1">value</span>: <span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">freeze</span><span class="pl-kos">(</span><span class="pl-s1">raw</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-en">render</span><span class="pl-kos">(</span><span class="pl-s1">_templateObject</span><span class="pl-kos">,</span> <span class="pl-k">new</span> <span class="pl-v">Date</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toLocaleTimeString</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">Clearly this is not ideal, as it is not only longer, but also contains unwanted characters, which make the bundle little tiny bit heavier.</p>
<h3 dir="auto">Possible Solution</h3>
<p dir="auto">Allow dev to optionally pass in <code class="notranslate">html</code> together with <code class="notranslate">loose</code> / <code class="notranslate">spec</code>. From the <a href="/babel/babel/blob/7.0/packages/babel-plugin-transform-es2015-template-literals/src/index.js#L38">following line</a>:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="strings.push(value);"><pre class="notranslate"><span class="pl-s1">strings</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">value</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Can it be changed to:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="strings.push(value.replace(/\r\n\t/g, ''));"><pre class="notranslate"><span class="pl-s1">strings</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">value</span><span class="pl-kos">.</span><span class="pl-en">replace</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\r</span><span class="pl-cce">\n</span><span class="pl-cce">\t</span><span class="pl-c1">/</span>g</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></pre></div>
<p dir="auto">when <code class="notranslate">html</code> === true ?</p>
<table role="table">
<thead>
<tr>
<th>software</th>
<th>version(s)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Babel</td>
<td>latest</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">hi there, i have a question about face and vertex uvs ....</p>
<p dir="auto">i sort of understend the face uv .... wich works in the faces list with a index ....</p>
<p dir="auto">[ [ UV1, UV2, UV3, โฆ ], [ UV1, UV2, UV3, โฆ ], โฆ ];</p>
<p dir="auto">the extra [ ] is one face and thats where the index points at ..... (please, correct me if im wrong)<br>
and every value in there is one corner of the face the position of the vertex in the texture editor ...<br>
if im right ... does it matter in what order the come in or do they have to be sorted so i get a<br>
increasing value ( 1,2,3,5, 7,8,9,)</p>
<p dir="auto">the vertex list is a different story ..... whats the difference and do you need them both?</p>
<p dir="auto">[ [ [UV1, UV2, UV3], [UV4, UV5, UV6],โฆ ], [ [UV1, UV2, UV3], [UV4, UV5, UV6],โฆ ], โฆ ];</p>
<p dir="auto">another extra [ ] the first set of [ ] is a face and the second set is the values og the uvs surounding the vertex? but were looking at vertecies and not faces this doesnt make realy alot of sence to me ...... and what information of the position of the vertx doe you have if the surrounding faces are not conected ...... i realy stuck on this one</p>
<p dir="auto">can anybody clear this up for me please?</p>
<p dir="auto">maarten</p> | <p dir="auto">In the normalmap shader here:</p>
<p dir="auto"><a href="https://github.com/mrdoob/three.js/blob/master/src/renderers/shaders/ShaderLib.js#L572">https://github.com/mrdoob/three.js/blob/master/src/renderers/shaders/ShaderLib.js#L572</a></p>
<p dir="auto">It defines uniforms for the various standard material colors (diffuse, ambient, specular) but it does so in a way that is different from every other material because it calls them "uDiffuseColor", "uAmbientColor" and "uSpecularColor". Every other material uses the standard set out here:</p>
<p dir="auto"><a href="https://github.com/mrdoob/three.js/blob/master/src/renderers/shaders/ShaderChunk.js#L444">https://github.com/mrdoob/three.js/blob/master/src/renderers/shaders/ShaderChunk.js#L444</a></p>
<p dir="auto">with the names being "diffuse", "ambient" and "specular."</p>
<p dir="auto">I think there is/was some attempt to prefix uniforms with "u" but it is inconsistently done. Probably should settle on a single standard here.</p>
<p dir="auto">I'd suggest as going as far as creating a 'surface_colors' section in the ShaderLib.js for "diffuseColor", "ambientColor", "emissiveColor" and "specularColor" (I'd recommend including "Color" in the name to be clear what it is) as it is pretty common and making it standardized just simplifies things.</p> | 0 |
<p dir="auto">Dear <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/stas00/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/stas00">@stas00</a> and whoever else is willing to help!</p>
<p dir="auto">So far I have only checked pegasus' rouge scores on 2/12 datasets for which we have checkpoints.<br>
For the other 10 datasets I either haven't tried or have tried briefly and gotten stuck.</p>
<p dir="auto">The full scope of the project is that:<br>
for each dataset:</p>
<ol dir="auto">
<li>There is an automated way to download the data, either from S3 or source. (To the extent possible, much of the logic in this script should eventually live in the <code class="notranslate">datasets</code> package).</li>
<li>we know our pegasus implementation's rouge score<br>
2b) if our score is very different than the authors', we know whether that difference is due to data preprocessing, and if it is, we can preprocess the dataset similarly to the pegasus authors.</li>
<li>Our rouge score is within 0.3 Rouge2 of the reported. (Authors) column below.</li>
</ol>
<h3 dir="auto">Steps</h3>
<h4 dir="auto">Getting Data</h4>
<p dir="auto">By far the most difficult part of each project is getting the dataset. And giving up quickly if you can't and writing a github issue somewhere.<br>
I tried 1 approach to getting data: <a href="https://gist.github.com/sshleifer/c4aed7bf4418b50caee731e94be05d9f">this script</a><br>
It worked for gigaword, I just haven't done the evaluation, but it failed for <code class="notranslate">aeslc</code> and then I gave up.</p>
<p dir="auto">Another complementary approach would be to try to directly use the <a href="https://github.com/google-research/pegasus/blob/master/pegasus/data/public_supervised_datasets.py">pegasus dataset code</a></p>
<p dir="auto">This will likely push preprocessing issues towards the back of the project. (when we try to send PRs to the datasets repo), but might be better than using my script.</p>
<h4 dir="auto">After you get data</h4>
<p dir="auto">When you have gotten a dataset you can sanity check</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="python -m torch.distributed.launch --nproc_per_node=2 run_distributed_eval.py \
--model_name google/pegasus-large $\ # see note 1
--save_dir xsum_generations \
--data_dir xsum \
--prefix test \
--n_obs 100 \"><pre class="notranslate">python -m torch.distributed.launch --nproc_per_node=2 run_distributed_eval.py \
--model_name google/pegasus-large $<span class="pl-cce">\ </span> <span class="pl-c"><span class="pl-c">#</span> see note 1</span>
--save_dir xsum_generations \
--data_dir xsum \
--prefix <span class="pl-c1">test</span> \
--n_obs 100 \</pre></div>
<p dir="auto">Note 1: you can just keep running pegasus-large and expect a high single digits or better rouge2 score,to avoid downloading all the checkpoints or, you can change this to the relevant checkpoint.<br>
Note 2: I am happy to run all the evals on newer hardware, very easy for me.<br>
Note 3: We can do data sharing by getting you aws creds, or some other solution. Key is that I can download from command line, e.g. Google Drive + gdown.</p>
<h3 dir="auto">Misc thoughts:</h3>
<ul dir="auto">
<li>arxiv and pubmed are listed under <code class="notranslate">scientific_papers</code> in the datasets package.</li>
<li>This is really 10 projects (1 each dataset, 2 of which I've started). If I were you I would ignore the started 2 and start on a few other ones.</li>
<li>If a dataset only has train/test or train/val or some other splits, see how the pegasus authors did the split.</li>
<li>Partial credit is valuable!</li>
<li>this could easily have been an issue for the datasets project rather than the transformers project.</li>
<li>There is no reason to merge PRs quickly for this project, but eventually we want a (much better) download_summ_dataset.py script or instructions for using other libs to accomplish the same outcome.</li>
<li>Will be good for both of us to learn the datasets internals.</li>
<li>Raw Billsum has multiple line articles, which breaks everything :( , (we could try to support raw nlp datasets in our <code class="notranslate">DataLoader</code>)</li>
</ul>
<p dir="auto">Here is a copy of the table we are trying to fill out in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="689259666" data-permission-text="Title is private" data-url="https://github.com/huggingface/transformers/issues/6844" data-hovercard-type="issue" data-hovercard-url="/huggingface/transformers/issues/6844/hovercard" href="https://github.com/huggingface/transformers/issues/6844">#6844</a> : (I made a new issue to avoid spamming that one)</p>
<table role="table">
<thead>
<tr>
<th>dataset</th>
<th>Authors</th>
<th>This Repo</th>
</tr>
</thead>
<tbody>
<tr>
<td>xsum</td>
<td>47.60/24.83/39.64</td>
<td>46.87/24.46/39.15</td>
</tr>
<tr>
<td>cnn_dailymail</td>
<td>44.16/21.56/41.30</td>
<td>see 1</td>
</tr>
<tr>
<td>newsroom</td>
<td>45.07/33.39/41.28</td>
<td>have <code class="notranslate">.tar</code> file</td>
</tr>
<tr>
<td>multi_news</td>
<td>47.65/18.75/24.95</td>
<td></td>
</tr>
<tr>
<td>gigaword</td>
<td>39.65/20.47/36.76</td>
<td>39.79/20.56/36.80</td>
</tr>
<tr>
<td>wikihow</td>
<td>46.39/22.12/38.41 *</td>
<td>Asked Authors</td>
</tr>
<tr>
<td>reddit_tifu</td>
<td>27.99/9.81/22.94</td>
<td>32.75/11.68/24.97</td>
</tr>
<tr>
<td>big_patent</td>
<td>52.29/33.08/41.66 *</td>
<td></td>
</tr>
<tr>
<td>arxiv</td>
<td>44.21/16.95/25.67</td>
<td></td>
</tr>
<tr>
<td>pubmed</td>
<td>45.97/20.15/28.25</td>
<td></td>
</tr>
<tr>
<td>aeslc</td>
<td>37.68/21.25/36.51</td>
<td>37.1/21.4/35.94</td>
</tr>
<tr>
<td>billsum</td>
<td>59.67/41.58/47.59</td>
<td>54.99/37.43/43.07</td>
</tr>
</tbody>
</table>
<p dir="auto">Originally from mixed & stochastic column of this <a href="https://github.com/google-research/pegasus#results-update">table</a></p>
<p dir="auto">This was really long, and probably disorganized, so feel free to ask clarifying questions here or on slack!<br>
cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/stas00/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/stas00">@stas00</a></p>
<ol dir="auto">
<li>I got similar scores on cnn-dailymail by finetuning the authors' model on our dataset for a bit.</li>
<li>reddit_tifu: added <code class="notranslate">--min_length 32</code></li>
</ol> | <h2 dir="auto">Environment info</h2>
<ul dir="auto">
<li><code class="notranslate">transformers</code> version: 4.17.0</li>
<li>Platform: Linux-4.14.252-131.483.amzn1.x86_64-x86_64-with-glibc2.9</li>
<li>Python version: 3.6.13</li>
<li>PyTorch version (GPU?): 1.7.1 (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?: Using accelerate but there's only 1 GPU currently</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/LysandreJik/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LysandreJik">@LysandreJik</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SaulLu/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SaulLu">@SaulLu</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>
<p dir="auto">--></p>
<h2 dir="auto">Information</h2>
<p dir="auto">Model I am using (Bert, XLNet ...): YituTech/conv-bert-base</p>
<p dir="auto">The problem arises when using:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> the official example scripts: (give details below)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> my own modified scripts: (give details below) . Modified scripts but save_model method which is causing issues is exact same as this: <a href="https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue_no_trainer.py#L460">https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue_no_trainer.py#L460</a></li>
</ul>
<p dir="auto">The tasks I am working on is:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> an official GLUE/SQUaD task: (give the name)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> my own task or dataset: (give details below) - Similar GLUE like paired sentence classification task</li>
</ul>
<h2 dir="auto">To reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<p dir="auto">For some models such as the one mentioned above, I've seen some times the script abruptly fails with a weird PanicException while trying to save the tokenizer. I don't think this is model specific issue, because other 3p models have saved successfully for me always, so looks like something to do with Transformers/tokenizers lib. See code that I'm using to save the model below, along with detailed logs as well.</p>
<p dir="auto">I've no idea about this issue, and how to fix it. For other standard models like bert, roberta etc the saving has worked fine always, along with some other 3p models that I've tried as well. Please let me know if you any need more information from me on this?</p>
<p dir="auto">I'm saving both the model and tokenizer only in main_process, I hope that's right? I find this slightly weird because clearly if you see from the logs below model is getting saved to dir successfully, but tokenizer specifically is failing. Not sure what could be the peculiarity here causing this? Any suggestions that you might have to fix this would be really helpful!</p>
<p dir="auto">Relevant code to save model, which is causing the issue - same as this: <a href="https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue_no_trainer.py#L460">https://github.com/huggingface/transformers/blob/master/examples/pytorch/text-classification/run_glue_no_trainer.py#L460</a> . I've also included a couple of lines at the top in the code blurb below to show how I'm initializing the config/tokenizer/model if that might be of any relevance:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" config = AutoConfig.from_pretrained(args.model_name_or_path, num_labels=num_labels, finetuning_task=None)
tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path, use_fast=not args.use_slow_tokenizer)
model = AutoModelForSequenceClassification.from_pretrained(
args.model_name_or_path,
from_tf=bool(".ckpt" in args.model_name_or_path),
config=config,
cache_dir=args.output_dir
)
def save_model(model, tokenizer, args):
if args.output_dir is not None and accelerator.is_main_process:
# Handle the repository creation
if args.output_dir is not None:
os.makedirs(args.output_dir, exist_ok=True)
accelerator.wait_for_everyone()
unwrapped_model = accelerator.unwrap_model(model)
unwrapped_model.save_pretrained(args.output_dir, save_function=accelerator.save)
tokenizer.save_pretrained(args.output_dir)"><pre class="notranslate"><code class="notranslate"> config = AutoConfig.from_pretrained(args.model_name_or_path, num_labels=num_labels, finetuning_task=None)
tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path, use_fast=not args.use_slow_tokenizer)
model = AutoModelForSequenceClassification.from_pretrained(
args.model_name_or_path,
from_tf=bool(".ckpt" in args.model_name_or_path),
config=config,
cache_dir=args.output_dir
)
def save_model(model, tokenizer, args):
if args.output_dir is not None and accelerator.is_main_process:
# Handle the repository creation
if args.output_dir is not None:
os.makedirs(args.output_dir, exist_ok=True)
accelerator.wait_for_everyone()
unwrapped_model = accelerator.unwrap_model(model)
unwrapped_model.save_pretrained(args.output_dir, save_function=accelerator.save)
tokenizer.save_pretrained(args.output_dir)
</code></pre></div>
<p dir="auto">Logs:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="03/18/2022 11:51:47 - INFO - __main__ - ***** Running training *****
03/18/2022 11:51:47 - INFO - __main__ - Num examples = 25227
03/18/2022 11:51:47 - INFO - __main__ - Num Epochs = 10
03/18/2022 11:51:47 - INFO - __main__ - Instantaneous batch size per device = 32
03/18/2022 11:51:47 - INFO - __main__ - Total train batch size (w. parallel, distributed & accumulation) = 32
03/18/2022 11:51:47 - INFO - __main__ - Gradient Accumulation steps = 1
03/18/2022 11:51:47 - INFO - __main__ - Total optimization steps = 7890
100%|โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ| 7890/7890 [28:11<00:00, 6.46it/s]03/18/2022 12:20:32 - INFO - __main__ - *** Predict ***
Configuration saved in conv-bert-base/config.json
Model weights saved in conv-bert-base/pytorch_model.bin
tokenizer config file saved in conv-bert-base/tokenizer_config.json
Special tokens file saved in conv-bert-base/special_tokens_map.json
thread '<unnamed>' panicked at 'no entry found for key', /__w/tokenizers/tokenizers/tokenizers/src/models/mod.rs:36:66
Traceback (most recent call last):
File "run.py", line 566, in <module>
main()
File "run.py", line 563, in main
tokenizer.save_pretrained(args.output_dir)
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/transformers/tokenization_utils_base.py", line 2108, in save_pretrained
filename_prefix=filename_prefix,
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/transformers/tokenization_utils_fast.py", line 599, in _save_pretrained
self.backend_tokenizer.save(tokenizer_file)
pyo3_runtime.PanicException: no entry found for key
100%|โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ| 7890/7890 [29:26<00:00, 4.47it/s]
Traceback (most recent call last):
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/bin/accelerate", line 8, in <module>
sys.exit(main())
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/accelerate/commands/accelerate_cli.py", line 41, in main
args.func(args)
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/accelerate/commands/launch.py", line 384, in launch_command
simple_launcher(args)
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/accelerate/commands/launch.py", line 142, in simple_launcher
raise subprocess.CalledProcessError(returncode=process.returncode, cmd=cmd)
subprocess.CalledProcessError: Command '['/home/ec2-user/anaconda3/envs/pytorch_latest_p36/bin/python', 'run.py', '--model_name_or_path', 'YituTech/conv-bert-base', '--train_file', '../data/train.csv', '--validation_file', '../data/val.csv', '--test_file', '../data/test.csv', '--max_length', '128', '--per_device_train_batch_size', '32', '--learning_rate', '2e-5', '--num_train_epochs', '10', '--output_dir', 'conv-bert-base/']' returned non-zero exit status 1."><pre class="notranslate"><code class="notranslate">03/18/2022 11:51:47 - INFO - __main__ - ***** Running training *****
03/18/2022 11:51:47 - INFO - __main__ - Num examples = 25227
03/18/2022 11:51:47 - INFO - __main__ - Num Epochs = 10
03/18/2022 11:51:47 - INFO - __main__ - Instantaneous batch size per device = 32
03/18/2022 11:51:47 - INFO - __main__ - Total train batch size (w. parallel, distributed & accumulation) = 32
03/18/2022 11:51:47 - INFO - __main__ - Gradient Accumulation steps = 1
03/18/2022 11:51:47 - INFO - __main__ - Total optimization steps = 7890
100%|โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ| 7890/7890 [28:11<00:00, 6.46it/s]03/18/2022 12:20:32 - INFO - __main__ - *** Predict ***
Configuration saved in conv-bert-base/config.json
Model weights saved in conv-bert-base/pytorch_model.bin
tokenizer config file saved in conv-bert-base/tokenizer_config.json
Special tokens file saved in conv-bert-base/special_tokens_map.json
thread '<unnamed>' panicked at 'no entry found for key', /__w/tokenizers/tokenizers/tokenizers/src/models/mod.rs:36:66
Traceback (most recent call last):
File "run.py", line 566, in <module>
main()
File "run.py", line 563, in main
tokenizer.save_pretrained(args.output_dir)
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/transformers/tokenization_utils_base.py", line 2108, in save_pretrained
filename_prefix=filename_prefix,
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/transformers/tokenization_utils_fast.py", line 599, in _save_pretrained
self.backend_tokenizer.save(tokenizer_file)
pyo3_runtime.PanicException: no entry found for key
100%|โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ| 7890/7890 [29:26<00:00, 4.47it/s]
Traceback (most recent call last):
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/bin/accelerate", line 8, in <module>
sys.exit(main())
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/accelerate/commands/accelerate_cli.py", line 41, in main
args.func(args)
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/accelerate/commands/launch.py", line 384, in launch_command
simple_launcher(args)
File "/home/ec2-user/anaconda3/envs/pytorch_latest_p36/lib/python3.6/site-packages/accelerate/commands/launch.py", line 142, in simple_launcher
raise subprocess.CalledProcessError(returncode=process.returncode, cmd=cmd)
subprocess.CalledProcessError: Command '['/home/ec2-user/anaconda3/envs/pytorch_latest_p36/bin/python', 'run.py', '--model_name_or_path', 'YituTech/conv-bert-base', '--train_file', '../data/train.csv', '--validation_file', '../data/val.csv', '--test_file', '../data/test.csv', '--max_length', '128', '--per_device_train_batch_size', '32', '--learning_rate', '2e-5', '--num_train_epochs', '10', '--output_dir', 'conv-bert-base/']' returned non-zero exit status 1.
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Tokenizer save should be successful.</p> | 0 |
<p dir="auto">Originally reported by Anik Halder on the mailing list <a href="http://matplotlib.1069221.n5.nabble.com/IPython-FITS-file-plotting-problem-tp47271.html" rel="nofollow">http://matplotlib.1069221.n5.nabble.com/IPython-FITS-file-plotting-problem-tp47271.html</a></p>
<p dir="auto">Consider this simple example:</p>
<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
x = np.arange(10)
X, Y = np.meshgrid(x,x)
Z = ((X-5)**2 + (Y-5)**2)**0.5
plt.imshow(Z, origin = "lower")
plt.colorbar()
plt.show()
plt.figure()
plt.imshow(Z.astype('>f8'), origin = "lower")
plt.colorbar()
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-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">10</span>)
<span class="pl-v">X</span>, <span class="pl-v">Y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">meshgrid</span>(<span class="pl-s1">x</span>,<span class="pl-s1">x</span>)
<span class="pl-v">Z</span> <span class="pl-c1">=</span> ((<span class="pl-v">X</span><span class="pl-c1">-</span><span class="pl-c1">5</span>)<span class="pl-c1">**</span><span class="pl-c1">2</span> <span class="pl-c1">+</span> (<span class="pl-v">Y</span><span class="pl-c1">-</span><span class="pl-c1">5</span>)<span class="pl-c1">**</span><span class="pl-c1">2</span>)<span class="pl-c1">**</span><span class="pl-c1">0.5</span>
<span class="pl-s1">plt</span>.<span class="pl-en">imshow</span>(<span class="pl-v">Z</span>, <span class="pl-s1">origin</span> <span class="pl-c1">=</span> <span class="pl-s">"lower"</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">colorbar</span>()
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()
<span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">plt</span>.<span class="pl-en">imshow</span>(<span class="pl-v">Z</span>.<span class="pl-en">astype</span>(<span class="pl-s">'>f8'</span>), <span class="pl-s1">origin</span> <span class="pl-c1">=</span> <span class="pl-s">"lower"</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">colorbar</span>()
<span class="pl-s1">plt</span>.<span class="pl-en">show</span>()</pre></div>
<p dir="auto">Which produces:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/548266/16527177/3c6c6a86-3fad-11e6-843e-6a17a6afeab3.png"><img src="https://cloud.githubusercontent.com/assets/548266/16527177/3c6c6a86-3fad-11e6-843e-6a17a6afeab3.png" alt="right" style="max-width: 100%;"></a><br>
And:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/548266/16527178/3e7af0cc-3fad-11e6-9b95-fdd75809b79e.png"><img src="https://cloud.githubusercontent.com/assets/548266/16527178/3e7af0cc-3fad-11e6-9b95-fdd75809b79e.png" alt="wrong" style="max-width: 100%;"></a></p>
<p dir="auto">This works correctly in 1.5.1 so it looks like it's a regression in 2.x</p> | <p dir="auto">The following minimal example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import matplotlib
matplotlib.use('Agg')
from astropy.wcs import WCS
from wcsaxes import datasets
import matplotlib.pyplot as plt
hdu = datasets.fetch_msx_hdu()
plt.imshow(hdu.data, vmin=-2e-4, vmax=2e-4)
plt.savefig('image.png')"><pre class="notranslate"><code class="notranslate">import matplotlib
matplotlib.use('Agg')
from astropy.wcs import WCS
from wcsaxes import datasets
import matplotlib.pyplot as plt
hdu = datasets.fetch_msx_hdu()
plt.imshow(hdu.data, vmin=-2e-4, vmax=2e-4)
plt.savefig('image.png')
</code></pre></div>
<p dir="auto">produces the following output:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/314716/15148599/dedc6636-16bd-11e6-83f8-a06d4c5f5757.png"><img src="https://cloud.githubusercontent.com/assets/314716/15148599/dedc6636-16bd-11e6-83f8-a06d4c5f5757.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">This appears to be related to the fact the values in the image data are < 1. If I multiply all the values by 1e6, I get something sensible:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="plt.imshow(hdu.data * 1e6, vmin=-2e-4, vmax=2e-4)
plt.savefig('image.png')"><pre class="notranslate"><code class="notranslate">plt.imshow(hdu.data * 1e6, vmin=-2e-4, vmax=2e-4)
plt.savefig('image.png')
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/314716/15148648/26fd7162-16be-11e6-84b9-347e388d99f2.png"><img src="https://cloud.githubusercontent.com/assets/314716/15148648/26fd7162-16be-11e6-84b9-347e388d99f2.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">We are suffering a big performance hit with druid due to a dimension in our data source which has a very high cardinality. We need that dimension but only if there are significant rows with that dimension, i.e. we should ignore/discard cases where this dimension with a unique value only appears once.</p>
<p dir="auto">We thought about doing a two-step process: as we are inserting in realtime from Storm, when we receive the data we don't know if it's first appear or not, so we are inserting all, and once segment is closed after an hour, we execute a second query in a HIVE view to group manually the ones that only appear one time under something like "Unknown", and insert them again. The problem with this is that during the current hour there is still a degradation performance issue, but at least it works fine for data outside the realtime segment.</p>
<p dir="auto">This is an in-house provisional solution, but we would like to know if someone can help with a more elegant one.</p>
<p dir="auto">We are using version 0.9.2.</p>
<p dir="auto">Thanks for your time.</p> | <p dir="auto">I see a problem with the current way of managing metadata about publishing segments in AppenderatorDriver. Lets say a task calls AppenderatorDriver to publish segments for a sequence, then the driver will remove the sequence information from activeSegments and publishPendingSegments map. Now, if the task is restarted at a point after in memory data is persisted and metadata is committed but before any mergeAndPush or publish happens, then on restart if the task again tells driver to publish the same sequence, there is no way for the driver to know what segments to publish.</p>
<p dir="auto">If you look at the code for publish or publishAll method of AppenderatorDriver the first thing that is done is to remove the sequence information from activeSegments and publishPendingSegments map. After that push is called on Appenderator with wrapped committer which will contain driver metadata (with the sequence information removed). In the push implementation in memory data is persisted using persist method which also commits the metadata to disk. So, what I was saying is that if task is restarted at this point, the restored metadata might be incomplete as this sequence information will not be restored. Any further calls to publish this sequence wouldn't do anything.</p>
<p dir="auto">One way to resolve this would be to maintain an additional in-memory structure that contains sequences which are being published. On call to publish, sequence information is removed from activeSegments map but not from publishPendingSegments and added to the new in-memory structure. On successful publish sequence information is removed from the publishPendingSegments and in-memory structure. Any call to publish should try to publish sequence if it is not in the in-memory structure (it may not be in the activeSegment map when task is restarted at the point of time above described).</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">I used to use Hain to do /shutdown or /restart, this is a feature I surprisingly used allot!<br>
My PC screen would be off and I would be able to do ALT+SPACE /restart or /shutdown without having to turn on my screen.<br>
I would also use /taskkill /f /t /pid [Process name] allot. Later on I started using a plugin allowing me to /kill [Process name] instead.</p>
<p dir="auto">This would make opening CMD for a single thing redundant. It would make some peoples workflow allot quicker</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">Either a direct push to CMD/Powershell using /[command], /p[command] or additionally allow custom commands to be set as shortcuts for these.</p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">๐</g-emoji> Provide a description of the new feature</h2>
<p dir="auto">Web developers, designers or anybody that working with colors need more color formats (better color models) in the ColorPicker as only the RGB values</p>
<h2 dir="auto"><a href="https://en.wikipedia.org/wiki/Color_model" rel="nofollow">Wikipedia - Color models</a></h2>
<p dir="auto">If you'd like to see this feature implemented, add a <g-emoji class="g-emoji" alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png">๐</g-emoji> reaction to this post.</p> | 0 |
<p dir="auto">Every <code class="notranslate">View</code> should have a queue of dom write operations and and a queue of dom read operations.</p>
<ol dir="auto">
<li>All dom operations should be ran in the queues.</li>
<li>Write operations must run bottom up (child view, then parent view).</li>
<li>We need to flush the queues on digest.</li>
</ol> | 1 |
|
<h3 dir="auto">System Information</h3>
<p dir="auto">OpenCV version: 4.6.0<br>
MacBook M1 Pro<br>
Venture 13.1<br>
Xcode 14.1<br>
Python 3.11.0</p>
<p dir="auto">Command:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python opencv/platforms/ios/build_framework.py ios --contrib opencv_contrib --iphoneos_archs arm64 --iphonesimulator_archs x86_64"><pre class="notranslate"><code class="notranslate">python opencv/platforms/ios/build_framework.py ios --contrib opencv_contrib --iphoneos_archs arm64 --iphonesimulator_archs x86_64
</code></pre></div>
<h3 dir="auto">Detailed description</h3>
<p dir="auto">Always Build error with different *Ext.swift files</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---
note: Run script build phase 'Generate CMakeFiles/ALL_BUILD' will be run during every build because the option to run the script phase "Based on dependency analysis" is unchecked. (in target 'ALL_BUILD' from project 'opencv2')
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ PhotoExt.swift,\ Structured_lightExt.swift /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/photo/PhotoExt.swift /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/structured_light/Structured_lightExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal arm64 /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/photo/PhotoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal arm64 /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/structured_light/Structured_lightExt.swift (in target 'opencv2' from project 'opencv2')
(3 failures)
============================================================
ERROR: Command '['xcodebuild', 'BITCODE_GENERATION_MODE=bitcode', 'IPHONEOS_DEPLOYMENT_TARGET=11.0', 'ARCHS=arm64', '-sdk', 'iphoneos', '-configuration', 'Release', '-parallelizeTargets', '-jobs', '10', '-target', 'ALL_BUILD', 'build']' returned non-zero exit status 65.
============================================================"><pre class="notranslate"><code class="notranslate">---
note: Run script build phase 'Generate CMakeFiles/ALL_BUILD' will be run during every build because the option to run the script phase "Based on dependency analysis" is unchecked. (in target 'ALL_BUILD' from project 'opencv2')
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ PhotoExt.swift,\ Structured_lightExt.swift /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/photo/PhotoExt.swift /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/structured_light/Structured_lightExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal arm64 /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/photo/PhotoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal arm64 /Users/don/Projects/ios/build/build-arm64-iphoneos/modules/objc_bindings_generator/ios/gen/objc/structured_light/Structured_lightExt.swift (in target 'opencv2' from project 'opencv2')
(3 failures)
============================================================
ERROR: Command '['xcodebuild', 'BITCODE_GENERATION_MODE=bitcode', 'IPHONEOS_DEPLOYMENT_TARGET=11.0', 'ARCHS=arm64', '-sdk', 'iphoneos', '-configuration', 'Release', '-parallelizeTargets', '-jobs', '10', '-target', 'ALL_BUILD', 'build']' returned non-zero exit status 65.
============================================================
</code></pre></div>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">again compiling error with other *Ext.swift files ?!</p>
<h3 dir="auto">Issue submission checklist</h3>
<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"> I checked the problem with documentation, FAQ, open issues, forum.opencv.org, Stack Overflow, etc and have not found any solution</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I updated to the 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"> There is reproducer code and related data files (videos, images, onnx, etc)</li>
</ul> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal x86_64 (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/objdetect/ObjdetectExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/photo/PhotoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/structured_light/Structured_lightExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/aruco/ArucoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/calib3d/Calib3dExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/ByteVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/CoreExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/imgcodecs/ImgcodecsExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/imgproc/ImgprocExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/ml/MlExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/CvTypeExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/DoubleVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/FloatVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/dnn/DnnExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/face/FaceExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/features2d/Features2dExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/IntVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/MatExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/Typealiases.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/text/TextExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/video/VideoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/videoio/VideoioExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/wechat_qrcode/Wechat_qrcodeExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/xfeatures2d/Xfeatures2dExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/ximgproc/XimgprocExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'opencv2' from project 'opencv2')
(27 failures)
============================================================
ERROR: Command '['xcodebuild', 'MACOSX_DEPLOYMENT_TARGET=10.12', 'ARCHS=x86_64', '-sdk', 'macosx', '-configuration', 'Release', '-parallelizeTargets', '-jobs', '8', '-target', 'ALL_BUILD', 'build']' returned non-zero exit status 65.
============================================================
Traceback (most recent call last):
File "/Users/andy/Workspace/OpenCV/opencv/platforms/ios/build_framework.py", line 181, in build
self._build(outdir)
File "/Users/andy/Workspace/OpenCV/opencv/platforms/ios/build_framework.py", line 139, in _build
self.buildOne(target[0], target[1], main_build_dir, cmake_flags)
File "/Users/andy/Workspace/OpenCV/opencv/platforms/ios/build_framework.py", line 329, in buildOne
execute(buildcmd + ["-target", "ALL_BUILD", "build"], cwd = builddir + "/modules/objc/framework_build")
File "/Users/andy/Workspace/OpenCV/opencv/platforms/apple/cv_build_utils.py", line 13, in execute
retcode = check_call(cmd, cwd = cwd)
File "/Users/andy/opt/anaconda3/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['xcodebuild', 'MACOSX_DEPLOYMENT_TARGET=10.12', 'ARCHS=x86_64', '-sdk', 'macosx', '-configuration', 'Release', '-parallelizeTargets', '-jobs', '8', '-target', 'ALL_BUILD', 'build']' returned non-zero exit status 65.
============================================================
ERROR: Command '['python3', '/Users/andy/Workspace/OpenCV/opencv/platforms/osx/build_framework.py', './build_xcframework/macos', '--macos_archs', 'x86_64,arm64', '--framework_name', 'opencv2', '--build_only_specified_archs', '--contrib', 'opencv_contrib']' returned non-zero exit status 1.
============================================================
Traceback (most recent call last):
File "opencv/platforms/apple/build_xcframework.py", line 99, in <module>
execute(command, cwd=os.getcwd())
File "/Users/andy/Workspace/OpenCV/opencv/platforms/apple/cv_build_utils.py", line 13, in execute
retcode = check_call(cmd, cwd = cwd)
File "/Users/andy/opt/anaconda3/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['python3', '/Users/andy/Workspace/OpenCV/opencv/platforms/osx/build_framework.py', './build_xcframework/macos', '--macos_archs', 'x86_64,arm64', '--framework_name', 'opencv2', '--build_only_specified_archs', '--contrib', 'opencv_contrib']' returned non-zero exit status 1.
"><pre class="notranslate"><code class="notranslate">** BUILD FAILED **
The following build commands failed:
EmitSwiftModule normal x86_64 (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/objdetect/ObjdetectExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/photo/PhotoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/structured_light/Structured_lightExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/aruco/ArucoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/calib3d/Calib3dExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/ByteVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/CoreExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/imgcodecs/ImgcodecsExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/imgproc/ImgprocExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/ml/MlExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/CvTypeExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/DoubleVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/FloatVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/dnn/DnnExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/face/FaceExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/features2d/Features2dExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/IntVectorExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/MatExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/core/Typealiases.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/text/TextExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/video/VideoExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/videoio/VideoioExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/wechat_qrcode/Wechat_qrcodeExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/xfeatures2d/Xfeatures2dExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwift normal x86_64 /Users/andy/Workspace/OpenCV/build_xcframework/macos/build/build-x86_64-macosx/modules/objc_bindings_generator/osx/gen/objc/ximgproc/XimgprocExt.swift (in target 'opencv2' from project 'opencv2')
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'opencv2' from project 'opencv2')
(27 failures)
============================================================
ERROR: Command '['xcodebuild', 'MACOSX_DEPLOYMENT_TARGET=10.12', 'ARCHS=x86_64', '-sdk', 'macosx', '-configuration', 'Release', '-parallelizeTargets', '-jobs', '8', '-target', 'ALL_BUILD', 'build']' returned non-zero exit status 65.
============================================================
Traceback (most recent call last):
File "/Users/andy/Workspace/OpenCV/opencv/platforms/ios/build_framework.py", line 181, in build
self._build(outdir)
File "/Users/andy/Workspace/OpenCV/opencv/platforms/ios/build_framework.py", line 139, in _build
self.buildOne(target[0], target[1], main_build_dir, cmake_flags)
File "/Users/andy/Workspace/OpenCV/opencv/platforms/ios/build_framework.py", line 329, in buildOne
execute(buildcmd + ["-target", "ALL_BUILD", "build"], cwd = builddir + "/modules/objc/framework_build")
File "/Users/andy/Workspace/OpenCV/opencv/platforms/apple/cv_build_utils.py", line 13, in execute
retcode = check_call(cmd, cwd = cwd)
File "/Users/andy/opt/anaconda3/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['xcodebuild', 'MACOSX_DEPLOYMENT_TARGET=10.12', 'ARCHS=x86_64', '-sdk', 'macosx', '-configuration', 'Release', '-parallelizeTargets', '-jobs', '8', '-target', 'ALL_BUILD', 'build']' returned non-zero exit status 65.
============================================================
ERROR: Command '['python3', '/Users/andy/Workspace/OpenCV/opencv/platforms/osx/build_framework.py', './build_xcframework/macos', '--macos_archs', 'x86_64,arm64', '--framework_name', 'opencv2', '--build_only_specified_archs', '--contrib', 'opencv_contrib']' returned non-zero exit status 1.
============================================================
Traceback (most recent call last):
File "opencv/platforms/apple/build_xcframework.py", line 99, in <module>
execute(command, cwd=os.getcwd())
File "/Users/andy/Workspace/OpenCV/opencv/platforms/apple/cv_build_utils.py", line 13, in execute
retcode = check_call(cmd, cwd = cwd)
File "/Users/andy/opt/anaconda3/lib/python3.8/subprocess.py", line 364, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['python3', '/Users/andy/Workspace/OpenCV/opencv/platforms/osx/build_framework.py', './build_xcframework/macos', '--macos_archs', 'x86_64,arm64', '--framework_name', 'opencv2', '--build_only_specified_archs', '--contrib', 'opencv_contrib']' returned non-zero exit status 1.
</code></pre></div> | 1 |
<h3 dir="auto">Bug summary</h3>
<p dir="auto">I use the <code class="notranslate">rect</code> parameter of the figure's layout engine to set figure margins. For figures with <code class="notranslate">layout='constrained'</code> this parameter appears to be ignored if <code class="notranslate">rcParams['figure.constrained_layout.use']</code> is <code class="notranslate">True</code> when saving the figure.</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
plt.rcParams['figure.constrained_layout.use']=True
fig, ax = plt.subplots()
engine = fig.get_layout_engine()
engine.set(rect=[0.1,0.1,0.8,0.8]) # (left, bottom, width, height)
engine.execute(fig)
fig.savefig('test-constrained-True.png')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">plt</span>.<span class="pl-s1">rcParams</span>[<span class="pl-s">'figure.constrained_layout.use'</span>]<span class="pl-c1">=</span><span class="pl-c1">True</span>
<span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>()
<span class="pl-s1">engine</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">get_layout_engine</span>()
<span class="pl-s1">engine</span>.<span class="pl-en">set</span>(<span class="pl-s1">rect</span><span class="pl-c1">=</span>[<span class="pl-c1">0.1</span>,<span class="pl-c1">0.1</span>,<span class="pl-c1">0.8</span>,<span class="pl-c1">0.8</span>]) <span class="pl-c"># (left, bottom, width, height)</span>
<span class="pl-s1">engine</span>.<span class="pl-en">execute</span>(<span class="pl-s1">fig</span>)
<span class="pl-s1">fig</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'test-constrained-True.png'</span>)</pre></div>
<h3 dir="auto">Actual outcome</h3>
<p dir="auto">The saved figure does not have the expected layout. It does not match the figure displayed interactively. The axes extend to the edges of the figure area.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4016348/200223680-cb1cba6b-ee61-4533-94f4-5b0f46441ca9.png"><img src="https://user-images.githubusercontent.com/4016348/200223680-cb1cba6b-ee61-4533-94f4-5b0f46441ca9.png" alt="test-constrained-True" style="max-width: 100%;"></a></p>
<h3 dir="auto">Expected outcome</h3>
<p dir="auto">The saved figure has matches what is shown interactively. The axes do not extend to the edges of the figure area, respecting the <code class="notranslate">rect</code> parameter. This saved figure is generated with the code, which does not demonstrate the bug:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="plt.rcParams['figure.constrained_layout.use'] = False
fig, ax = plt.subplots(layout='constrained')
engine = fig.get_layout_engine()
engine.set(rect=[0.1,0.1,0.8,0.8]) # (left, bottom, width, height)
engine.execute(fig)
fig.savefig('test-constrained-False.png')"><pre class="notranslate"><span class="pl-s1">plt</span>.<span class="pl-s1">rcParams</span>[<span class="pl-s">'figure.constrained_layout.use'</span>] <span class="pl-c1">=</span> <span class="pl-c1">False</span>
<span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>(<span class="pl-s1">layout</span><span class="pl-c1">=</span><span class="pl-s">'constrained'</span>)
<span class="pl-s1">engine</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">get_layout_engine</span>()
<span class="pl-s1">engine</span>.<span class="pl-en">set</span>(<span class="pl-s1">rect</span><span class="pl-c1">=</span>[<span class="pl-c1">0.1</span>,<span class="pl-c1">0.1</span>,<span class="pl-c1">0.8</span>,<span class="pl-c1">0.8</span>]) <span class="pl-c"># (left, bottom, width, height)</span>
<span class="pl-s1">engine</span>.<span class="pl-en">execute</span>(<span class="pl-s1">fig</span>)
<span class="pl-s1">fig</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'test-constrained-False.png'</span>)</pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4016348/200223804-509d7fec-37a0-41fb-aede-541852706cbf.png"><img src="https://user-images.githubusercontent.com/4016348/200223804-509d7fec-37a0-41fb-aede-541852706cbf.png" alt="test-constrained-False" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional information</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">Windows</p>
<h3 dir="auto">Matplotlib Version</h3>
<p dir="auto">3.6.1</p>
<h3 dir="auto">Matplotlib Backend</h3>
<p dir="auto">Qt5Agg</p>
<h3 dir="auto">Python version</h3>
<p dir="auto">3.10.6</p>
<h3 dir="auto">Jupyter version</h3>
<p dir="auto">n/a</p>
<h3 dir="auto">Installation</h3>
<p dir="auto">conda</p> | <h3 dir="auto">Bug summary</h3>
<p dir="auto">When setting <code class="notranslate">rcParams['figure.constrained_layout.use'] = True</code> and <code class="notranslate">ax.set_aspect('equal')</code>, and saving with <code class="notranslate">bbox_inches = 'tight'</code>, the resulting figure is cropped incorrectly.</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 as mpl
import matplotlib.pyplot as plt
mpl.rcParams['figure.constrained_layout.use'] = True
fig, ax = plt.subplots()
ax.plot([0, 1])
ax.set_xlim(0, 1)
ax.set_aspect('equal')
fig.savefig('test.png', bbox_inches = 'tight')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">as</span> <span class="pl-s1">mpl</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">mpl</span>.<span class="pl-s1">rcParams</span>[<span class="pl-s">'figure.constrained_layout.use'</span>] <span class="pl-c1">=</span> <span class="pl-c1">True</span>
<span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>()
<span class="pl-s1">ax</span>.<span class="pl-en">plot</span>([<span class="pl-c1">0</span>, <span class="pl-c1">1</span>])
<span class="pl-s1">ax</span>.<span class="pl-en">set_xlim</span>(<span class="pl-c1">0</span>, <span class="pl-c1">1</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">set_aspect</span>(<span class="pl-s">'equal'</span>)
<span class="pl-s1">fig</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'test.png'</span>, <span class="pl-s1">bbox_inches</span> <span class="pl-c1">=</span> <span class="pl-s">'tight'</span>)</pre></div>
<h3 dir="auto">Actual outcome</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="MatplotlibDeprecationWarning: The resize_event function was deprecated in Matplotlib 3.6 and will be removed two minor releases later. Use callbacks.process('resize_event', ResizeEvent(...)) instead.
fig, ax = plt.subplots()"><pre class="notranslate"><code class="notranslate">MatplotlibDeprecationWarning: The resize_event function was deprecated in Matplotlib 3.6 and will be removed two minor releases later. Use callbacks.process('resize_event', ResizeEvent(...)) instead.
fig, ax = plt.subplots()
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/64837956/194764228-8b349e42-0ddb-48a8-ba59-a1827cb3f4d3.png"><img src="https://user-images.githubusercontent.com/64837956/194764228-8b349e42-0ddb-48a8-ba59-a1827cb3f4d3.png" alt="test" style="max-width: 100%;"></a></p>
<h3 dir="auto">Expected outcome</h3>
<p dir="auto">If I leave out <code class="notranslate">mpl.rcParams['figure.constrained_layout.use'] = True</code>, but call <code class="notranslate">subplots</code> with <code class="notranslate">layout = 'constrained'</code>, the saved figure is as expected:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/64837956/194764346-8b12b2f5-44f8-4ba5-8440-2fd5d2581cb1.png"><img src="https://user-images.githubusercontent.com/64837956/194764346-8b12b2f5-44f8-4ba5-8440-2fd5d2581cb1.png" alt="test" style="max-width: 100%;"></a></p>
<p dir="auto">(The deprecation warning is probably the same is in <a href="https://github.com/matplotlib/matplotlib/issues/23921" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/23921/hovercard">#23921</a>, and appears in both cases.)</p>
<h3 dir="auto">Additional information</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">macOS Monterey</p>
<h3 dir="auto">Matplotlib Version</h3>
<p dir="auto">3.6.0</p>
<h3 dir="auto">Matplotlib Backend</h3>
<p dir="auto">macOSX</p>
<h3 dir="auto">Python version</h3>
<p dir="auto">3.10.6</p>
<h3 dir="auto">Jupyter version</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Installation</h3>
<p dir="auto">pip</p> | 1 |
<ul dir="auto">
<li>Electron version: 1.4</li>
<li>Operating system: windows</li>
</ul>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">After taking from cookies.get I should be able to use the same output to cookies.set</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Error: Setting cookie failed<br>
at Error (native)</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">When a browser window closes I want to nab it's cookies and store them. I don't want to use your system because the user might want to export the cookies and use them on another machine. I'm developing something to allow people to browse on multiple machines using the same cookies.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
function ChildBrowserClose(e) {
console.log(e.sender);
e
.sender
.webContents
.session
.cookies
.get({}, (error, cookies) => {
e.sender.CustomSession.Cookies = JSON.stringify(cookies);
var Sessions = app
.Session
.get('Sessions')
Sessions
.find({id: e.sender.CustomSession.id})
.assign(e.sender.CustomSession)
.value()
console.log(error, cookies)
});
}"><pre class="notranslate"><code class="notranslate">
function ChildBrowserClose(e) {
console.log(e.sender);
e
.sender
.webContents
.session
.cookies
.get({}, (error, cookies) => {
e.sender.CustomSession.Cookies = JSON.stringify(cookies);
var Sessions = app
.Session
.get('Sessions')
Sessions
.find({id: e.sender.CustomSession.id})
.assign(e.sender.CustomSession)
.value()
console.log(error, cookies)
});
}
</code></pre></div>
<hr>
<p dir="auto">later I try to set with</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" for(var i=0;i<Cookies.length;i++){
NewBrowser
.webContents
.session
.cookies
.set(Cookies[i], (error) => {
console.log(error);
});
}"><pre class="notranslate"><code class="notranslate"> for(var i=0;i<Cookies.length;i++){
NewBrowser
.webContents
.session
.cookies
.set(Cookies[i], (error) => {
console.log(error);
});
}
</code></pre></div>
<p dir="auto">Error: Setting cookie failed<br>
at Error (native)</p> | <p dir="auto">None of the cookies I am saving from my session have a <code class="notranslate">url</code> property. However, when I call <code class="notranslate">win.webContents.session.cookie.set(cookie, cb)</code> I get an error cause the cookie I am trying to set doesn't have a <code class="notranslate">url</code> property. If they cookie didn't have a url on it when I called <code class="notranslate">win.webContents.session.cookies.get()</code>, then electron shouldn't require me to have a <code class="notranslate">url</code> property on the cookie to set it.</p> | 1 |
<p dir="auto">When loading a model (tensorflow, darknet) to a myriad VPU, following happens as I understood:</p>
<ol dir="auto">
<li>OpenCV reads the model and converts it to the IE representation.</li>
<li>The model will be transferred to the VPU.</li>
<li>Ready to accept forward requests.</li>
</ol>
<p dir="auto">Is it possible to release the converted model from the RAM, because it is already loaded into the VPUs RAM? Or did I misunderstand the whole concept? Due to limited RAM on our execution nodes, we would like to reduce the memory overhead required for bigger yolo networks.</p>
<p dir="auto">Kind Regards<br>
Roland</p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.5.1</li>
<li>Operating System / Platform => Windows 64 Bit</li>
<li>Compiler => Visual Studio 2019</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">There are vertical artifacts in image after a gaussian filter of size greater than 14x14 on the borders of an image. The picture is also a little bit more gray. This happens only for 16-bit images. It affects canny edge filter as well (weird edges), since it uses gaussian filter. It started first in version 4.5.1. In the previous version 4.5.0 the artifacts are not there, it may be caused by this commit: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="754161553" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/18983" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv/pull/18983/hovercard" href="https://github.com/opencv/opencv/pull/18983">#18983</a>. In this picture the is a visible artifact only on the left side, but it can create artifacts on the other side as well. Here is image before and after the filter:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9462235/126774537-718222f0-9c18-4f29-854b-d2c08d50d53a.png"><img src="https://user-images.githubusercontent.com/9462235/126774537-718222f0-9c18-4f29-854b-d2c08d50d53a.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9462235/126774562-41b1fd5c-ca6b-4ee0-86c7-1bedb158f5e3.png"><img src="https://user-images.githubusercontent.com/9462235/126774562-41b1fd5c-ca6b-4ee0-86c7-1bedb158f5e3.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Zipped files with examples:<br>
<a href="https://github.com/opencv/opencv/files/6868331/test.zip">test.zip</a></p>
<h5 dir="auto">Steps to reproduce</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="//open image
auto inputFile = "test.tif"
cv::Mat image = cv::imread(inputFile, cv::IMREAD_ANYDEPTH);
EXPECT_EQ(image.depth(), 2);
//perform gauss filter
cv::Mat gaused;
GaussianBlur(image, gaused, Size(15, 15), 1.0);
//save image after gauss
auto outputFile = "testAfterGauss.tif");
cv::imwrite(outputFile, gaused);"><pre class="notranslate"><code class="notranslate">//open image
auto inputFile = "test.tif"
cv::Mat image = cv::imread(inputFile, cv::IMREAD_ANYDEPTH);
EXPECT_EQ(image.depth(), 2);
//perform gauss filter
cv::Mat gaused;
GaussianBlur(image, gaused, Size(15, 15), 1.0);
//save image after gauss
auto outputFile = "testAfterGauss.tif");
cv::imwrite(outputFile, gaused);
</code></pre></div> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Similar to the pipline of a screen GIF recorder I would like to request a screen video recorder. It should let us either record the whole screen or a customizable area. It also should have an option to record the sound or not. Everything else such as customizable FPS / codec, locking to an application window etc. is optional.</p> | <p dir="auto">Windows build number: Version 10.0.18363.836<br>
PowerToys version: 0.18<br>
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run</p>
<p dir="auto">After closing Run using escape button and also after selecting a result, when I reopen Run, the search text and search results are not cleared from last search.</p>
<p dir="auto">Isn't it better if the last search results cleared after Run closes?</p> | 0 |
<p dir="auto">Good progress is made on supporting the case of packages that carry their own typings in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="60991541" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/2338" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/2338/hovercard" href="https://github.com/microsoft/TypeScript/issues/2338">#2338</a>.</p>
<p dir="auto">That proposal doesn't currently deal with modules that do not carry their own typings, a.k.a. all modules that need typings from DefinitelyTyped.</p>
<p dir="auto">This issue is to investigate possibilities of, and propose a (simple) solution for preventing problems when using (multiple versions of) external modules together.</p>
<p dir="auto"><strong>TL;DR</strong></p>
<ol dir="auto">
<li>No longer use <code class="notranslate">declare module "..." { }</code> in typings for external modules</li>
<li>Add an extra step to the resolution logic of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="60991541" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/2338" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/2338/hovercard" href="https://github.com/microsoft/TypeScript/issues/2338">#2338</a> to look up this type of external typings</li>
</ol>
<p dir="auto"><strong>Example scenario</strong></p>
<ul dir="auto">
<li>myprogram
<ul dir="auto">
<li>mylib
<ul dir="auto">
<li>[email protected]</li>
</ul>
</li>
<li>myotherlib
<ul dir="auto">
<li>[email protected]</li>
</ul>
</li>
</ul>
</li>
</ul>
<p dir="auto">Suppose that both <code class="notranslate">mylib</code> and <code class="notranslate">myotherlib</code> export a function, that returns a value of a type defined in <code class="notranslate">myutils</code>.</p>
<p dir="auto"><strong>Existing scenario</strong></p>
<p dir="auto">Likely, both <code class="notranslate">mylib</code> and <code class="notranslate">myotherlib</code> will each have a <code class="notranslate">/// <reference path="./typings/tsd.d.ts" /></code> line, which again has a <code class="notranslate">/// <reference path="./myutils/myutils.d.ts" /></code> line.</p>
<p dir="auto"><strong>Problem</strong></p>
<p dir="auto">Both libs carry their own version of <code class="notranslate">myutils.d.ts</code>, which works fine as long as they are not used together.</p>
<p dir="auto">However, when they <em>are</em> used together (as in this example), all the <code class="notranslate">/// <reference ...></code> lines will (need to) be 'merged', which essentially means the <code class="notranslate">declare module "myutils" { ... }</code> from both <code class="notranslate">mylib</code> and <code class="notranslate">myotherlib</code> will end up in the same 'global module name namespace'.</p>
<p dir="auto">This gives a compiler error, and even if the compiler would somehow allow it, would make it impossible to refer to either version of <code class="notranslate">myutils</code>.</p>
<p dir="auto">Additionally, tools like <a href="https://github.com/SitePen/dts-generator"><code class="notranslate">dts-generator</code></a> e.g. include the <code class="notranslate">/// <reference></code> line inside of the <code class="notranslate">declare</code> blocks, which get ignored by the compiler. This leads to unknown-references when trying to use such a typing, and will typically be solved by adding e.g. a <code class="notranslate">myutils/myutils.d.ts</code> to <code class="notranslate">myprogram/typings/tsd.d.ts</code>, which will be wrong for one of the libs.</p>
<p dir="auto"><strong>Solution</strong></p>
<p dir="auto">External modules have the nice property that there is no 'global namespace' (except the filesystem, maybe), and basically every reference is 'local'.</p>
<p dir="auto">It makes sense to use the same referencing scheme that's used for resolving 'local' external modules (within a package) for 'normal' external modules (different npm packages).</p>
<p dir="auto">Basically, the idea consists of:</p>
<ul dir="auto">
<li>No longer using <code class="notranslate">declare module "..." { }</code> in typings for external modules (to prevent the global namespace clash)</li>
<li>Adding an extra step to the resolution logic of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="60991541" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/2338" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/2338/hovercard" href="https://github.com/microsoft/TypeScript/issues/2338">#2338</a> to look up this type of external typings (e.g. in <code class="notranslate">typings/</code> folder)</li>
</ul>
<p dir="auto"><strong>Advantages</strong></p>
<ul dir="auto">
<li>Multiple versions of a package can co-exist in the same program/library</li>
<li><code class="notranslate">/// <reference></code> lines are no longer needed in most cases (except probably for e.g. importing Mocha's <code class="notranslate">it()</code> and other 'true' globals)</li>
<li>One format to rule them all: external module typings are already generated without <code class="notranslate">declare module "..." { }</code> by <code class="notranslate">tsc</code>, so all 'sorts' of external module typings will look the same</li>
<li>Gradual upgrade path: the <code class="notranslate">tsd.d.ts</code>-way will still work for packages that do still use <code class="notranslate">declare module "..." { }</code> (although it will still have the name-clash problem etc.)</li>
</ul>
<p dir="auto"><strong>Disadvantages</strong></p>
<ul dir="auto">
<li>Typings on e.g. DefinitelyTyped will (gradually) need to be replaced with their non-wrapped version</li>
<li>Extra lookup step in the compiler</li>
<li>Location of these external typings (a.k.a. include path) needs to be configured somewhere and/or sensible default value chosen</li>
</ul>
<p dir="auto"><strong>Example 'new-style' typings</strong></p>
<p dir="auto">Most hand-crafted typings will typically look like:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/// myutils.d.ts
export interface BarType {
bar: number;
}
export declare function something(): BarType;"><pre class="notranslate"><span class="pl-c">/// myutils.d.ts</span>
<span class="pl-k">export</span> <span class="pl-k">interface</span> <span class="pl-smi">BarType</span> <span class="pl-kos">{</span>
<span class="pl-c1">bar</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-s1">something</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">BarType</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">But just to make things more interesting, suppose the typings of <code class="notranslate">myutils</code> look like:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/// dist/bar.d.ts
export interface BarType {
bar: number;
}
/// dist/foo.d.ts
import bar = require("./bar");
export declare function something(): bar.BarType;"><pre class="notranslate"><span class="pl-c">/// dist/bar.d.ts</span>
<span class="pl-k">export</span> <span class="pl-k">interface</span> <span class="pl-smi">BarType</span> <span class="pl-kos">{</span>
<span class="pl-c1">bar</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">/// dist/foo.d.ts</span>
<span class="pl-k">import</span> <span class="pl-s1">bar</span> <span class="pl-c1">=</span> require<span class="pl-kos">(</span><span class="pl-s">"./bar"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-s1">something</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-s1">bar</span><span class="pl-kos">.</span><span class="pl-smi">BarType</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Nothing special here, this is what <code class="notranslate">tsc</code> generates today.<br>
(Note: dist/ may be because someone used CoffeeScript, not TypeScript, right? :))</p>
<p dir="auto">Now, the typings dir on e.g. DefinitelyTyped could look like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="DefinitelyTyped/myutils/latest/dist/bar.d.ts
DefinitelyTyped/myutils/latest/dist/foo.d.ts
DefinitelyTyped/myutils/1.0/dist/bar.d.ts
DefinitelyTyped/myutils/1.0/dist/foo.d.ts"><pre class="notranslate"><code class="notranslate">DefinitelyTyped/myutils/latest/dist/bar.d.ts
DefinitelyTyped/myutils/latest/dist/foo.d.ts
DefinitelyTyped/myutils/1.0/dist/bar.d.ts
DefinitelyTyped/myutils/1.0/dist/foo.d.ts
</code></pre></div>
<p dir="auto">(Or maybe <code class="notranslate">2.0</code> instead of <code class="notranslate">latest</code>, ideas welcome.)</p>
<p dir="auto">And both <code class="notranslate">mylib</code> and <code class="notranslate">myotherlib</code> would have:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="typings/myutils/dist/bar.d.ts
typings/myutils/dist/foo.d.ts"><pre class="notranslate"><code class="notranslate">typings/myutils/dist/bar.d.ts
typings/myutils/dist/foo.d.ts
</code></pre></div>
<p dir="auto"><strong>Looking up .d.ts</strong></p>
<p dir="auto">Given e.g. <code class="notranslate">import { something } from "myutils"</code> the compiler could use <a href="https://github.com/Microsoft/TypeScript/issues/2338#issuecomment-94555288" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/2338/hovercard"><code class="notranslate">myutils/package.json</code>'s <code class="notranslate">main</code> property</a> to get to <code class="notranslate">./dist/foo.js</code>, which in turn would resolve to <code class="notranslate">dist/foo.d.ts</code>.</p>
<p dir="auto">Nice and simple: no need to have support from the authors of <code class="notranslate">myutils</code>, no <code class="notranslate">/// <reference></code> lines.<br>
And it even supports the <code class="notranslate">import bar = require("myutils/dist/bar")</code> case.</p>
<p dir="auto"><strong>Open questions</strong></p>
<ul dir="auto">
<li>Use one typings dir for both 'wrapped' and 'unwrapped' typings?</li>
<li>First do a lookup for external modules already <code class="notranslate">declare</code>'ed, e.g. through tsd.d.ts? If so, would probably make first bullet usable, nice for gradual upgrade path of DT typings.</li>
<li>Most DT typings will not want to mimic exact filesystem structure of package, using e.g. <code class="notranslate">myutils/latest/index.d.ts</code> will probably work out-of-the-box with external module resolution logic, but <code class="notranslate">myutils/latest/myutils.d.ts</code> or even <code class="notranslate">myutils/myutils.d.ts</code> may be easier for filename in editor tab?</li>
</ul>
<p dir="auto">Good idea? Bad idea?</p> | <p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.7.5 / 1.8.0-beta / nightly (1.9.0-dev.20160217)</p>
<p dir="auto"><strong>Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// A self-contained demonstration of the problem follows...
this._register('vscode.diff', (left: URI, right: URI, label: string) => {
return this._commands.executeCommand('_workbench.diff', left, right, label);
}, {
description: 'Opens the provided resources in the diff editor to compare their contents.',
args: [
{ name: 'left', description: 'Uri of the resource for the left hand side of the diff editor', constraint: value => value instanceof URI },
{ name: 'right', description: 'Uri of the resource for the right hand side of the diff editor', constraint: value => value instanceof URI },
{ name: 'label', description: 'Label to use for the diff editor', constraint: value => typeof value === 'string' }
]
});"><pre class="notranslate"><span class="pl-c">// A self-contained demonstration of the problem follows...</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">_register</span><span class="pl-kos">(</span><span class="pl-s">'vscode.diff'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">left</span>: <span class="pl-smi">URI</span><span class="pl-kos">,</span> <span class="pl-s1">right</span>: <span class="pl-smi">URI</span><span class="pl-kos">,</span> <span class="pl-s1">label</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">_commands</span><span class="pl-kos">.</span><span class="pl-en">executeCommand</span><span class="pl-kos">(</span><span class="pl-s">'_workbench.diff'</span><span class="pl-kos">,</span> <span class="pl-s1">left</span><span class="pl-kos">,</span> <span class="pl-s1">right</span><span class="pl-kos">,</span> <span class="pl-s1">label</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">description</span>: <span class="pl-s">'Opens the provided resources in the diff editor to compare their contents.'</span><span class="pl-kos">,</span>
<span class="pl-c1">args</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'left'</span><span class="pl-kos">,</span> <span class="pl-c1">description</span>: <span class="pl-s">'Uri of the resource for the left hand side of the diff editor'</span><span class="pl-kos">,</span> <span class="pl-en">constraint</span>: <span class="pl-s1">value</span> <span class="pl-c1">=></span> <span class="pl-s1">value</span> <span class="pl-k">instanceof</span> <span class="pl-smi">URI</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'right'</span><span class="pl-kos">,</span> <span class="pl-c1">description</span>: <span class="pl-s">'Uri of the resource for the right hand side of the diff editor'</span><span class="pl-kos">,</span> <span class="pl-en">constraint</span>: <span class="pl-s1">value</span> <span class="pl-c1">=></span> <span class="pl-s1">value</span> <span class="pl-k">instanceof</span> <span class="pl-smi">URI</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">name</span>: <span class="pl-s">'label'</span><span class="pl-kos">,</span> <span class="pl-c1">description</span>: <span class="pl-s">'Label to use for the diff editor'</span><span class="pl-kos">,</span> <span class="pl-en">constraint</span>: <span class="pl-s1">value</span> <span class="pl-c1">=></span> <span class="pl-k">typeof</span> <span class="pl-s1">value</span> <span class="pl-c1">===</span> <span class="pl-s">'string'</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>
<ul dir="auto">
<li>goto ts playground</li>
<li>paste the code and invoke format</li>
<li>you get this (note the wrong indent on the last 7 lines):</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="this._register('vscode.diff', (left: URI, right: URI, label: string) => {
return this._commands.executeCommand('_workbench.diff', left, right, label);
}, {
description: 'Opens the provided resources in the diff editor to compare their contents.',
args: [
{ name: 'left', description: 'Uri of the resource for the left hand side of the diff editor', constraint: value => value instanceof URI },
{ name: 'right', description: 'Uri of the resource for the right hand side of the diff editor', constraint: value => value instanceof URI },
{ name: 'label', description: 'Label to use for the diff editor', constraint: value => typeof value === 'string' }
]
});"><pre class="notranslate"><code class="notranslate">this._register('vscode.diff', (left: URI, right: URI, label: string) => {
return this._commands.executeCommand('_workbench.diff', left, right, label);
}, {
description: 'Opens the provided resources in the diff editor to compare their contents.',
args: [
{ name: 'left', description: 'Uri of the resource for the left hand side of the diff editor', constraint: value => value instanceof URI },
{ name: 'right', description: 'Uri of the resource for the right hand side of the diff editor', constraint: value => value instanceof URI },
{ name: 'label', description: 'Label to use for the diff editor', constraint: value => typeof value === 'string' }
]
});
</code></pre></div>
<p dir="auto"><strong>Actual behavior:</strong></p>
<p dir="auto">indent properly</p> | 0 |
<h2 dir="auto">Question</h2>
<p dir="auto">batch insert 10000 record by default just need 2~3 second๏ผbut use sharding-jdbc insert need more than 2 minutesใ<br>
how to optimize it to improve efficiency๏ผ</p>
<p dir="auto">maven version๏ผ<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/15796879/67942417-bce13f00-fc12-11e9-9f23-e0a46f4fa8bb.png"><img src="https://user-images.githubusercontent.com/15796879/67942417-bce13f00-fc12-11e9-9f23-e0a46f4fa8bb.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">test case result๏ผ<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/15796879/67942458-cf5b7880-fc12-11e9-806e-ff061ec17cdb.png"><img src="https://user-images.githubusercontent.com/15796879/67942458-cf5b7880-fc12-11e9-806e-ff061ec17cdb.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">database๏ผMysql 5.7</p> | <h3 dir="auto">Dependence</h3>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" <dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core</artifactId>
<version>5.0.0-alpha</version>
</dependency>"><pre class="notranslate"> <<span class="pl-ent">dependency</span>>
<<span class="pl-ent">groupId</span>>com.oracle.database.jdbc</<span class="pl-ent">groupId</span>>
<<span class="pl-ent">artifactId</span>>ojdbc8</<span class="pl-ent">artifactId</span>>
<<span class="pl-ent">version</span>>12.2.0.1</<span class="pl-ent">version</span>>
</<span class="pl-ent">dependency</span>>
<<span class="pl-ent">dependency</span>>
<<span class="pl-ent">groupId</span>>org.apache.shardingsphere</<span class="pl-ent">groupId</span>>
<<span class="pl-ent">artifactId</span>>shardingsphere-jdbc-core</<span class="pl-ent">artifactId</span>>
<<span class="pl-ent">version</span>>5.0.0-alpha</<span class="pl-ent">version</span>>
</<span class="pl-ent">dependency</span>></pre></div>
<h3 dir="auto">Execute sql</h3>
<div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" SELECT JS_SERV_TYPE_TMP_SEQ.NEXTVAL FROM dual "><pre class="notranslate"> <span class="pl-k">SELECT</span> <span class="pl-c1">JS_SERV_TYPE_TMP_SEQ</span>.<span class="pl-c1">NEXTVAL</span> <span class="pl-k">FROM</span> dual </pre></div>
<h3 dir="auto">Sql description</h3>
<ul dir="auto">
<li>JS_SERV_TYPE_TMP_SEQ is a sequence, not a table</li>
<li>dual is a keyword, not a table</li>
</ul>
<h3 dir="auto">Execute error report</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="11:08:59.524 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Creating a new SqlSession
11:08:59.530 [main] DEBUG org.mybatis.spring.SqlSessionUtils - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@38883a31] was not registered for synchronization because synchronization is not active
11:08:59.548 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
11:08:59.548 [main] DEBUG org.mybatis.spring.transaction.SpringManagedTransaction - JDBC Connection [org.apache.shardingsphere.driver.jdbc.core.connection.ShardingSphereConnection@73893ec1] will not be managed by Spring
11:08:59.588 [main] DEBUG ServTypeTmp.insert!selectKey - ==> Preparing: SELECT JS_SERV_TYPE_TMP_SEQ.NEXTVAL FROM dual
11:08:59.998 [main] DEBUG ServTypeTmp.insert!selectKey - ==> Parameters:
11:09:03.781 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@38883a31]
11:09:03.782 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
Exception in thread "main" org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object. Cause: org.apache.shardingsphere.infra.exception.ShardingSphereException: Can not route tables for `[dual, JS_SERV_TYPE_TMP_SEQ]`, please make sure the tables are in same schema.
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:365)
at com.sun.proxy.$Proxy31.insert(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:237)
at com.xxx.mybatis.dao.base.BaseDaoImpl.create(BaseDaoImpl.java:72)
at com.xxx.mybatis.dao.ServTypeTmpDAOImpl.createServTypeTmpOK(ServTypeTmpDAOImpl.java:20)
at com.xxx.mybatis.ShardingJdbcProgram.main(ShardingJdbcProgram.java:50)
Caused by: org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object. Cause: org.apache.shardingsphere.infra.exception.ShardingSphereException: Can not route tables for `[dual, JS_SERV_TYPE_TMP_SEQ]`, please make sure the tables are in same schema.
at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processGeneratedKeys(SelectKeyGenerator.java:92)
at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processBefore(SelectKeyGenerator.java:47)
at org.apache.ibatis.executor.statement.BaseStatementHandler.generateKeys(BaseStatementHandler.java:140)
at org.apache.ibatis.executor.statement.BaseStatementHandler.<init>(BaseStatementHandler.java:63)
at org.apache.ibatis.executor.statement.PreparedStatementHandler.<init>(PreparedStatementHandler.java:39)
at org.apache.ibatis.executor.statement.RoutingStatementHandler.<init>(RoutingStatementHandler.java:45)
at org.apache.ibatis.session.Configuration.newStatementHandler(Configuration.java:502)
at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:47)
at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:115)
at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:75)
at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:170)
at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:157)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:355)
... 5 more
Caused by: org.apache.shardingsphere.infra.exception.ShardingSphereException: Can not route tables for `[dual, JS_SERV_TYPE_TMP_SEQ]`, please make sure the tables are in same schema.
at org.apache.shardingsphere.sharding.route.engine.type.unconfigured.ShardingUnconfiguredTablesRoutingEngine.route(ShardingUnconfiguredTablesRoutingEngine.java:55)
at org.apache.shardingsphere.sharding.route.engine.ShardingSQLRouter.createRouteContext(ShardingSQLRouter.java:70)
at org.apache.shardingsphere.sharding.route.engine.ShardingSQLRouter.createRouteContext(ShardingSQLRouter.java:55)
at org.apache.shardingsphere.infra.route.engine.impl.PartialSQLRouteExecutor.route(PartialSQLRouteExecutor.java:59)
at org.apache.shardingsphere.infra.route.engine.SQLRouteEngine.route(SQLRouteEngine.java:57)
at org.apache.shardingsphere.infra.context.kernel.KernelProcessor.generateExecutionContext(KernelProcessor.java:52)
at org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement.createExecutionContext(ShardingSpherePreparedStatement.java:266)
at org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement.execute(ShardingSpherePreparedStatement.java:198)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
at com.sun.proxy.$Proxy35.execute(Unknown Source)
at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:62)
at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:78)
at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:303)
at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:154)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:102)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:82)
at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processGeneratedKeys(SelectKeyGenerator.java:68)
... 21 more"><pre class="notranslate"><code class="notranslate">11:08:59.524 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Creating a new SqlSession
11:08:59.530 [main] DEBUG org.mybatis.spring.SqlSessionUtils - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@38883a31] was not registered for synchronization because synchronization is not active
11:08:59.548 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
11:08:59.548 [main] DEBUG org.mybatis.spring.transaction.SpringManagedTransaction - JDBC Connection [org.apache.shardingsphere.driver.jdbc.core.connection.ShardingSphereConnection@73893ec1] will not be managed by Spring
11:08:59.588 [main] DEBUG ServTypeTmp.insert!selectKey - ==> Preparing: SELECT JS_SERV_TYPE_TMP_SEQ.NEXTVAL FROM dual
11:08:59.998 [main] DEBUG ServTypeTmp.insert!selectKey - ==> Parameters:
11:09:03.781 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@38883a31]
11:09:03.782 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Returning JDBC Connection to DataSource
Exception in thread "main" org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object. Cause: org.apache.shardingsphere.infra.exception.ShardingSphereException: Can not route tables for `[dual, JS_SERV_TYPE_TMP_SEQ]`, please make sure the tables are in same schema.
at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:365)
at com.sun.proxy.$Proxy31.insert(Unknown Source)
at org.mybatis.spring.SqlSessionTemplate.insert(SqlSessionTemplate.java:237)
at com.xxx.mybatis.dao.base.BaseDaoImpl.create(BaseDaoImpl.java:72)
at com.xxx.mybatis.dao.ServTypeTmpDAOImpl.createServTypeTmpOK(ServTypeTmpDAOImpl.java:20)
at com.xxx.mybatis.ShardingJdbcProgram.main(ShardingJdbcProgram.java:50)
Caused by: org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object. Cause: org.apache.shardingsphere.infra.exception.ShardingSphereException: Can not route tables for `[dual, JS_SERV_TYPE_TMP_SEQ]`, please make sure the tables are in same schema.
at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processGeneratedKeys(SelectKeyGenerator.java:92)
at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processBefore(SelectKeyGenerator.java:47)
at org.apache.ibatis.executor.statement.BaseStatementHandler.generateKeys(BaseStatementHandler.java:140)
at org.apache.ibatis.executor.statement.BaseStatementHandler.<init>(BaseStatementHandler.java:63)
at org.apache.ibatis.executor.statement.PreparedStatementHandler.<init>(PreparedStatementHandler.java:39)
at org.apache.ibatis.executor.statement.RoutingStatementHandler.<init>(RoutingStatementHandler.java:45)
at org.apache.ibatis.session.Configuration.newStatementHandler(Configuration.java:502)
at org.apache.ibatis.executor.SimpleExecutor.doUpdate(SimpleExecutor.java:47)
at org.apache.ibatis.executor.BaseExecutor.update(BaseExecutor.java:115)
at org.apache.ibatis.executor.CachingExecutor.update(CachingExecutor.java:75)
at org.apache.ibatis.session.defaults.DefaultSqlSession.update(DefaultSqlSession.java:170)
at org.apache.ibatis.session.defaults.DefaultSqlSession.insert(DefaultSqlSession.java:157)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:355)
... 5 more
Caused by: org.apache.shardingsphere.infra.exception.ShardingSphereException: Can not route tables for `[dual, JS_SERV_TYPE_TMP_SEQ]`, please make sure the tables are in same schema.
at org.apache.shardingsphere.sharding.route.engine.type.unconfigured.ShardingUnconfiguredTablesRoutingEngine.route(ShardingUnconfiguredTablesRoutingEngine.java:55)
at org.apache.shardingsphere.sharding.route.engine.ShardingSQLRouter.createRouteContext(ShardingSQLRouter.java:70)
at org.apache.shardingsphere.sharding.route.engine.ShardingSQLRouter.createRouteContext(ShardingSQLRouter.java:55)
at org.apache.shardingsphere.infra.route.engine.impl.PartialSQLRouteExecutor.route(PartialSQLRouteExecutor.java:59)
at org.apache.shardingsphere.infra.route.engine.SQLRouteEngine.route(SQLRouteEngine.java:57)
at org.apache.shardingsphere.infra.context.kernel.KernelProcessor.generateExecutionContext(KernelProcessor.java:52)
at org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement.createExecutionContext(ShardingSpherePreparedStatement.java:266)
at org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement.execute(ShardingSpherePreparedStatement.java:198)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
at com.sun.proxy.$Proxy35.execute(Unknown Source)
at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:62)
at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:78)
at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:62)
at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:303)
at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:154)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:102)
at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:82)
at org.apache.ibatis.executor.keygen.SelectKeyGenerator.processGeneratedKeys(SelectKeyGenerator.java:68)
... 21 more
</code></pre></div> | 0 |
<p dir="auto"></p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/vuejs/vue/blob/7a8de91cd78f523fabe8452652513250871a01c6/src/compiler/codeframe.js#L16">vue/src/compiler/codeframe.js</a>
</p>
<p class="mb-0 color-fg-muted">
Line 16
in
<a data-pjax="true" class="commit-tease-sha" href="/vuejs/vue/commit/7a8de91cd78f523fabe8452652513250871a01c6">7a8de91</a>
</p>
</div>
<div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data">
<table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip="">
<tbody><tr class="border-0">
<td id="L16" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="16"></td>
<td id="LC16" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">let</span> <span class="pl-s1">j</span> <span class="pl-c1">=</span> <span class="pl-s1">i</span> <span class="pl-c1">-</span> <span class="pl-s1">range</span><span class="pl-kos">;</span> <span class="pl-s1">j</span> <span class="pl-c1"><=</span> <span class="pl-s1">i</span> <span class="pl-c1">+</span> <span class="pl-s1">range</span> <span class="pl-c1">||</span> <span class="pl-s1">end</span> <span class="pl-c1">></span> <span class="pl-s1">count</span><span class="pl-kos">;</span> <span class="pl-s1">j</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">ๅฝ<code class="notranslate">count < end</code>ๆถ๏ผๆญคforๅพช็ฏๆ ๆณๅๆญขใ</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/qagby1e4/" rel="nofollow">https://jsfiddle.net/qagby1e4/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Somehow if I use the attribute "open" on a html tag, vue fills the attribute with the value "open". See the attached jfiddle, and inspect the span containing the attribute. If I put the tag outside the vue app, everything is fine. Also, it doesn't matter what the content of the attribute is.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">Vue doesn't mutate the attribute "open" on html tags inside the vue app.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Vue mutates the "open" attribute with the value "open".</p>
<hr>
<p dir="auto">It doesn't seem to be a reserved keyword, although this file <a href="https://github.com/vuejs/vue/blob/dev/src/platforms/web/util/attrs.js">https://github.com/vuejs/vue/blob/dev/src/platforms/web/util/attrs.js</a> does specify it as a boolean attribute. In our case, a mathjax html structure, the open attribute can contain string values.</p> | 0 |
<h2 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>
azure load balancer</h2>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): Kind of both<br>
<strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): current master</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: azure</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): CentOS 7.2</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Linux ma-k8s-0 3.10.0-327.36.3.el7.x86_64 <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35192559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/1/hovercard" href="https://github.com/kubernetes/kubernetes/issues/1">#1</a> SMP Mon Oct 24 16:09:20 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: custom Ansible+kubeadm</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
The Azure cloud provider complains with "loadbalancer is misconfigured with a different backend pool" when I add custom load balancer rules with separate backend pools through the Azure Portal or through Azure Resource Templates. I need to add these custom rules to expose the Kubernetes API endpoints. Adding a dedicated Azure Load Balancer just for the API is not possible, as otherwise I get error messages about Azure Load Balancer limitations (only one LB allowed per Availability Set)</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
I would have expected that the Azure Cloud Provider just ignores existing backend pools.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):<br>
As described in "What happened"</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:<br>
I created a fix for this and am currently testing this. I will create a PR in a few minutes when everything goes well.</p>
<p dir="auto">I created this issue before finishing the PR because I wanted to discuss the reason behind this limitation?</p> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):<br>
No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):</p>
<p dir="auto">---scheduler extender; node array; NodeList</p>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br>
BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): 1.3.7</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>:</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): ubuntu 14.04</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
<li><strong>Install tools</strong>:</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>: Scheduler Extender changes to node array nodes []*api.Node, but ExtenderArgs still use NodeList, which will you use in the future.</p>
<p dir="auto"><strong>What you expected to happen</strong>: Use the same parameter</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>:</p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">Thank you so much for creating SQLAlchemy!</p>
<h3 dir="auto">Summary</h3>
<p dir="auto">We are currently seeing the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sqlalchemy.exc.IntegrityError: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(mysql.connector.errors.IntegrityError) 1062 (23000): Duplicate entry '1-62' for key 'user_id_item_id'
[SQL: INSERT INTO item_user_associations (user_id, item_id, extra_data) VALUES (%(user_id)s, %(item_id)s, %(extra_data)s)]
[parameters: {'user_id': 1, 'item_id': 62, 'extra_data': 'hello world!'}]
(Background on this error at: http://sqlalche.me/e/gkpj)"><pre class="notranslate"><code class="notranslate">sqlalchemy.exc.IntegrityError: (raised as a result of Query-invoked autoflush; consider using a session.no_autoflush block if this flush is occurring prematurely)
(mysql.connector.errors.IntegrityError) 1062 (23000): Duplicate entry '1-62' for key 'user_id_item_id'
[SQL: INSERT INTO item_user_associations (user_id, item_id, extra_data) VALUES (%(user_id)s, %(item_id)s, %(extra_data)s)]
[parameters: {'user_id': 1, 'item_id': 62, 'extra_data': 'hello world!'}]
(Background on this error at: http://sqlalche.me/e/gkpj)
</code></pre></div>
<p dir="auto">We believe the error occurs when users send two POST requests to our API containing similar data in very close succession. However, the issue is reproducible without networking.</p>
<p dir="auto">Here is an example PyCharm project to reproduce the issue:<br>
<a href="https://github.com/sqlalchemy/sqlalchemy/files/4032490/AssociationErrorExample-test.zip">AssociationErrorExample-test.zip</a></p>
<h3 dir="auto">Steps to Repro</h3>
<ol dir="auto">
<li>Get a local copy of MySQL running:
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" docker run --name my_db \
-e MYSQL_DATABASE=my_db \
-e MYSQL_USER=user \
-e MYSQL_PASSWORD=password \
-p 3306:3306 -d mysql/mysql-server:5.7"><pre class="notranslate"><code class="notranslate"> docker run --name my_db \
-e MYSQL_DATABASE=my_db \
-e MYSQL_USER=user \
-e MYSQL_PASSWORD=password \
-p 3306:3306 -d mysql/mysql-server:5.7
</code></pre></div>
</li>
<li>Run the "Compound" run configuration from PyCharm:
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Run > Run 'Compound'"><pre class="notranslate"><code class="notranslate">Run > Run 'Compound'
</code></pre></div>
This executes the "example" run configuration 8 times in parallel.</li>
<li>As an alternative you can execute example.py in multiple terminal windows.</li>
</ol>
<p dir="auto">Expected: No error.</p>
<p dir="auto">Actual: You see an <code class="notranslate">sqlalchemy.exc.IntegrityError</code> error in at least one of the outputs.</p>
<h3 dir="auto">Workaround</h3>
<p dir="auto">We've been doing something like this to overcome this issue:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@contextmanager
def session_scope():
"""
This code is taken from the final example here:
https://docs.sqlalchemy.org/en/13/orm/session_basics.html#when-do-i-construct-a-session-when-do-i-commit-it-and-when-do-i-close-it
"""
session = Session()
try:
yield session
session.commit()
except exc.InternalError:
session.rollback()
session.commit()
except:
session.rollback()
raise
finally:
session.close()"><pre class="notranslate"><code class="notranslate">@contextmanager
def session_scope():
"""
This code is taken from the final example here:
https://docs.sqlalchemy.org/en/13/orm/session_basics.html#when-do-i-construct-a-session-when-do-i-commit-it-and-when-do-i-close-it
"""
session = Session()
try:
yield session
session.commit()
except exc.InternalError:
session.rollback()
session.commit()
except:
session.rollback()
raise
finally:
session.close()
</code></pre></div>
<h3 dir="auto">Questions</h3>
<p dir="auto">Is there a built in SQLAlchemy mechanism or recommended best practice to overcome this issue?</p>
<p dir="auto">Please let me know. Thanks!</p>
<p dir="auto">-Nick</p> | <p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">We have some code with a one-to-many relationship that we want to normally populate in an eager manner. The relationship definition had the attribute lazy="subquery" to achieve this.</p>
<p dir="auto">If a query is then written that attempts to explicitly load the one-to-many collection and its backref eagerly, then you can trigger the warning: SAWarning: Multiple rows returned with uselist=False for eagerly-loaded attribute '...'. Clearly there is redundant complexity here, the query should not need to duplicate the eager loading behaviour specified by the lazy="subquery" attribute. But I don't think that it should cause a problem either: more complex queries that want to join against additional tables need to introduce this complexity.</p>
<p dir="auto">We found the behaviour differs between SQLAlchemy 0.6 and 0.7 (0.7 generates the warning in a greater variety of situations). This has caused problems trying to run some of our code under SQLAlchemy 0.7, while maintaining compatibility with SQLAlchemy 0.6. We have found a solution, but 3/4s of the combinations of query and lazy attribute we tried trigger the warning on one version of SQLAlchemy or the other. This is probably easiest explained by the attached code, but I'll try and explain it here too.</p>
<p dir="auto">With the relationship specifying lazy="subquery" we found that SQLAlchemy 0.6 could correctly run queries that used the 'eagerload' option in the query, while 0.7 would generate the warning. Rewriting the query to use an outerjoin makes the code work without a warning in SQLAlchemy 0.7 but generates the warning in SQLAlchemy 0.6. Switching the relationship from lazy="subquery" to lazy="joined" allowed the outerjoin style query to work in both versions of SQLAlchey, while the eagerload form of the query generates a warning in SQLAlchemy 0.7.</p>
<hr>
<p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/2331/lazy-attribute-issue.py">lazy-attribute-issue.py</a></p> | 0 |
<p dir="auto">Getting an error when trying to use <code class="notranslate">DatagramConn</code> to send to the network's broadcast address.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const msg = new TextEncoder().encode("Hello world\n");
const conn = Deno.listenDatagram({
hostname: "0.0.0.0",
port: 8002,
transport: "udp",
});
await conn.send(msg, {
hostname: "192.168.1.255",
port: 8001,
transport: "udp",
});"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">TextEncoder</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">encode</span><span class="pl-kos">(</span><span class="pl-s">"Hello world\n"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">conn</span> <span class="pl-c1">=</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">listenDatagram</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">hostname</span>: <span class="pl-s">"0.0.0.0"</span><span class="pl-kos">,</span>
<span class="pl-c1">port</span>: <span class="pl-c1">8002</span><span class="pl-kos">,</span>
<span class="pl-c1">transport</span>: <span class="pl-s">"udp"</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">await</span> <span class="pl-s1">conn</span><span class="pl-kos">.</span><span class="pl-en">send</span><span class="pl-kos">(</span><span class="pl-s1">msg</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">hostname</span>: <span class="pl-s">"192.168.1.255"</span><span class="pl-kos">,</span>
<span class="pl-c1">port</span>: <span class="pl-c1">8001</span><span class="pl-kos">,</span>
<span class="pl-c1">transport</span>: <span class="pl-s">"udp"</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">Running the above with:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="deno run --allow-net --unstable test.ts"><pre class="notranslate">deno run --allow-net --unstable test.ts</pre></div>
<p dir="auto">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Uncaught (in promise) PermissionDenied: Permission denied (os error 13)
await conn.send(msg, {
^
at unwrapOpResult (deno:core/core.js:102:13)
at async file:///home/pi/test.ts:9:1"><pre class="notranslate"><code class="notranslate">error: Uncaught (in promise) PermissionDenied: Permission denied (os error 13)
await conn.send(msg, {
^
at unwrapOpResult (deno:core/core.js:102:13)
at async file:///home/pi/test.ts:9:1
</code></pre></div> | <p dir="auto">When using <code class="notranslate">Deno.memoryUsage()</code> without the <code class="notranslate">--unstable</code> flag, Deno causes the following error:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="error: TS2339 [ERROR]: Property 'memoryUsage' does not exist on type 'typeof Deno'.
console.log(Deno.memoryUsage());
~~~~~~~~~~~"><pre class="notranslate">error: TS2339 [ERROR]: Property <span class="pl-s"><span class="pl-pds">'</span>memoryUsage<span class="pl-pds">'</span></span> does not exist on <span class="pl-c1">type</span> <span class="pl-s"><span class="pl-pds">'</span>typeof Deno<span class="pl-pds">'</span></span>.
<span class="pl-en">console.log(Deno.memoryUsage</span>());
<span class="pl-k">~</span>~~~~~~~~~~</pre></div>
<p dir="auto">On the other hand, other unstable APIs (e.g. <code class="notranslate">Deno.resolveDns()</code>) cause the following error:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="error: TS2339 [ERROR]: Property 'resolveDns' does not exist on type 'typeof Deno'. 'Deno.resolveDns' is an unstable API. Did you forget to run with the '--unstable' flag?
console.log(Deno.resolveDns());"><pre class="notranslate">error: TS2339 [ERROR]: Property <span class="pl-s"><span class="pl-pds">'</span>resolveDns<span class="pl-pds">'</span></span> does not exist on <span class="pl-c1">type</span> <span class="pl-s"><span class="pl-pds">'</span>typeof Deno<span class="pl-pds">'</span></span>. <span class="pl-s"><span class="pl-pds">'</span>Deno.resolveDns<span class="pl-pds">'</span></span> is an unstable API. Did you forget to run with the <span class="pl-s"><span class="pl-pds">'</span>--unstable<span class="pl-pds">'</span></span> flag<span class="pl-k">?</span>
<span class="pl-en">console.log(Deno.resolveDns</span>());</pre></div>
<p dir="auto">It seems that <code class="notranslate">"memoryUsage"</code> is not listed in <a href="https://github.com/denoland/deno/blob/v1.9.2/cli/diagnostics.rs#L15">UNSTABLE_DENO_PROPS</a> ๐</p> | 0 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.33.0] (Java)</li>
<li>Operating System: [macOS 13.4.1]</li>
<li>Browser: [Firefox]</li>
<li>Other info: M1 architecture</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I provided exact source code that allows reproducing the issue locally.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> detailed logs attached</li>
</ul>
<p dir="auto">In Firefox only (not Chromium, Webkit), a click action fails with a timeout because something in the browser seems to crash.<br>
The click leads to a navigation, with a redirect. That succeeds, I can see that in headed mode. But Playwright apparently does not get a success message back from the browser, and times out.</p>
<p dir="auto">During a test, I use the button (a logout button) multiple times, and it does not fail on the first time, but on some subsequent one; but reproducibly on always the same! This maybe suggests that it's not a race, but some other underlying problem.</p>
<p dir="auto">The clicking code:</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="accountMenu.locator("button[role='menuitem']:has-text('power_settings_new')").click(
new Locator.ClickOptions().setNoWaitAfter(true)
);"><pre class="notranslate"><span class="pl-s1">accountMenu</span>.<span class="pl-en">locator</span>(<span class="pl-s">"button[role='menuitem']:has-text('power_settings_new')"</span>).<span class="pl-en">click</span>(
<span class="pl-k">new</span> <span class="pl-smi">Locator</span>.<span class="pl-smi">ClickOptions</span>().<span class="pl-en">setNoWaitAfter</span>(<span class="pl-c1">true</span>)
);</pre></div>
<p dir="auto">where <code class="notranslate">accountMenu</code> is another <code class="notranslate">Locator</code>.</p>
<p dir="auto">I am always in headed mode (cannot use headless because I use WebGL, which doesn't work in headless Firefox).</p>
<p dir="auto">Logs starting from the click, the timeout is 15s, which you can see that the click is reported as failed after that time, although I can see that the navigation worked.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2023-06-27T14:48:49.644Z pw:api => Frame.click started
2023-06-27T14:48:49.648Z pw:api waiting for locator(".mat-menu-panel").locator("button[role='menuitem']:has-text('power_settings_new')")
2023-06-27T14:48:49.650Z pw:api locator resolved to <button tabindex="0" role="menuitem" mat-menu-item="" arโฆ>โฆ</button>
2023-06-27T14:48:49.651Z pw:api attempting click action
2023-06-27T14:48:49.651Z pw:api waiting for element to be visible, enabled and stable
2023-06-27T14:48:49.672Z pw:api element is not stable - waiting...
2023-06-27T14:48:49.791Z pw:api element is visible, enabled and stable
2023-06-27T14:48:49.791Z pw:api scrolling into view if needed
2023-06-27T14:48:49.791Z pw:api done scrolling
2023-06-27T14:48:49.795Z pw:api performing click action
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.851Z pw:api "commit" event fired
2023-06-27T14:48:49.851Z pw:api navigated to "http://localhost:4200/#"
2023-06-27T14:48:49.953Z pw:api "domcontentloaded" event fired
2023-06-27T14:48:49.954Z pw:api "load" event fired
2023-06-27T14:48:50.002Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.010Z pw:api "commit" event fired
2023-06-27T14:48:50.010Z pw:api navigated to "http://localhost:4200/dev-login#state=eyJpZCI6ImQ4Zjc5YzU0LWJhM2MtNGY1NS04MGY1LTJiYTMyMzNjMGMxNSIsIm1ldGEiOnsiaW50ZXJhY3Rpb25UeXBlIjoicmVkaXJlY3QifX0="
2023-06-27T14:48:50.137Z pw:api "domcontentloaded" event fired
2023-06-27T14:48:50.137Z pw:api "load" event fired
2023-06-27T14:48:50.159Z pw:api navigated to "http://localhost:4200/dev-login#state=eyJpZCI6ImQ4Zjc5YzU0LWJhM2MtNGY1NS04MGY1LTJiYTMyMzNjMGMxNSIsIm1ldGEiOnsiaW50ZXJhY3Rpb25UeXBlIjoicmVkaXJlY3QifX0="
2023-06-27T14:48:50.653Z pw:api "networkidle" event fired
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out]
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] ERROR: error in channel "content::9/19/19": exception while running method "disposeObject" in namespace "page": Failed to find execution context with id = id-1322 findExecutionContext@chrome://juggler/content/content/Runtime.js:289:13
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] disposeObject@chrome://juggler/content/content/Runtime.js:120:35
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessageInternal@chrome://juggler/content/SimpleChannel.js:222:37
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessage@chrome://juggler/content/SimpleChannel.js:191:12
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] bindToActor/actor.receiveMessage@chrome://juggler/content/SimpleChannel.js:54:44
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessageInternal@chrome://juggler/content/SimpleChannel.js:206:24
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessage@chrome://juggler/content/SimpleChannel.js:191:12
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] bindToActor/actor.receiveMessage@chrome://juggler/content/SimpleChannel.js:54:44
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out]
2023-06-27T14:49:04.675Z pw:api <= Frame.click failed"><pre class="notranslate"><code class="notranslate">2023-06-27T14:48:49.644Z pw:api => Frame.click started
2023-06-27T14:48:49.648Z pw:api waiting for locator(".mat-menu-panel").locator("button[role='menuitem']:has-text('power_settings_new')")
2023-06-27T14:48:49.650Z pw:api locator resolved to <button tabindex="0" role="menuitem" mat-menu-item="" arโฆ>โฆ</button>
2023-06-27T14:48:49.651Z pw:api attempting click action
2023-06-27T14:48:49.651Z pw:api waiting for element to be visible, enabled and stable
2023-06-27T14:48:49.672Z pw:api element is not stable - waiting...
2023-06-27T14:48:49.791Z pw:api element is visible, enabled and stable
2023-06-27T14:48:49.791Z pw:api scrolling into view if needed
2023-06-27T14:48:49.791Z pw:api done scrolling
2023-06-27T14:48:49.795Z pw:api performing click action
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.843Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.846Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:49.851Z pw:api "commit" event fired
2023-06-27T14:48:49.851Z pw:api navigated to "http://localhost:4200/#"
2023-06-27T14:48:49.953Z pw:api "domcontentloaded" event fired
2023-06-27T14:48:49.954Z pw:api "load" event fired
2023-06-27T14:48:50.002Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.003Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.006Z pw:browser [pid=5685][err] JavaScript error: chrome://juggler/content/content/FrameTree.js, line 565: TypeError: this.domWindow() is undefined
2023-06-27T14:48:50.010Z pw:api "commit" event fired
2023-06-27T14:48:50.010Z pw:api navigated to "http://localhost:4200/dev-login#state=eyJpZCI6ImQ4Zjc5YzU0LWJhM2MtNGY1NS04MGY1LTJiYTMyMzNjMGMxNSIsIm1ldGEiOnsiaW50ZXJhY3Rpb25UeXBlIjoicmVkaXJlY3QifX0="
2023-06-27T14:48:50.137Z pw:api "domcontentloaded" event fired
2023-06-27T14:48:50.137Z pw:api "load" event fired
2023-06-27T14:48:50.159Z pw:api navigated to "http://localhost:4200/dev-login#state=eyJpZCI6ImQ4Zjc5YzU0LWJhM2MtNGY1NS04MGY1LTJiYTMyMzNjMGMxNSIsIm1ldGEiOnsiaW50ZXJhY3Rpb25UeXBlIjoicmVkaXJlY3QifX0="
2023-06-27T14:48:50.653Z pw:api "networkidle" event fired
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out]
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] ERROR: error in channel "content::9/19/19": exception while running method "disposeObject" in namespace "page": Failed to find execution context with id = id-1322 findExecutionContext@chrome://juggler/content/content/Runtime.js:289:13
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] disposeObject@chrome://juggler/content/content/Runtime.js:120:35
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessageInternal@chrome://juggler/content/SimpleChannel.js:222:37
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessage@chrome://juggler/content/SimpleChannel.js:191:12
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] bindToActor/actor.receiveMessage@chrome://juggler/content/SimpleChannel.js:54:44
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessageInternal@chrome://juggler/content/SimpleChannel.js:206:24
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] _onMessage@chrome://juggler/content/SimpleChannel.js:191:12
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out] bindToActor/actor.receiveMessage@chrome://juggler/content/SimpleChannel.js:54:44
2023-06-27T14:49:04.658Z pw:browser [pid=5685][out]
2023-06-27T14:49:04.675Z pw:api <= Frame.click failed
</code></pre></div>
<p dir="auto">I added <code class="notranslate">noWaitAfter: true</code> to the click, but it didn't help (the logs are from the run with noWaitAfter=true).<br>
Using a <code class="notranslate">slowMo</code> of 0 or 100 triggers the problem at exactly the same click (the 3rd time within one test). Using a value of 500 triggers it at a later time (I use the button to log out many times during a test).</p>
<p dir="auto">I cannot share the source of the page/server, it is an internal project.</p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [1.24.0]</li>
<li>Operating System: [Windows 10 Pro]</li>
<li>Browser: [Chromium]</li>
<li>Playwright/test Version:[1.33.0]</li>
</ul>
<p dir="auto"><strong>Bug Description</strong><br>
In the test I wrote, the browser stays open for about 2 minutes after the test is completed. There is no such problem in the other tests I wrote. While working on my teammates' computers, the test closes normally. Only on my computer and after only 1 test is completed, browser closes late. What could be the reason for this? Thanks you for your help.</p>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">browser closing after test is complete</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">Test ends, browser closes after 2 minutes.</p> | 0 |
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [2]: df = pd.DataFrame([[1, 2]], columns=pd.MultiIndex.from_product([['A'], ['a', 'b']]))
In [3]: reind = df.set_index([('A', 'a')])
In [4]: reind.reset_index()
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in hash_array(vals, encoding, hash_key, categorize)
265 try:
--> 266 vals = _hash.hash_object_array(vals, hash_key, encoding)
267 except TypeError:
as/pandas/util/hashing.pyx in pandas.util.libhashing.hash_object_array (pandas/util/hashing.c:2372)()
TypeError: ('A', 'a') of type <class 'tuple'> is not a valid type for hashing, must be string or null
During handling of the above exception, another exception occurred:
ValueError Traceback (most recent call last)
<ipython-input-4-985862d3b27d> in <module>()
----> 1 reind.reset_index()
/home/pietro/nobackup/repo/pandas/pandas/core/frame.py in reset_index(self, level, drop, inplace, col_level, col_fill)
3057 name = tuple(name_lst)
3058 values = _maybe_casted_values(self.index)
-> 3059 new_obj.insert(0, name, values)
3060
3061 new_obj.index = new_index
/home/pietro/nobackup/repo/pandas/pandas/core/frame.py in insert(self, loc, column, value, allow_duplicates)
2518 value = self._sanitize_column(column, value, broadcast=False)
2519 self._data.insert(loc, column, value,
-> 2520 allow_duplicates=allow_duplicates)
2521
2522 def assign(self, **kwargs):
/home/pietro/nobackup/repo/pandas/pandas/core/internals.py in insert(self, loc, item, value, allow_duplicates)
3806
3807 """
-> 3808 if not allow_duplicates and item in self.items:
3809 # Should this be a different kind of error??
3810 raise ValueError('cannot insert {}, already exists'.format(item))
/home/pietro/nobackup/repo/pandas/pandas/core/indexes/multi.py in __contains__(self, key)
1326 hash(key)
1327 try:
-> 1328 self.get_loc(key)
1329 return True
1330 except LookupError:
/home/pietro/nobackup/repo/pandas/pandas/core/indexes/multi.py in get_loc(self, key, method)
1984 key = _values_from_object(key)
1985 key = tuple(map(_maybe_str_to_time_stamp, key, self.levels))
-> 1986 return self._engine.get_loc(key)
1987
1988 # -- partial selection or non-unique index
/home/pietro/nobackup/repo/pandas/pandas/_libs/index.pyx in pandas._libs.index.MultiIndexEngine.get_loc (pandas/_libs/index.c:13171)()
/home/pietro/nobackup/repo/pandas/pandas/_libs/index.pyx in pandas._libs.index.MultiIndexEngine.get_loc (pandas/_libs/index.c:13018)()
/home/pietro/nobackup/repo/pandas/pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.MultiIndexHashTable.get_item (pandas/_libs/hashtable.c:23625)()
/home/pietro/nobackup/repo/pandas/pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.MultiIndexHashTable.get_item (pandas/_libs/hashtable.c:23374)()
/home/pietro/nobackup/repo/pandas/pandas/core/indexes/multi.py in _hashed_indexing_key(self, key)
755 key = tuple([f(k, stringify)
756 for k, stringify in zip(key, self._have_mixed_levels)])
--> 757 return hash_tuples(key)
758
759 @Appender(base._shared_docs['duplicated'] % _index_doc_kwargs)
/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in hash_tuples(vals, encoding, hash_key)
159 hash_key=hash_key)
160 for cat in vals)
--> 161 h = _combine_hash_arrays(hashes, len(vals))
162 if is_tuple:
163 h = h[0]
/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in _combine_hash_arrays(arrays, num_items)
31 """
32 try:
---> 33 first = next(arrays)
34 except StopIteration:
35 return np.array([], dtype=np.uint64)
/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in <genexpr>(.0)
158 encoding=encoding,
159 hash_key=hash_key)
--> 160 for cat in vals)
161 h = _combine_hash_arrays(hashes, len(vals))
162 if is_tuple:
/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in _hash_categorical(c, encoding, hash_key)
182 """
183 hashed = hash_array(c.categories.values, encoding, hash_key,
--> 184 categorize=False)
185
186 # we have uint64, as we don't directly support missing values
/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in hash_array(vals, encoding, hash_key, categorize)
267 except TypeError:
268 # we have mixed types
--> 269 vals = _hash.hash_object_array(vals.astype(str).astype(object),
270 hash_key, encoding)
271
ValueError: setting an array element with a sequence"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">2</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-c1">1</span>, <span class="pl-c1">2</span>]], <span class="pl-s1">columns</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-s">'A'</span>], [<span class="pl-s">'a'</span>, <span class="pl-s">'b'</span>]]))
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">reind</span> <span class="pl-c1">=</span> <span class="pl-s1">df</span>.<span class="pl-en">set_index</span>([(<span class="pl-s">'A'</span>, <span class="pl-s">'a'</span>)])
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-s1">reind</span>.<span class="pl-en">reset_index</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">TypeError</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">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">util</span><span class="pl-c1">/</span><span class="pl-s1">hashing</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">hash_array</span>(<span class="pl-s1">vals</span>, <span class="pl-s1">encoding</span>, <span class="pl-s1">hash_key</span>, <span class="pl-s1">categorize</span>)
<span class="pl-c1">265</span> <span class="pl-k">try</span>:
<span class="pl-c1">-</span><span class="pl-c1">-></span> <span class="pl-c1">266</span> <span class="pl-s1">vals</span> <span class="pl-c1">=</span> <span class="pl-s1">_hash</span>.<span class="pl-en">hash_object_array</span>(<span class="pl-s1">vals</span>, <span class="pl-s1">hash_key</span>, <span class="pl-s1">encoding</span>)
<span class="pl-c1">267</span> <span class="pl-k">except</span> <span class="pl-v">TypeError</span>:
<span class="pl-s1">as</span><span class="pl-c1">/</span><span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">util</span><span class="pl-c1">/</span><span class="pl-s1">hashing</span>.<span class="pl-s1">pyx</span> <span class="pl-c1">in</span> <span class="pl-s1">pandas</span>.<span class="pl-s1">util</span>.<span class="pl-s1">libhashing</span>.<span class="pl-en">hash_object_array</span> (<span class="pl-s1">pandas</span><span class="pl-c1">/</span><span class="pl-s1">util</span><span class="pl-c1">/</span><span class="pl-s1">hashing</span>.<span class="pl-s1">c</span>:<span class="pl-c1">2372</span>)()
<span class="pl-v">TypeError</span>: (<span class="pl-s">'A'</span>, <span class="pl-s">'a'</span>) <span class="pl-s1">of</span> <span class="pl-s1">type</span> <span class="pl-c1"><</span><span class="pl-s1">class</span> <span class="pl-s">'tuple'</span><span class="pl-c1">></span> <span class="pl-s1">is</span> <span class="pl-c1">not</span> <span class="pl-s1">a</span> <span class="pl-s1">valid</span> <span class="pl-s1">type</span> <span class="pl-k">for</span> <span class="pl-s1">hashing</span>, <span class="pl-s1">must</span> <span class="pl-s1">be</span> <span class="pl-s1">string</span> <span class="pl-c1">or</span> <span class="pl-s1">null</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">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-s1">ipython</span><span class="pl-c1">-</span><span class="pl-s1">input</span><span class="pl-c1">-</span><span class="pl-c1">4</span><span class="pl-c1">-</span><span class="pl-c1">985862</span><span class="pl-s1">d3b27d</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">reind</span>.<span class="pl-en">reset_index</span>()
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">frame</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">reset_index</span>(<span class="pl-s1">self</span>, <span class="pl-s1">level</span>, <span class="pl-s1">drop</span>, <span class="pl-s1">inplace</span>, <span class="pl-s1">col_level</span>, <span class="pl-s1">col_fill</span>)
<span class="pl-c1">3057</span> <span class="pl-s1">name</span> <span class="pl-c1">=</span> <span class="pl-en">tuple</span>(<span class="pl-s1">name_lst</span>)
<span class="pl-c1">3058</span> <span class="pl-s1">values</span> <span class="pl-c1">=</span> <span class="pl-en">_maybe_casted_values</span>(<span class="pl-s1">self</span>.<span class="pl-s1">index</span>)
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">3059</span> <span class="pl-s1">new_obj</span>.<span class="pl-en">insert</span>(<span class="pl-c1">0</span>, <span class="pl-s1">name</span>, <span class="pl-s1">values</span>)
<span class="pl-c1">3060</span>
<span class="pl-c1">3061</span> <span class="pl-s1">new_obj</span>.<span class="pl-s1">index</span> <span class="pl-c1">=</span> <span class="pl-s1">new_index</span>
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">frame</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">insert</span>(<span class="pl-s1">self</span>, <span class="pl-s1">loc</span>, <span class="pl-s1">column</span>, <span class="pl-s1">value</span>, <span class="pl-s1">allow_duplicates</span>)
<span class="pl-c1">2518</span> <span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">_sanitize_column</span>(<span class="pl-s1">column</span>, <span class="pl-s1">value</span>, <span class="pl-s1">broadcast</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-c1">2519</span> <span class="pl-s1">self</span>.<span class="pl-s1">_data</span>.<span class="pl-en">insert</span>(<span class="pl-s1">loc</span>, <span class="pl-s1">column</span>, <span class="pl-s1">value</span>,
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">2520</span> <span class="pl-s1">allow_duplicates</span><span class="pl-c1">=</span><span class="pl-s1">allow_duplicates</span>)
<span class="pl-c1">2521</span>
<span class="pl-c1">2522</span> <span class="pl-k">def</span> <span class="pl-en">assign</span>(<span class="pl-s1">self</span>, <span class="pl-c1">**</span><span class="pl-s1">kwargs</span>):
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">internals</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">insert</span>(<span class="pl-s1">self</span>, <span class="pl-s1">loc</span>, <span class="pl-s1">item</span>, <span class="pl-s1">value</span>, <span class="pl-s1">allow_duplicates</span>)
<span class="pl-c1">3806</span>
<span class="pl-c1">3807</span> <span class="pl-s">"""</span>
<span class="pl-s">-> 3808 if not allow_duplicates and item in self.items:</span>
<span class="pl-s"> 3809 # Should this be a different kind of error??</span>
<span class="pl-s"> 3810 raise ValueError('cannot insert {}, already exists'.format(item))</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/core/indexes/multi.py in __contains__(self, key)</span>
<span class="pl-s"> 1326 hash(key)</span>
<span class="pl-s"> 1327 try:</span>
<span class="pl-s">-> 1328 self.get_loc(key)</span>
<span class="pl-s"> 1329 return True</span>
<span class="pl-s"> 1330 except LookupError:</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/core/indexes/multi.py in get_loc(self, key, method)</span>
<span class="pl-s"> 1984 key = _values_from_object(key)</span>
<span class="pl-s"> 1985 key = tuple(map(_maybe_str_to_time_stamp, key, self.levels))</span>
<span class="pl-s">-> 1986 return self._engine.get_loc(key)</span>
<span class="pl-s"> 1987 </span>
<span class="pl-s"> 1988 # -- partial selection or non-unique index</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/_libs/index.pyx in pandas._libs.index.MultiIndexEngine.get_loc (pandas/_libs/index.c:13171)()</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/_libs/index.pyx in pandas._libs.index.MultiIndexEngine.get_loc (pandas/_libs/index.c:13018)()</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.MultiIndexHashTable.get_item (pandas/_libs/hashtable.c:23625)()</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.MultiIndexHashTable.get_item (pandas/_libs/hashtable.c:23374)()</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/core/indexes/multi.py in _hashed_indexing_key(self, key)</span>
<span class="pl-s"> 755 key = tuple([f(k, stringify)</span>
<span class="pl-s"> 756 for k, stringify in zip(key, self._have_mixed_levels)])</span>
<span class="pl-s">--> 757 return hash_tuples(key)</span>
<span class="pl-s"> 758 </span>
<span class="pl-s"> 759 @Appender(base._shared_docs['duplicated'] % _index_doc_kwargs)</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in hash_tuples(vals, encoding, hash_key)</span>
<span class="pl-s"> 159 hash_key=hash_key)</span>
<span class="pl-s"> 160 for cat in vals)</span>
<span class="pl-s">--> 161 h = _combine_hash_arrays(hashes, len(vals))</span>
<span class="pl-s"> 162 if is_tuple:</span>
<span class="pl-s"> 163 h = h[0]</span>
<span class="pl-s"></span>
<span class="pl-s">/home/pietro/nobackup/repo/pandas/pandas/util/hashing.py in _combine_hash_arrays(arrays, num_items)</span>
<span class="pl-s"> 31 """</span>
<span class="pl-c1">32</span> <span class="pl-k">try</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">33</span> <span class="pl-s1">first</span> <span class="pl-c1">=</span> <span class="pl-en">next</span>(<span class="pl-s1">arrays</span>)
<span class="pl-c1">34</span> <span class="pl-k">except</span> <span class="pl-v">StopIteration</span>:
<span class="pl-c1">35</span> <span class="pl-k">return</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">uint64</span>)
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">util</span><span class="pl-c1">/</span><span class="pl-s1">hashing</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">158</span> <span class="pl-s1">encoding</span><span class="pl-c1">=</span><span class="pl-s1">encoding</span>,
<span class="pl-c1">159</span> <span class="pl-s1">hash_key</span><span class="pl-c1">=</span><span class="pl-s1">hash_key</span>)
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">160</span> <span class="pl-s1">for</span> <span class="pl-s1">cat</span> <span class="pl-c1">in</span> <span class="pl-s1">vals</span>)
<span class="pl-c1">161</span> <span class="pl-s1">h</span> <span class="pl-c1">=</span> <span class="pl-en">_combine_hash_arrays</span>(<span class="pl-s1">hashes</span>, <span class="pl-en">len</span>(<span class="pl-s1">vals</span>))
<span class="pl-c1">162</span> <span class="pl-k">if</span> <span class="pl-s1">is_tuple</span>:
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">util</span><span class="pl-c1">/</span><span class="pl-s1">hashing</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_hash_categorical</span>(<span class="pl-s1">c</span>, <span class="pl-s1">encoding</span>, <span class="pl-s1">hash_key</span>)
<span class="pl-c1">182</span> """
<span class="pl-c1">183</span> <span class="pl-s1">hashed</span> <span class="pl-c1">=</span> <span class="pl-en">hash_array</span>(<span class="pl-s1">c</span>.<span class="pl-s1">categories</span>.<span class="pl-s1">values</span>, <span class="pl-s1">encoding</span>, <span class="pl-s1">hash_key</span>,
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">184</span> <span class="pl-s1">categorize</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-c1">185</span>
<span class="pl-c1">186</span> <span class="pl-c"># we have uint64, as we don't directly support missing values</span>
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">util</span><span class="pl-c1">/</span><span class="pl-s1">hashing</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">hash_array</span>(<span class="pl-s1">vals</span>, <span class="pl-s1">encoding</span>, <span class="pl-s1">hash_key</span>, <span class="pl-s1">categorize</span>)
<span class="pl-c1">267</span> <span class="pl-k">except</span> <span class="pl-v">TypeError</span>:
<span class="pl-c1">268</span> <span class="pl-c"># we have mixed types</span>
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">269</span> <span class="pl-s1">vals</span> <span class="pl-c1">=</span> <span class="pl-s1">_hash</span>.<span class="pl-en">hash_object_array</span>(<span class="pl-s1">vals</span>.<span class="pl-en">astype</span>(<span class="pl-s1">str</span>).<span class="pl-en">astype</span>(<span class="pl-s1">object</span>),
<span class="pl-c1">270</span> <span class="pl-s1">hash_key</span>, <span class="pl-s1">encoding</span>)
<span class="pl-c1">271</span>
<span class="pl-v">ValueError</span>: <span class="pl-s1">setting</span> <span class="pl-s1">an</span> <span class="pl-s1">array</span> <span class="pl-s1">element</span> <span class="pl-k">with</span> <span class="pl-s1">a</span> <span class="pl-s1">sequence</span></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">In general, one expects <code class="notranslate">df.set_index([df.columns[0]]).reset_index()</code> to return (a copy of) <code class="notranslate">df</code>. Instead, this does not happen if <code class="notranslate">df.columns</code> is a <code class="notranslate">MultiIndex</code>.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jreback/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jreback">@jreback</a> I know you were <a href="https://github.com/pandas-dev/pandas/issues/16120#issuecomment-296844552" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/16120/hovercard">not really convinced</a> this should work, but I'm uploading a PR in a couple of minutes, and as you will see the fix is extremely simple.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto"><code class="notranslate">df</code></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.7.0-1-amd64<br>
machine: x86_64<br>
processor:<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: it_IT.utf8<br>
LOCALE: it_IT.UTF-8</p>
<p dir="auto">pandas: 0.20.0rc1+29.g075eca1fa<br>
pytest: 3.0.6<br>
pip: 9.0.1<br>
setuptools: 33.1.1<br>
Cython: 0.25.2<br>
numpy: 1.12.0<br>
scipy: 0.18.1<br>
xarray: 0.9.1<br>
IPython: 5.1.0.dev<br>
sphinx: 1.4.9<br>
patsy: 0.3.0-dev<br>
dateutil: 2.5.3<br>
pytz: 2016.7<br>
blosc: None<br>
bottleneck: 1.2.0<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.1.2<br>
xlsxwriter: 0.9.6<br>
lxml: 3.7.1<br>
bs4: 4.5.3<br>
html5lib: 0.999999999<br>
sqlalchemy: 1.0.15<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.8<br>
s3fs: None<br>
pandas_gbq: None<br>
pandas_datareader: 0.2.1</p>
</details> | <p dir="auto">Dataframe.duplicated() and .drop_duplicates() are flagging rows as duplicates when they are in fact distinct.</p>
<p dir="auto">This was the smallest dataset I could make to recreate the issue, but I've seen this issue on DataFrames of any size:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import pandas as pd
>>> json_data = '{"Col1":{"0":"S2#OaGwWII","1":")A9$rw3W_I","2":"2Ra+*_RWII","3":"2RA`4kRWII","4":"2R=K*_RWII"},' \
'"Col2":{"0":141105144406,"1":141107294517,"2":141106133624,"3":141108219194,"4":141106133614}}'
>>> df = pd.read_json(json_data)
>>> print(df)
Col1 Col2
0 S2#OaGwWII 141105144406
1 )A9$rw3W_I 141107294517
2 2Ra+*_RWII 141106133624
3 2RA`4kRWII 141108219194
4 2R=K*_RWII 141106133614
>>> df.duplicated(keep=False)
0 False
1 False
2 True
3 False
4 True
dtype: bool
"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></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-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">json_data</span> <span class="pl-c1">=</span> <span class="pl-s">'{"Col1":{"0":"S2#OaGwWII","1":")A9$rw3W_I","2":"2Ra+*_RWII","3":"2RA`4kRWII","4":"2R=K*_RWII"},'</span> \
<span class="pl-s">'"Col2":{"0":141105144406,"1":141107294517,"2":141106133624,"3":141108219194,"4":141106133614}}'</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_json</span>(<span class="pl-s1">json_data</span>)
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-en">print</span>(<span class="pl-s1">df</span>)
<span class="pl-v">Col1</span> <span class="pl-v">Col2</span>
<span class="pl-c1">0</span> <span class="pl-v">S2</span><span class="pl-c">#OaGwWII 141105144406</span>
<span class="pl-c1">1</span> )<span class="pl-v">A9</span>$<span class="pl-s1">rw3W_I</span> <span class="pl-c1">141107294517</span>
<span class="pl-c1">2</span> <span class="pl-c1">2</span><span class="pl-v">Ra</span><span class="pl-c1">+</span><span class="pl-c1">*</span><span class="pl-s1">_RWII</span> <span class="pl-c1">141106133624</span>
<span class="pl-c1">3</span> <span class="pl-c1">2</span><span class="pl-v">RA</span>`<span class="pl-c1">4</span><span class="pl-s1">kRWII</span> <span class="pl-c1">141108219194</span>
<span class="pl-c1">4</span> <span class="pl-c1">2</span><span class="pl-v">R</span><span class="pl-c1">=</span><span class="pl-v">K</span><span class="pl-c1">*</span><span class="pl-s1">_RWII</span> <span class="pl-c1">141106133614</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">duplicated</span>(<span class="pl-s1">keep</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-c1">0</span> <span class="pl-c1">False</span>
<span class="pl-c1">1</span> <span class="pl-c1">False</span>
<span class="pl-c1">2</span> <span class="pl-c1">True</span>
<span class="pl-c1">3</span> <span class="pl-c1">False</span>
<span class="pl-c1">4</span> <span class="pl-c1">True</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">bool</span></pre></div>
<p dir="auto">It also seems to depend on row order / column order; this behavior can be changed by shuffling / sampling rows or columns, e.g.:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> df[['Col2', 'Col1']].duplicated(keep=False)
0 False
1 False
2 False
3 False
4 False
dtype: bool"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>[[<span class="pl-s">'Col2'</span>, <span class="pl-s">'Col1'</span>]].<span class="pl-en">duplicated</span>(<span class="pl-s1">keep</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-c1">0</span> <span class="pl-c1">False</span>
<span class="pl-c1">1</span> <span class="pl-c1">False</span>
<span class="pl-c1">2</span> <span class="pl-c1">False</span>
<span class="pl-c1">3</span> <span class="pl-c1">False</span>
<span class="pl-c1">4</span> <span class="pl-c1">False</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">bool</span></pre></div>
<p dir="auto">I only see this behavior on 0.17.0, while 0.16.2 is fine. More details about each environment are below:</p>
<h4 dir="auto">pandas 0.17.0 / python 3.4.3 (failing)</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> pd.util.print_versions.show_versions()
INSTALLED VERSIONS
------------------
commit: None
python: 3.4.3.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-400.1.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: en_US
pandas: 0.17.0
nose: 1.3.4
pip: 7.1.2
setuptools: 18.4
Cython: 0.23.4
numpy: 1.10.1
scipy: 0.16.0
statsmodels: 0.6.1
IPython: 3.2.1
sphinx: 1.3.1
patsy: 0.4.0
dateutil: 2.4.2
pytz: 2015.7
blosc: None
bottleneck: None
tables: 3.2.2
numexpr: 2.4.4
matplotlib: 1.4.3
openpyxl: 1.8.5
xlrd: 0.9.4
xlwt: None
xlsxwriter: 0.7.3
lxml: 3.4.4
bs4: 4.4.0
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.9
pymysql: 0.6.6.None
psycopg2: 2.6 (dt dec pq3 ext)"><pre class="notranslate"><code class="notranslate">>>> pd.util.print_versions.show_versions()
INSTALLED VERSIONS
------------------
commit: None
python: 3.4.3.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-400.1.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: en_US
pandas: 0.17.0
nose: 1.3.4
pip: 7.1.2
setuptools: 18.4
Cython: 0.23.4
numpy: 1.10.1
scipy: 0.16.0
statsmodels: 0.6.1
IPython: 3.2.1
sphinx: 1.3.1
patsy: 0.4.0
dateutil: 2.4.2
pytz: 2015.7
blosc: None
bottleneck: None
tables: 3.2.2
numexpr: 2.4.4
matplotlib: 1.4.3
openpyxl: 1.8.5
xlrd: 0.9.4
xlwt: None
xlsxwriter: 0.7.3
lxml: 3.4.4
bs4: 4.4.0
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.9
pymysql: 0.6.6.None
psycopg2: 2.6 (dt dec pq3 ext)
</code></pre></div>
<h4 dir="auto">pandas 0.17.0 / python 3.5 (failing)</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> pd.util.print_versions.show_versions()
INSTALLED VERSIONS
------------------
commit: None
python: 3.5.0.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-348.18.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: C
pandas: 0.17.0
nose: 1.3.7
pip: 7.1.2
setuptools: 18.4
Cython: 0.23.4
numpy: 1.10.1
scipy: 0.16.0
statsmodels: 0.6.1
IPython: 4.0.0
sphinx: 1.3.1
patsy: 0.4.0
dateutil: 2.4.2
pytz: 2015.7
blosc: None
bottleneck: None
tables: 3.2.2
numexpr: 2.4.4
matplotlib: 1.5.0
openpyxl: 1.8.5
xlrd: 0.9.4
xlwt: None
xlsxwriter: 0.7.7
lxml: 3.4.4
bs4: 4.4.1
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.9
pymysql: 0.6.7.None
psycopg2: None"><pre class="notranslate"><code class="notranslate">>>> pd.util.print_versions.show_versions()
INSTALLED VERSIONS
------------------
commit: None
python: 3.5.0.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-348.18.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: C
pandas: 0.17.0
nose: 1.3.7
pip: 7.1.2
setuptools: 18.4
Cython: 0.23.4
numpy: 1.10.1
scipy: 0.16.0
statsmodels: 0.6.1
IPython: 4.0.0
sphinx: 1.3.1
patsy: 0.4.0
dateutil: 2.4.2
pytz: 2015.7
blosc: None
bottleneck: None
tables: 3.2.2
numexpr: 2.4.4
matplotlib: 1.5.0
openpyxl: 1.8.5
xlrd: 0.9.4
xlwt: None
xlsxwriter: 0.7.7
lxml: 3.4.4
bs4: 4.4.1
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.9
pymysql: 0.6.7.None
psycopg2: None
</code></pre></div>
<h4 dir="auto">pandas 0.16.2 python 3.5 (passing)</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> pd.util.print_versions.show_versions()
INSTALLED VERSIONS
------------------
commit: None
python: 3.5.0.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-348.18.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: C
pandas: 0.16.2
nose: None
Cython: None
numpy: 1.10.1
scipy: None
statsmodels: None
IPython: None
sphinx: None
patsy: None
dateutil: 2.4.2
pytz: 2015.7
bottleneck: None
tables: None
numexpr: None
matplotlib: None
openpyxl: None
xlrd: None
xlwt: None
xlsxwriter: None
lxml: None
bs4: None
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: None
pymysql: None
psycopg2: None"><pre class="notranslate"><code class="notranslate">>>> pd.util.print_versions.show_versions()
INSTALLED VERSIONS
------------------
commit: None
python: 3.5.0.final.0
python-bits: 64
OS: Linux
OS-release: 2.6.18-348.18.1.el5
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: None
LANG: C
pandas: 0.16.2
nose: None
Cython: None
numpy: 1.10.1
scipy: None
statsmodels: None
IPython: None
sphinx: None
patsy: None
dateutil: 2.4.2
pytz: 2015.7
bottleneck: None
tables: None
numexpr: None
matplotlib: None
openpyxl: None
xlrd: None
xlwt: None
xlsxwriter: None
lxml: None
bs4: None
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: None
pymysql: None
psycopg2: None
</code></pre></div> | 0 |
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/44893749/177528495-f2f79409-0476-479d-9727-92675820d330.png"><img width="975" alt="ๅพ็" src="https://user-images.githubusercontent.com/44893749/177528495-f2f79409-0476-479d-9727-92675820d330.png" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/44893749/177528588-63035ee7-6d06-4ab9-bca8-2881097c7c8a.png"><img width="1534" alt="ๅพ็" src="https://user-images.githubusercontent.com/44893749/177528588-63035ee7-6d06-4ab9-bca8-2881097c7c8a.png" style="max-width: 100%;"></a></p> | <h2 dir="auto">ComboPooledDataSource not compatible with apache shardingsphere.</h2>
<p dir="auto">I am currently trying to implement shardingshpere in my current company's codebase. Previously created an example project using HikariDataSource and it worked fine.</p>
<p dir="auto">Now in companies code base uses c3p0.ComboPooledDataSource as datasource. So when am trying to create shardingshphere datasource using this datasource its failing.</p>
<p dir="auto">In HikariDatasource, the standardProps are coming correct.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25997886/181229436-e6492019-0bdf-4f0b-8ac7-8c508e4e2024.png"><img width="734" alt="image" src="https://user-images.githubusercontent.com/25997886/181229436-e6492019-0bdf-4f0b-8ac7-8c508e4e2024.png" style="max-width: 100%;"></a></p>
<p dir="auto">But in c3p0.ComboPooledDataSource, the standardProps are giving just password only.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25997886/181229691-dc137910-ac57-4144-811f-6d5fed3802ea.png"><img width="734" alt="image" src="https://user-images.githubusercontent.com/25997886/181229691-dc137910-ac57-4144-811f-6d5fed3802ea.png" style="max-width: 100%;"></a></p>
<p dir="auto">The main cause of the issue is that in c3p0.ComboPooledDataSource, the properties are stored in different format. <code class="notranslate">Like username as user and url as jdbcUrl.</code><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25997886/181230461-42eb9ecd-af15-4925-8059-5081a0417283.png"><img width="982" alt="image" src="https://user-images.githubusercontent.com/25997886/181230461-42eb9ecd-af15-4925-8059-5081a0417283.png" style="max-width: 100%;"></a></p>
<p dir="auto"><code class="notranslate">Thats why am getting a nullpointer exception here since both the keys are username and url</code><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25997886/181230180-b2b2f3b8-2be1-41ab-a011-13efe2a1f0a8.png"><img width="982" alt="image" src="https://user-images.githubusercontent.com/25997886/181230180-b2b2f3b8-2be1-41ab-a011-13efe2a1f0a8.png" style="max-width: 100%;"></a></p>
<p dir="auto">I was under the assumption that apache shardingsphere is compatible with all kinds of datasource. I am stuck here.</p>
<p dir="auto">Please help me out if possible.</p>
<p dir="auto">Datasource Config</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dataSources:
ds:
dataSourceClassName: com.mchange.v2.c3p0.ComboPooledDataSource
driverClassName: com.mysql.jdbc.Driver
jdbcUrl: jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
user: root
username: root
password: password
max-active: 16"><pre class="notranslate"><code class="notranslate">dataSources:
ds:
dataSourceClassName: com.mchange.v2.c3p0.ComboPooledDataSource
driverClassName: com.mysql.jdbc.Driver
jdbcUrl: jdbc:mysql://localhost:3306/demo_ds?serverTimezone=UTC&useSSL=false&useUnicode=true&characterEncoding=UTF-8
user: root
username: root
password: password
max-active: 16
</code></pre></div>
<p dir="auto">pom.xml</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core</artifactId>
<version>5.1.2</version>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.1</version>
</dependency>
"><pre class="notranslate"><code class="notranslate"><dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-core</artifactId>
<version>5.1.2</version>
</dependency>
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.1</version>
</dependency>
</code></pre></div> | 1 |
<h4 dir="auto">Challenge Name</h4>
<p dir="auto"><a href="https://www.freecodecamp.com/challenges/use-a-css-class-to-style-an-element#?solution=%3Cstyle%3E%0A%20%C2%A0.red-text%20%7B%0A%20%C2%A0%20%20color%3A%20red%3B%0A%20%20%7D%0A%3C%2Fstyle%3E%0A%0A%3Ch2%20class%3D%22red-text%22%3E%0A%20%20CatPhotoApp%0A%3C%2Fh2%3E%0A%0A%3Cp%3EKitty%20ipsum%20dolor%20sit%20amet%2C%20shed%20everywhere%20shed%20everywhere%20stretching%20attack%20your%20ankles%20chase%20the%20red%20dot%2C%20hairball%20run%20catnip%20eat%20the%20grass%20sniff.%3C%2Fp%3E%0A" rel="nofollow">https://www.freecodecamp.com/challenges/use-a-css-class-to-style-an-element#?solution=%3Cstyle%3E%0A%20%C2%A0.red-text%20%7B%0A%20%C2%A0%20%20color%3A%20red%3B%0A%20%20%7D%0A%3C%2Fstyle%3E%0A%0A%3Ch2%20class%3D%22red-text%22%3E%0A%20%20CatPhotoApp%0A%3C%2Fh2%3E%0A%0A%3Cp%3EKitty%20ipsum%20dolor%20sit%20amet%2C%20shed%20everywhere%20shed%20everywhere%20stretching%20attack%20your%20ankles%20chase%20the%20red%20dot%2C%20hairball%20run%20catnip%20eat%20the%20grass%20sniff.%3C%2Fp%3E%0A</a></p>
<h4 dir="auto">Issue Description</h4>
<p dir="auto">The result from the editor is incorrect.</p>
<p dir="auto">I have a style declaration for the red-text class: <code class="notranslate">.red-text { color: red; }</code>, and an element which uses this class: <code class="notranslate"><h2 class="red-text">...</h2></code>.</p>
<p dir="auto">The grader recognizes both of these, yet the <code class="notranslate">h2</code> remains unstyled.</p>
<h4 dir="auto">Browser Information</h4>
<ul dir="auto">
<li>Chrome for Android, V 49:</li>
<li>Operating System: Android 6.0.1</li>
<li>Mobile, Desktop, or Tablet: Mobile (Nexus 5)</li>
</ul>
<h4 dir="auto">Your Code</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<style>
ย .red-text {
ย color: red;
}
</style>
<h2 class="red-text">
CatPhotoApp
</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>"><pre class="notranslate"><code class="notranslate"><style>
ย .red-text {
ย color: red;
}
</style>
<h2 class="red-text">
CatPhotoApp
</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
</code></pre></div> | <p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/use-a-css-class-to-style-an-element#?solution=%3Cstyle%3E%0A%20%C2%A0.red-text%20%7B%0A%20%C2%A0%20%20color%3A%20red%3B%0A%20%20%7D%0A%3C%2Fstyle%3E%0A%0A%3Ch2%20class%3D%22red-text%22%3ECatPhotoApp%3C%2Fh2%3E%0A%0A%3Cp%3EKitty%20ipsum%20dolor%20sit%20amet%2C%20shed%20everywhere%20shed%20everywhere%20stretching%20attack%20your%20ankles%20chase%20the%20red%20dot%2C%20hairball%20run%20catnip%20eat%20the%20grass%20sniff.%3C%2Fp%3E%0A" rel="nofollow">Use a CSS Class to Style an Element</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Linux; Android 4.4.2; SM-T231 Build/KOT49H) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.105 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<style>
ย .red-text {
ย color: red;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">style</span><span class="pl-kos">></span>
ย .<span class="pl-c1">red-text</span> {
ย col<span class="pl-c1">or</span><span class="pl-kos">:</span> <span class="pl-c1">red</span>;
}
<span class="pl-kos"></</span><span class="pl-ent">style</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h2</span> <span class="pl-c1">class</span>="<span class="pl-s">red-text</span>"<span class="pl-kos">></span>CatPhotoApp<span class="pl-kos"></</span><span class="pl-ent">h2</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.<span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span></pre></div> | 1 |
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>no</td>
</tr>
<tr>
<td>Feature request?</td>
<td>yes</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>yes</td>
</tr>
<tr>
<td>Symfony version</td>
<td>4.1</td>
</tr>
</tbody>
</table>
<p dir="auto"><code class="notranslate">Finder::ignoreVCS()</code> is great at ignoring file patterns for the files created by popular VCS systems.</p>
<p dir="auto">However, it would be great to be able to instruct <code class="notranslate">Finder</code> to actually exclude the paths excluded by <code class="notranslate">.gitignore</code>.</p>
<p dir="auto">So if we have <code class="notranslate">.gitignore</code>:</p>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="vendor/
cache/"><pre class="notranslate">vendor/
cache/</pre></div>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Finder::create()
->files()
->ignoreVCS(true) // <--- Ignores `.git`
->ignoreVCSIgnored(true); // <--- Ignores vendor/ and cache/"><pre class="notranslate"><span class="pl-v">Finder</span>::<span class="pl-en">create</span>()
-><span class="pl-en">files</span>()
-><span class="pl-en">ignoreVCS</span>(<span class="pl-c1">true</span>) <span class="pl-c">// <--- Ignores `.git`</span>
-><span class="pl-en">ignoreVCSIgnored</span>(<span class="pl-c1">true</span>); <span class="pl-c">// <--- Ignores vendor/ and cache/</span></pre></div>
<p dir="auto">I think this would simplify a lot of Finder configurations which currently manually exclude the git-ignored paths or manually include everything else.</p> | <p dir="auto">should be mapped to number input type with step="any"...yes, number supports float.</p> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">I'm writing an app with <a href="https://emojipedia.org/modifiers/" rel="nofollow">Emoji Skin Tone Modifiers</a>.</p>
<p dir="auto">So, this string <code class="notranslate">" ๐ ๐ฟ"</code> should display as ๐๐ฟ.</p>
<p dir="auto">This works on Android but on iOS the modifier stays separate ( <g-emoji class="g-emoji" alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png">๐</g-emoji> ๐ฟ).</p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto">Android:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17096321/48317709-62606480-e5f6-11e8-861e-d9c3685a020d.png"><img src="https://user-images.githubusercontent.com/17096321/48317709-62606480-e5f6-11e8-861e-d9c3685a020d.png" alt="Android Emulator" style="max-width: 100%;"></a></p>
<p dir="auto">iPhone 8, iOS 12.1:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17096321/48317678-dea67800-e5f5-11e8-89c0-9621792d3e3f.png"><img src="https://user-images.githubusercontent.com/17096321/48317678-dea67800-e5f5-11e8-89c0-9621792d3e3f.png" alt="iPhone 8, iOS 12.1" style="max-width: 100%;"></a></p>
<h2 dir="auto">Steps to Reproduce</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
print('๐'+'๐ฟ');
return MaterialApp(
title: 'Emoji Demo',
home: Container(
alignment: Alignment.center,
color: Colors.white,
child: Text('๐'+'๐ฟ'),
),
);
}
}"><pre class="notranslate"><code class="notranslate">import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
print('๐'+'๐ฟ');
return MaterialApp(
title: 'Emoji Demo',
home: Container(
alignment: Alignment.center,
color: Colors.white,
child: Text('๐'+'๐ฟ'),
),
);
}
}
</code></pre></div>
<ol dir="auto">
<li>Create a new flutter project</li>
<li>Replace <code class="notranslate">main.dart</code> with the above</li>
<li>Run on iOS 12.1</li>
</ol>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +26 ms] executing: [/Users/xander/Development/flutter/] git rev-parse
--abbrev-ref --symbolic @{u}
[ +34 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/xander/Development/flutter/] git rev-parse
--abbrev-ref HEAD
[ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] executing: [/Users/xander/Development/flutter/] git ls-remote
--get-url origin
[ +12 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/xander/Development/flutter/] git log -n 1
--pretty=format:%H
[ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] d8cbb80206db06d151206f8b599b7dde5a386a2d
[ ] executing: [/Users/xander/Development/flutter/] git log -n 1
--pretty=format:%ar
[ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 weeks ago
[ ] executing: [/Users/xander/Development/flutter/] git describe --match
v*.*.* --first-parent --long --tags
[ +37 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long
--tags
[ ] v0.10.2-0-gd8cbb8020
[ +253 ms] executing: /Users/xander/Library/Android/sdk/platform-tools/adb
devices -l
[ +7 ms] Exit code 0 from:
/Users/xander/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +4 ms] executing: idevice_id -h
[ +31 ms] /usr/bin/xcrun simctl list --json devices
[+1233 ms] Launching lib/main.dart on iPhone 8 in debug mode...
[ +20 ms] executing: /usr/bin/defaults read
/Users/xander/Code/emoji_test/ios/Runner/Info CFBundleIdentifier
[ +63 ms] Exit code 0 from: /usr/bin/defaults read
/Users/xander/Code/emoji_test/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ +15 ms] Building Runner.app for E3E507AC-9EAA-4F1B-812F-583CF0A3A181.
[ +9 ms] executing: script /dev/null /usr/bin/log stream --style syslog
--predicate processImagePath CONTAINS "E3E507AC-9EAA-4F1B-812F-583CF0A3A181"
[ +45 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS
"E3E507AC-9EAA-4F1B-812F-583CF0A3A181""
[ +154 ms] Skipping kernel compilation. Fingerprint match.
[ +251 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +49 ms] Wrote build/flutter_assets
[ +9 ms] Using legacy Xcode build system.
[ +17 ms] executing: [/Users/xander/Code/emoji_test/ios/] /usr/bin/xcodebuild
-list
[+1488 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed
then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to
'/Users/xander/Code/emoji_test/ios/Frameworks'.
[ ] Creating service definitions manifest at
'/Users/xander/Code/emoji_test/ios/ServiceDefinitions.json'
[ +31 ms] executing: mkfifo
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/p
ipe_to_stdout
[ +6 ms] Exit code 0 from: mkfifo
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/p
ipe_to_stdout
[ +2 ms] Starting Xcode build...
[ +1 ms] executing: [/Users/xander/Code/emoji_test/ios/] /usr/bin/env xcrun
xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace
Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/xander/Code/emoji_test/build/ios -sdk iphonesimulator -arch
x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutt
er_build_log_pipe.HbLk1A/pipe_to_stdout
[+1180 ms] Starting Xcode build... (completed)
[ +1 ms] โโAssembling Flutter resources...
[+1804 ms] โโAssembling Flutter resources... (completed)
[ ] Starting Xcode build... (completed)
[ ] โโCompiling, linking and signing...
[+4169 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/xander/Code/emoji_test/build/ios
SCRIPT_OUTPUT_STREAM_FILE =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter
_build_log_pipe.HbLk1A/pipe_to_stdout
SDKROOT = iphonesimulator12.1
VERBOSE_SCRIPT_LOGGING = YES
Prepare build
note: Using legacy build system
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION
Debug ===
Check dependencies
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulat
ed.xcent
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"application-identifier" =
"WQQJFXGF34.com.example.emojiTest";
"keychain-access-groups" = (
"WQQJFXGF34.com.example.emojiTest"
);
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app-Simulated.xcent
PhaseScriptExecution Run\ Script
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF
901F6004384FC.sh
cd /Users/xander/Code/emoji_test/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=xander
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/Document
ation
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/xander/Code/emoji_test/build/ios
export
BUILD_ROOT=/Users/xander/Library/Developer/Xcode/Derived
Data/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export
BUILT_PRODUCTS_DIR=/Users/xander/Code/emoji_test/build/i
os/Debug-iphonesimulator
export
CACHE_ROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000g
n/C/com.apple.DeveloperTools/10.1-10B61/Xcode
export
CCHROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C
/com.apple.DeveloperTools/10.1-10B61/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/xander/Library/D
eveloper/Xcode/DerivedData/ModuleCache.noindex/Session.m
odulevalidation
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/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export
CODESIGNING_FOLDER_PATH=/Users/xander/Code/emoji_test/bu
ild/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/xander/Library/Developer/Xcode
/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/I
ntermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export
CONFIGURATION_BUILD_DIR=/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
export
CONFIGURATION_TEMP_DIR=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor
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.ap
p/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export
CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneOS.platform/Developer/SD
Ks/iPhoneOS12.1.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
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_TAR
GET
export
DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version
-min
export
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-vers
ion-min=
export
DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export
DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export
DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGE
T
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 12.0 12.1"
export
DERIVED_FILES_DIR=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/DerivedSources
export
DERIVED_FILE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.build/DerivedSources
export
DERIVED_SOURCES_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/Runner.build/Debug-iphonesimulator
/Runner.build/DerivedSources
export
DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Conte
nts/Developer/Applications
export
DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr/bin
export
DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export
DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Content
s/Developer/Library/Frameworks
export
DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/
Contents/Developer/Library/Frameworks
export
DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/D
eveloper/Library
export
DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Devel
oper/Platforms/MacOSX.platform/Developer/SDKs
export
DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Dev
eloper/Tools
export
DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr
export DEVELOPMENT_LANGUAGE=English
export
DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Docum
entation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export
DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Develo
per/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/xander/Code/emoji_test/bui
ld/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_DESTINATION=__entitlements
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/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.noindex/Runner.build/Debug-iphonesimulator/Runner.bu
ild/Objects/LinkFileList
export
FIXED_FILES_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/FixedFiles
export
FLUTTER_APPLICATION_PATH=/Users/xander/Code/emoji_test
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_BUILD_NAME=1.0.0
export FLUTTER_BUILD_NUMBER=1
export
FLUTTER_FRAMEWORK_DIR=/Users/xander/Development/flutter/
bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/xander/Development/flutter
export
FLUTTER_TARGET=/Users/xander/Code/emoji_test/lib/main.da
rt
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export
FRAMEWORK_SEARCH_PATHS="/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++
objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export
GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_
0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=Y
ES
export
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYP
ES=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/xander/Code/emoji_test/build
/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/xander
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.stri
ngs
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=xander
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.framewor
k/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/Objects-normal/x86_64/Runner_dependenc
y_info.dat
export LD_GENERATE_MAP_FILE=NO
export
LD_MAP_FILE_PATH=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.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/Pl
ugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Develo
per
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/xander/Code/emoji_test/buil
d/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export
LINK_FILE_LIST_normal_x86_64=/Users/xander/Library/Devel
oper/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfe
ml/Build/Intermediates.noindex/Runner.build/Debug-iphone
simulator/Runner.build/Objects-normal/x86_64/Runner.Link
FileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
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=18B75
export MAC_OS_X_VERSION_ACTUAL=101401
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1401
export METAL_LIBRARY_FILE_BASE=default
export
METAL_LIBRARY_OUTPUT_DIR=/Users/xander/Code/emoji_test/b
uild/ios/Debug-iphonesimulator/Runner.app
export
MODULE_CACHE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/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/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/Objects
export
OBJECT_FILE_DIR_normal=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor/Runner.build/Objects-normal
export
OBJROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediate
s.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/Toolcha
ins/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode
.app/Contents/Developer/Toolchains/XcodeDefault.xctoolch
ain/usr/local/bin:/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Ap
plications/Xcode.app/Contents/Developer/Platforms/iPhone
Simulator.platform/Developer/usr/bin:/Applications/Xcode
.app/Contents/Developer/Platforms/iPhoneSimulator.platfo
rm/Developer/usr/local/bin:/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/usr/bin
:/Applications/Xcode.app/Contents/Developer/Platforms/iP
honeSimulator.platform/usr/local/bin:/Applications/Xcode
.app/Contents/Developer/usr/bin:/Applications/Xcode.app/
Contents/Developer/usr/local/bin:/Applications/Xcode.app
/Contents/Developer/Tools:/Users/xander/Development/flut
ter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/in
clude /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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export
PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.
app/Contents/Developer/Platforms/iPhoneSimulator.platfor
m/Developer/Applications
export
PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/usr/bin
export
PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/C
ontents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupp
ort/Developer/Library
export
PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/SDKs
export
PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneSimulator.platform/Devel
oper/Tools
export
PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export
PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.emojiTest
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export
PRODUCT_SETTINGS_PATH=/Users/xander/Code/emoji_test/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/xander/Library/Developer
/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/B
uild/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/xander/Code/emoji_test/ios
export
PROJECT_FILE_PATH=/Users/xander/Code/emoji_test/ios/Runn
er.xcodeproj
export PROJECT_NAME=Runner
export
PROJECT_TEMP_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build
export
PROJECT_TEMP_ROOT=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/ResourceManagerResources
export
REZ_OBJECTS_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/ResourceManagerResources/Objects
export
REZ_SEARCH_PATHS="/Users/xander/Code/emoji_test/build/io
s/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_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jn
w3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/pipe_to
_stdout
export
SDKROOT=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Cont
ents/Developer/Platforms/iPhoneSimulator.platform/Develo
per/SDKs/iPhoneSimulator12.1.sdk
export SDK_NAME=iphonesimulator12.1
export SDK_NAMES=iphonesimulator12.1
export SDK_PRODUCT_BUILD_VERSION=16B91
export SDK_VERSION=12.1
export SDK_VERSION_ACTUAL=120100
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=100
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/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator/DerivedSources
export
SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFramework
s
export
SHARED_PRECOMPS_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/PrecompiledHeaders
export
SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/xander/Code/emoji_test/ios
export SRCROOT=/Users/xander/Code/emoji_test/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export
SYMROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/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/Conten
ts/Developer/Applications
export
SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Content
s/Developer/usr/bin
export
SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Cont
ents/Developer/Applications/Utilities/Built Examples"
export
SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/De
veloper
export
SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Conten
ts/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/Xc
ode.app/Contents/Developer/Applications/Performance
Tools"
export
SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.a
pp/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/X
code.app/Contents/Developer/ADC Reference
Library/releasenotes/DeveloperTools"
export
SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Content
s/Developer/usr
export
SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/C
ontents/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/xander/Code/emoji_test/build/ios
/Debug-iphonesimulator
export
TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulato
rPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export
TARGET_TEMP_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build
export
TEMP_DIR=/Users/xander/Library/Developer/Xcode/DerivedDa
ta/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediat
es.noindex/Runner.build/Debug-iphonesimulator/Runner.bui
ld
export
TEMP_FILES_DIR=/Users/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build
export
TEMP_FILE_DIR=/Users/xander/Library/Developer/Xcode/Deri
vedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Interm
ediates.noindex/Runner.build/Debug-iphonesimulator/Runne
r.build
export
TEMP_ROOT=/Users/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.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=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=xander
export USER_APPS_DIR=/Users/xander/Applications
export USER_LIBRARY_DIR=/Users/xander/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=xander
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/D
eveloper/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10B61
export XCODE_VERSION_ACTUAL=1010
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1010
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Script
-9740EEB61CF901F6004384FC.sh
โฆ mkdir -p -- /Users/xander/Code/emoji_test/ios/Flutter
โฆ rm -rf --
/Users/xander/Code/emoji_test/ios/Flutter/App.framework
โฆ rm -rf --
/Users/xander/Code/emoji_test/ios/Flutter/Flutter.framework
โฆ cp -r --
/Users/xander/Development/flutter/bin/cache/artifacts/engine
/ios/Flutter.framework
/Users/xander/Code/emoji_test/ios/Flutter
โฆ find
/Users/xander/Code/emoji_test/ios/Flutter/Flutter.framework
-type f -exec chmod a-w {} ;
โฆ mkdir -p --
/Users/xander/Code/emoji_test/ios/Flutter/App.framework
โฆ eval
โฆ cp --
/Users/xander/Code/emoji_test/ios/Flutter/AppFrameworkInfo.p
list
/Users/xander/Code/emoji_test/ios/Flutter/App.framework/Info
.plist
โฆ /Users/xander/Development/flutter/bin/flutter
--suppress-analytics --verbose build bundle
--target-platform=ios
--target=/Users/xander/Code/emoji_test/lib/main.dart --debug
--depfile=build/snapshot_blob.bin.d
--asset-dir=/Users/xander/Code/emoji_test/ios/Flutter/flutte
r_assets
[ +12 ms] executing: [/Users/xander/Development/flutter/]
git rev-parse --abbrev-ref --symbolic @{u}
[ +45 ms] Exit code 0 from: git rev-parse --abbrev-ref
--symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/xander/Development/flutter/]
git rev-parse --abbrev-ref HEAD
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] executing: [/Users/xander/Development/flutter/]
git ls-remote --get-url origin
[ +8 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/xander/Development/flutter/]
git log -n 1 --pretty=format:%H
[ +8 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] d8cbb80206db06d151206f8b599b7dde5a386a2d
[ ] executing: [/Users/xander/Development/flutter/]
git log -n 1 --pretty=format:%ar
[ +12 ms] Exit code 0 from: git log -n 1
--pretty=format:%ar
[ ] 2 weeks ago
[ +1 ms] executing: [/Users/xander/Development/flutter/]
git describe --match v*.*.* --first-parent --long --tags
[ +21 ms] Exit code 0 from: git describe --match v*.*.*
--first-parent --long --tags
[ ] v0.10.2-0-gd8cbb8020
[ +896 ms] Skipping kernel compilation. Fingerprint match.
[ +167 ms] Building bundle
[ ] Writing asset files to
/Users/xander/Code/emoji_test/ios/Flutter/flutter_assets
[ +90 ms] Wrote
/Users/xander/Code/emoji_test/ios/Flutter/flutter_assets
[ +9 ms] "flutter bundle" took 1,019ms.
Project /Users/xander/Code/emoji_test built and packaged
successfully.
CompileC
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86
_64/AppDelegate.o Runner/AppDelegate.m normal x86_64
objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/xander/Code/emoji_test/ios
export LANG=en_US.US-ASCII
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.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/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400
-fmodules-prune-after=345600
-fbuild-session-file=/Users/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex/Session.modulevalidat
ion -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
-Wno-objc-interface-ivars -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/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.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
-Wno-semicolon-before-method-body -fobjc-abi-version=2
-fobjc-legacy-dispatch -index-store-path
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Index/DataStore -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-generated-files.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-own-target-headers.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-all-target-headers.hmap -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-project-headers.hmap
-I/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator/include
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources/x86_64
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter -MMD
-MT dependencies -MF
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/AppDelegate.d --serialize-diagnostics
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/AppDelegate.dia -c
/Users/xander/Code/emoji_test/ios/Runner/AppDelegate.m
-o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/AppDelegate.o
CompileC
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86
_64/main.o Runner/main.m normal x86_64 objective-c
com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/xander/Code/emoji_test/ios
export LANG=en_US.US-ASCII
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.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/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400
-fmodules-prune-after=345600
-fbuild-session-file=/Users/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex/Session.modulevalidat
ion -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
-Wno-objc-interface-ivars -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/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.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
-Wno-semicolon-before-method-body -fobjc-abi-version=2
-fobjc-legacy-dispatch -index-store-path
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Index/DataStore -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-generated-files.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-own-target-headers.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-all-target-headers.hmap -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-project-headers.hmap
-I/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator/include
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources/x86_64
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter -MMD
-MT dependencies -MF
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/main.d --serialize-diagnostics
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/main.dia -c
/Users/xander/Code/emoji_test/ios/Runner/main.m -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/main.o
CompileC
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/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/xander/Code/emoji_test/ios
export LANG=en_US.US-ASCII
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.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/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400
-fmodules-prune-after=345600
-fbuild-session-file=/Users/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex/Session.modulevalidat
ion -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
-Wno-objc-interface-ivars -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/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.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
-Wno-semicolon-before-method-body -fobjc-abi-version=2
-fobjc-legacy-dispatch -index-store-path
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Index/DataStore -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-generated-files.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-own-target-headers.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-all-target-headers.hmap -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-project-headers.hmap
-I/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator/include
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources/x86_64
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter -MMD
-MT dependencies -MF
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/GeneratedPluginRegistrant.d
--serialize-diagnostics
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/GeneratedPluginRegistrant.dia -c
/Users/xander/Code/emoji_test/ios/Runner/GeneratedPlugin
Registrant.m -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/GeneratedPluginRegistrant.o
Ld
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Runner normal x86_64
cd /Users/xander/Code/emoji_test/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.xctoolchain/usr/bin/clang -arch x86_64
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.sdk
-L/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -L/Users/xander/Code/emoji_test/ios/Flutter
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter
-filelist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-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/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic
-Xlinker -no_deduplicate -Xlinker -objc_abi_version
-Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker
-sectcreate -Xlinker __TEXT -Xlinker __entitlements
-Xlinker
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app-Simulated.xcent -framework Flutter -framework App
-Xlinker -dependency_info -Xlinker
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/Runner_dependency_info.dat -o
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Runner
CopyPlistFile
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppFrameworkInfo.plist
Flutter/AppFrameworkInfo.plist
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-copyPlist --convert binary1 --outdir
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app -- Flutter/AppFrameworkInfo.plist
CpResource Flutter/Debug.xcconfig
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Debug.xcconfig
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude
.svn -exclude .git -exclude .hg -resolve-src-symlinks
/Users/xander/Code/emoji_test/ios/Flutter/Debug.xcconfig
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
CpResource Flutter/flutter_assets
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/flutter_assets
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude
.svn -exclude .git -exclude .hg -resolve-src-symlinks
/Users/xander/Code/emoji_test/ios/Flutter/flutter_assets
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
CompileStoryboard Runner/Base.lproj/LaunchScreen.storyboard
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
export
XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Content
s/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtoo
l --errors --warnings --notices --module Runner
--output-partial-info-plist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/LaunchScreen-SBPartialInfo.plist
--auto-activate-custom-fonts --target-device iphone
--target-device ipad --minimum-deployment-target 8.0
--output-format human-readable-text
--compilation-directory
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj
/Users/xander/Code/emoji_test/ios/Runner/Base.lproj/Laun
chScreen.storyboard
CompileStoryboard Runner/Base.lproj/Main.storyboard
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
export
XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Content
s/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtoo
l --errors --warnings --notices --module Runner
--output-partial-info-plist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/Main-SBPartialInfo.plist
--auto-activate-custom-fonts --target-device iphone
--target-device ipad --minimum-deployment-target 8.0
--output-format human-readable-text
--compilation-directory
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj
/Users/xander/Code/emoji_test/ios/Runner/Base.lproj/Main
.storyboard
CompileAssetCatalog
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app Runner/Assets.xcassets
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/usr/bin/actoo
l --output-format human-readable-text --notices
--warnings --export-dependency-info
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/assetc
atalog_dependencies --output-partial-info-plist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/assetc
atalog_generated_info.plist --app-icon AppIcon
--compress-pngs --enable-on-demand-resources YES
--sticker-pack-identifier-prefix
com.example.emojiTest.sticker-pack. --target-device
iphone --target-device ipad --minimum-deployment-target
8.0 --platform iphonesimulator --product-type
com.apple.product-type.application --compile
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
/Users/xander/Code/emoji_test/ios/Runner/Assets.xcassets
/* com.apple.actool.compilation-results */
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon29x29.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon20x20~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon20x20@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon29x29~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon29x29@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon40x40~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon40x40@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon76x76~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon76x76@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon83.5x83.5@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Assets.car
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/assetcatalog_gener
ated_info.plist
ProcessInfoPlistFile
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Info.plist Runner/Info.plist
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-infoPlistUtility
/Users/xander/Code/emoji_test/ios/Runner/Info.plist
-genpkginfo
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/PkgInfo -expandbuildsettings -format
binary -platform iphonesimulator -additionalcontentfile
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/assetc
atalog_generated_info.plist -additionalcontentfile
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/LaunchScreen-SBPartialInfo.plist
-additionalcontentfile
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/Main-SBPartialInfo.plist -o
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Info.plist
LinkStoryboards
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
export
XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Content
s/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtoo
l --errors --warnings --notices --module Runner
--target-device iphone --target-device ipad
--minimum-deployment-target 8.0 --output-format
human-readable-text --link
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/LaunchScreen.storyboardc
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/Main.storyboardc
PBXCp Flutter/App.framework
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/App.framework
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
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/xander/Code/emoji_test/ios/Flutter/App.framework
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/Flutter.framework
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
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/xander/Code/emoji_test/ios/Flutter/Flutter.framew
ork
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/App.framework.xcen
t
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/App.fr
amework.xcent
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Flutter.framework.
xcent
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Flutte
r.framework.xcent
CodeSign
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/Flutter.framework
cd /Users/xander/Code/emoji_test/ios
export
CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesig
n_allocate
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Signing Identity: "-"
/usr/bin/codesign --force --sign -
--preserve-metadata=identifier,entitlements,flags
--timestamp=none
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks/Flutter.framework
CodeSign
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/App.framework
cd /Users/xander/Code/emoji_test/ios
export
CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesig
n_allocate
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Signing Identity: "-"
/usr/bin/codesign --force --sign -
--preserve-metadata=identifier,entitlements,flags
--timestamp=none
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4
923F5004D2608.sh
cd /Users/xander/Code/emoji_test/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=xander
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/Document
ation
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/xander/Code/emoji_test/build/ios
export
BUILD_ROOT=/Users/xander/Library/Developer/Xcode/Derived
Data/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export
BUILT_PRODUCTS_DIR=/Users/xander/Code/emoji_test/build/i
os/Debug-iphonesimulator
export
CACHE_ROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000g
n/C/com.apple.DeveloperTools/10.1-10B61/Xcode
export
CCHROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C
/com.apple.DeveloperTools/10.1-10B61/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/xander/Library/D
eveloper/Xcode/DerivedData/ModuleCache.noindex/Session.m
odulevalidation
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/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export
CODESIGNING_FOLDER_PATH=/Users/xander/Code/emoji_test/bu
ild/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/xander/Library/Developer/Xcode
/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/I
ntermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export
CONFIGURATION_BUILD_DIR=/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
export
CONFIGURATION_TEMP_DIR=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor
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.ap
p/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export
CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneOS.platform/Developer/SD
Ks/iPhoneOS12.1.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
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_TAR
GET
export
DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version
-min
export
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-vers
ion-min=
export
DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export
DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export
DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGE
T
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 12.0 12.1"
export
DERIVED_FILES_DIR=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/DerivedSources
export
DERIVED_FILE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.build/DerivedSources
export
DERIVED_SOURCES_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/Runner.build/Debug-iphonesimulator
/Runner.build/DerivedSources
export
DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Conte
nts/Developer/Applications
export
DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr/bin
export
DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export
DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Content
s/Developer/Library/Frameworks
export
DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/
Contents/Developer/Library/Frameworks
export
DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/D
eveloper/Library
export
DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Devel
oper/Platforms/MacOSX.platform/Developer/SDKs
export
DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Dev
eloper/Tools
export
DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr
export DEVELOPMENT_LANGUAGE=English
export
DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Docum
entation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export
DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Develo
per/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/xander/Code/emoji_test/bui
ld/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_DESTINATION=__entitlements
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/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.noindex/Runner.build/Debug-iphonesimulator/Runner.bu
ild/Objects/LinkFileList
export
FIXED_FILES_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/FixedFiles
export
FLUTTER_APPLICATION_PATH=/Users/xander/Code/emoji_test
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_BUILD_NAME=1.0.0
export FLUTTER_BUILD_NUMBER=1
export
FLUTTER_FRAMEWORK_DIR=/Users/xander/Development/flutter/
bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/xander/Development/flutter
export
FLUTTER_TARGET=/Users/xander/Code/emoji_test/lib/main.da
rt
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export
FRAMEWORK_SEARCH_PATHS="/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++
objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export
GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_
0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=Y
ES
export
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYP
ES=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/xander/Code/emoji_test/build
/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/xander
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.stri
ngs
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=xander
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.framewor
k/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/Objects-normal/x86_64/Runner_dependenc
y_info.dat
export LD_GENERATE_MAP_FILE=NO
export
LD_MAP_FILE_PATH=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.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/Pl
ugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Develo
per
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/xander/Code/emoji_test/buil
d/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export
LINK_FILE_LIST_normal_x86_64=/Users/xander/Library/Devel
oper/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfe
ml/Build/Intermediates.noindex/Runner.build/Debug-iphone
simulator/Runner.build/Objects-normal/x86_64/Runner.Link
FileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
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=18B75
export MAC_OS_X_VERSION_ACTUAL=101401
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1401
export METAL_LIBRARY_FILE_BASE=default
export
METAL_LIBRARY_OUTPUT_DIR=/Users/xander/Code/emoji_test/b
uild/ios/Debug-iphonesimulator/Runner.app
export
MODULE_CACHE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/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/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/Objects
export
OBJECT_FILE_DIR_normal=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor/Runner.build/Objects-normal
export
OBJROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediate
s.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/Toolcha
ins/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode
.app/Contents/Developer/Toolchains/XcodeDefault.xctoolch
ain/usr/local/bin:/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Ap
plications/Xcode.app/Contents/Developer/Platforms/iPhone
Simulator.platform/Developer/usr/bin:/Applications/Xcode
.app/Contents/Developer/Platforms/iPhoneSimulator.platfo
rm/Developer/usr/local/bin:/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/usr/bin
:/Applications/Xcode.app/Contents/Developer/Platforms/iP
honeSimulator.platform/usr/local/bin:/Applications/Xcode
.app/Contents/Developer/usr/bin:/Applications/Xcode.app/
Contents/Developer/usr/local/bin:/Applications/Xcode.app
/Contents/Developer/Tools:/Users/xander/Development/flut
ter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/in
clude /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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export
PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.
app/Contents/Developer/Platforms/iPhoneSimulator.platfor
m/Developer/Applications
export
PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/usr/bin
export
PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/C
ontents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupp
ort/Developer/Library
export
PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/SDKs
export
PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneSimulator.platform/Devel
oper/Tools
export
PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export
PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.emojiTest
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export
PRODUCT_SETTINGS_PATH=/Users/xander/Code/emoji_test/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/xander/Library/Developer
/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/B
uild/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/xander/Code/emoji_test/ios
export
PROJECT_FILE_PATH=/Users/xander/Code/emoji_test/ios/Runn
er.xcodeproj
export PROJECT_NAME=Runner
export
PROJECT_TEMP_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build
export
PROJECT_TEMP_ROOT=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/ResourceManagerResources
export
REZ_OBJECTS_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/ResourceManagerResources/Objects
export
REZ_SEARCH_PATHS="/Users/xander/Code/emoji_test/build/io
s/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_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jn
w3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/pipe_to
_stdout
export
SDKROOT=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Cont
ents/Developer/Platforms/iPhoneSimulator.platform/Develo
per/SDKs/iPhoneSimulator12.1.sdk
export SDK_NAME=iphonesimulator12.1
export SDK_NAMES=iphonesimulator12.1
export SDK_PRODUCT_BUILD_VERSION=16B91
export SDK_VERSION=12.1
export SDK_VERSION_ACTUAL=120100
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=100
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/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator/DerivedSources
export
SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFramework
s
export
SHARED_PRECOMPS_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/PrecompiledHeaders
export
SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/xander/Code/emoji_test/ios
export SRCROOT=/Users/xander/Code/emoji_test/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export
SYMROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/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/Conten
ts/Developer/Applications
export
SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Content
s/Developer/usr/bin
export
SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Cont
ents/Developer/Applications/Utilities/Built Examples"
export
SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/De
veloper
export
SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Conten
ts/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/Xc
ode.app/Contents/Developer/Applications/Performance
Tools"
export
SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.a
pp/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/X
code.app/Contents/Developer/ADC Reference
Library/releasenotes/DeveloperTools"
export
SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Content
s/Developer/usr
export
SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/C
ontents/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/xander/Code/emoji_test/build/ios
/Debug-iphonesimulator
export
TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulato
rPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export
TARGET_TEMP_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build
export
TEMP_DIR=/Users/xander/Library/Developer/Xcode/DerivedDa
ta/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediat
es.noindex/Runner.build/Debug-iphonesimulator/Runner.bui
ld
export
TEMP_FILES_DIR=/Users/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build
export
TEMP_FILE_DIR=/Users/xander/Library/Developer/Xcode/Deri
vedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Interm
ediates.noindex/Runner.build/Debug-iphonesimulator/Runne
r.build
export
TEMP_ROOT=/Users/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.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=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=xander
export USER_APPS_DIR=/Users/xander/Applications
export USER_LIBRARY_DIR=/Users/xander/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=xander
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/D
eveloper/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10B61
export XCODE_VERSION_ACTUAL=1010
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1010
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Script
-3B06AD1E1E4923F5004D2608.sh
Touch
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/usr/bin/touch -c
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app.xcent
CodeSign
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app
cd /Users/xander/Code/emoji_test/ios
export
CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesig
n_allocate
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app.xcent --timestamp=none
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
** BUILD SUCCEEDED **
[ +84 ms] โโCompiling, linking and signing... (completed)
[ ] Starting Xcode build... (completed)
[ +7 ms] Xcode build done. 7.2s
[ ] executing: [/Users/xander/Code/emoji_test/ios/] /usr/bin/env xcrun
xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace
Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/xander/Code/emoji_test/build/ios -sdk iphonesimulator -arch
x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutt
er_build_log_pipe.HbLk1A/pipe_to_stdout -showBuildSettings
[+1053 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug
VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/xander/Code/emoji_test/build/ios -sdk iphonesimulator -arch
x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutt
er_build_log_pipe.HbLk1A/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/xander/Code/emoji_test/build/ios
SCRIPT_OUTPUT_STREAM_FILE =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_lo
g_pipe.HbLk1A/pipe_to_stdout
SDKROOT = iphonesimulator12.1
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = xander
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/xander/Code/emoji_test/build/ios
BUILD_ROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator
CACHE_ROOT =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C/com.apple.Develo
perTools/10.1-10B61/Xcode
CCHROOT =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C/com.apple.Develo
perTools/10.1-10B61/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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator/Run
ner.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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-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.pla
tform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.pla
tform/Developer/SDKs/iPhoneOS12.1.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.1
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_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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 12.0 12.1
DERIVED_FILES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-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.platf
orm/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/XcodeDefaul
t.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH =
/Users/xander/Code/emoji_test/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_DESTINATION = __entitlements
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/xander/Code/emoji_test
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR =
/Users/xander/Development/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/xander/Development/flutter
FLUTTER_TARGET = /Users/xander/Code/emoji_test/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS =
/Users/xander/Code/emoji_test/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/xander
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = xander
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/JavaA
pplicationStub
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_depe
ndency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-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/Con
tents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/xander/Code/emoji_test/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_SUFFIX = -simulator
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 = 18B75
MAC_OS_X_VERSION_ACTUAL = 101401
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1401
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator/Run
ner.app
MODULE_CACHE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/ModuleCache.noi
ndex
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects-normal
OBJROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH =
/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/xander/
Development/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/s
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR =
/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Con
tents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/usr
PLATFORM_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.emojiTest
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH =
/Users/xander/Code/emoji_test/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Der
ivedSources
PROJECT_DIR = /Users/xander/Code/emoji_test/ios
PROJECT_FILE_PATH =
/Users/xander/Code/emoji_test/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_lo
g_pipe.HbLk1A/pipe_to_stdout
SDKROOT =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
SDK_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
SDK_DIR_iphonesimulator12_1 =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
SDK_NAME = iphonesimulator12.1
SDK_NAMES = iphonesimulator12.1
SDK_PRODUCT_BUILD_VERSION = 16B91
SDK_VERSION = 12.1
SDK_VERSION_ACTUAL = 120100
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 100
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/xander/Code/emoji_test/build/ios/Debug-iphonesimulator/Der
ivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/PrecompiledHeade
rs
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/xander/Code/emoji_test/ios
SRCROOT = /Users/xander/Code/emoji_test/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/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/Performan
ce 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/xander/Code/emoji_test/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_FILES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_FILE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_ROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex
TOOLCHAIN_DIR =
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefaul
t.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = xander
USER_APPS_DIR = /Users/xander/Applications
USER_LIBRARY_DIR = /Users/xander/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 = xander
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 = 10B61
XCODE_VERSION_ACTUAL = 1010
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1010
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +103 ms] executing: /usr/bin/xcrun simctl install
E3E507AC-9EAA-4F1B-812F-583CF0A3A181
/Users/xander/Code/emoji_test/build/ios/iphonesimulator/Runner.app
[ +638 ms] executing: /usr/bin/xcrun simctl launch
E3E507AC-9EAA-4F1B-812F-583CF0A3A181 com.example.emojiTest
--enable-dart-profiling --enable-checked-mode --observatory-port=0
[ +429 ms] com.example.emojiTest: 44546
[ ] Waiting for observatory port to be available...
[ +634 ms] [DEVICE LOG] Timestamp (process)[PID]
[ ] [DEVICE LOG] 2018-11-11 21:16:41.487237+0100 localhost
Runner[44546]: (libMobileGestalt.dylib) libMobileGestalt MobileGestalt.c:890:
MGIsDeviceOneOfType is not supported on this platform.
[ ] [DEVICE LOG] 2018-11-11 21:16:41.487283+0100 localhost
Runner[44546]: (libMobileGestalt.dylib) MGIsDeviceOneOfType is not supported on
this platform.
[ +2 ms] [DEVICE LOG] 2018-11-11 21:16:41.489662+0100 localhost
Runner[44546]: (libAccessibility.dylib)
[com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +105 ms] [DEVICE LOG] 2018-11-11 21:16:41.594175+0100 localhost
Runner[44546]: (UIKitCore) You've implemented -[<UIApplicationDelegate>
application:performFetchWithCompletionHandler:], but you still need to add
"fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ +1 ms] [DEVICE LOG] 2018-11-11 21:16:41.594344+0100 localhost
Runner[44546]: (UIKitCore) 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.
[ +69 ms] [DEVICE LOG] 2018-11-11 21:16:41.666878+0100 localhost
Runner[44546]: (Flutter) flutter: Observatory listening on
http://127.0.0.1:52757/
[ +4 ms] Observatory URL on device: http://127.0.0.1:52757/
[ +2 ms] Connecting to service protocol: http://127.0.0.1:52757/
[ +181 ms] [DEVICE LOG] 2018-11-11 21:16:41.855150+0100 localhost
Runner[44546]: (Flutter) flutter: ๐๐ฟ
[ +14 ms] flutter: ๐๐ฟ
[ +6 ms] Successfully connected to service protocol: http://127.0.0.1:52757/
[ +5 ms] getVM: {}
[ +8 ms] getIsolate: {isolateId: isolates/1066825042}
[ +9 ms] _flutter.listViews: {isolateId: isolates/1066825042}
[ +56 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: emoji_test}
[ +24 ms] DevFS: Created new filesystem on the device
(file:///Users/xander/Library/Developer/CoreSimulator/Devices/E3E507AC-9EAA-4F1B
-812F-583CF0A3A181/data/Containers/Data/Application/E8FCEEA3-7C2C-4CEE-9D08-141D
5FE6F8B8/tmp/emoji_testEaf6dA/emoji_test/)
[ +1 ms] Updating assets
[ +374 ms] Syncing files to device iPhone 8...
[ +2 ms] DevFS: Starting sync from LocalDirectory:
'/Users/xander/Code/emoji_test'
[ ] Scanning project files
[ +6 ms] Scanning package files
[ +163 ms] Scanning asset files
[ +1 ms] Scanning for deleted files
[ +10 ms] Compiling dart to kernel with 440 updated files
[ +9 ms] /Users/xander/Development/flutter/bin/cache/dart-sdk/bin/dart
/Users/xander/Development/flutter/bin/cache/artifacts/engine/darwin-x64/frontend
_server.dart.snapshot --sdk-root
/Users/xander/Development/flutter/bin/cache/artifacts/engine/common/flutter_patc
hed_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill
--packages /Users/xander/Code/emoji_test/.packages --filesystem-scheme
org-dartlang-root
[+1590 ms] Updating files
[ +73 ms] DevFS: Sync finished
[ ] Syncing files to device iPhone 8... (completed)
[ ] Synced 0.8MB.
[ +1 ms] _flutter.listViews: {isolateId: isolates/1066825042}
[ +6 ms] Connected to _flutterView/0x7faa7dc150a8.
[ +1 ms] ๐ฅ To hot reload changes while running, press "r". To hot restart
(and rebuild
state), press "R".
[ ] An Observatory debugger and profiler on iPhone 8 is available at:
http://127.0.0.1:52757/
[ ] For a more detailed help message, press "h". To detach, press "d"; to
quit,
press "q"."><pre class="notranslate"><code class="notranslate">[ +26 ms] executing: [/Users/xander/Development/flutter/] git rev-parse
--abbrev-ref --symbolic @{u}
[ +34 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/xander/Development/flutter/] git rev-parse
--abbrev-ref HEAD
[ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] executing: [/Users/xander/Development/flutter/] git ls-remote
--get-url origin
[ +12 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/xander/Development/flutter/] git log -n 1
--pretty=format:%H
[ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] d8cbb80206db06d151206f8b599b7dde5a386a2d
[ ] executing: [/Users/xander/Development/flutter/] git log -n 1
--pretty=format:%ar
[ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 weeks ago
[ ] executing: [/Users/xander/Development/flutter/] git describe --match
v*.*.* --first-parent --long --tags
[ +37 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long
--tags
[ ] v0.10.2-0-gd8cbb8020
[ +253 ms] executing: /Users/xander/Library/Android/sdk/platform-tools/adb
devices -l
[ +7 ms] Exit code 0 from:
/Users/xander/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +4 ms] executing: idevice_id -h
[ +31 ms] /usr/bin/xcrun simctl list --json devices
[+1233 ms] Launching lib/main.dart on iPhone 8 in debug mode...
[ +20 ms] executing: /usr/bin/defaults read
/Users/xander/Code/emoji_test/ios/Runner/Info CFBundleIdentifier
[ +63 ms] Exit code 0 from: /usr/bin/defaults read
/Users/xander/Code/emoji_test/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ +15 ms] Building Runner.app for E3E507AC-9EAA-4F1B-812F-583CF0A3A181.
[ +9 ms] executing: script /dev/null /usr/bin/log stream --style syslog
--predicate processImagePath CONTAINS "E3E507AC-9EAA-4F1B-812F-583CF0A3A181"
[ +45 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS
"E3E507AC-9EAA-4F1B-812F-583CF0A3A181""
[ +154 ms] Skipping kernel compilation. Fingerprint match.
[ +251 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +49 ms] Wrote build/flutter_assets
[ +9 ms] Using legacy Xcode build system.
[ +17 ms] executing: [/Users/xander/Code/emoji_test/ios/] /usr/bin/xcodebuild
-list
[+1488 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed
then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to
'/Users/xander/Code/emoji_test/ios/Frameworks'.
[ ] Creating service definitions manifest at
'/Users/xander/Code/emoji_test/ios/ServiceDefinitions.json'
[ +31 ms] executing: mkfifo
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/p
ipe_to_stdout
[ +6 ms] Exit code 0 from: mkfifo
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/p
ipe_to_stdout
[ +2 ms] Starting Xcode build...
[ +1 ms] executing: [/Users/xander/Code/emoji_test/ios/] /usr/bin/env xcrun
xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace
Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/xander/Code/emoji_test/build/ios -sdk iphonesimulator -arch
x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutt
er_build_log_pipe.HbLk1A/pipe_to_stdout
[+1180 ms] Starting Xcode build... (completed)
[ +1 ms] โโAssembling Flutter resources...
[+1804 ms] โโAssembling Flutter resources... (completed)
[ ] Starting Xcode build... (completed)
[ ] โโCompiling, linking and signing...
[+4169 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/xander/Code/emoji_test/build/ios
SCRIPT_OUTPUT_STREAM_FILE =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter
_build_log_pipe.HbLk1A/pipe_to_stdout
SDKROOT = iphonesimulator12.1
VERBOSE_SCRIPT_LOGGING = YES
Prepare build
note: Using legacy build system
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION
Debug ===
Check dependencies
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulat
ed.xcent
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"application-identifier" =
"WQQJFXGF34.com.example.emojiTest";
"keychain-access-groups" = (
"WQQJFXGF34.com.example.emojiTest"
);
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app-Simulated.xcent
PhaseScriptExecution Run\ Script
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF
901F6004384FC.sh
cd /Users/xander/Code/emoji_test/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=xander
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/Document
ation
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/xander/Code/emoji_test/build/ios
export
BUILD_ROOT=/Users/xander/Library/Developer/Xcode/Derived
Data/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export
BUILT_PRODUCTS_DIR=/Users/xander/Code/emoji_test/build/i
os/Debug-iphonesimulator
export
CACHE_ROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000g
n/C/com.apple.DeveloperTools/10.1-10B61/Xcode
export
CCHROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C
/com.apple.DeveloperTools/10.1-10B61/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/xander/Library/D
eveloper/Xcode/DerivedData/ModuleCache.noindex/Session.m
odulevalidation
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/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export
CODESIGNING_FOLDER_PATH=/Users/xander/Code/emoji_test/bu
ild/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/xander/Library/Developer/Xcode
/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/I
ntermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export
CONFIGURATION_BUILD_DIR=/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
export
CONFIGURATION_TEMP_DIR=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor
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.ap
p/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export
CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneOS.platform/Developer/SD
Ks/iPhoneOS12.1.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
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_TAR
GET
export
DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version
-min
export
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-vers
ion-min=
export
DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export
DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export
DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGE
T
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 12.0 12.1"
export
DERIVED_FILES_DIR=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/DerivedSources
export
DERIVED_FILE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.build/DerivedSources
export
DERIVED_SOURCES_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/Runner.build/Debug-iphonesimulator
/Runner.build/DerivedSources
export
DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Conte
nts/Developer/Applications
export
DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr/bin
export
DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export
DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Content
s/Developer/Library/Frameworks
export
DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/
Contents/Developer/Library/Frameworks
export
DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/D
eveloper/Library
export
DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Devel
oper/Platforms/MacOSX.platform/Developer/SDKs
export
DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Dev
eloper/Tools
export
DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr
export DEVELOPMENT_LANGUAGE=English
export
DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Docum
entation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export
DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Develo
per/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/xander/Code/emoji_test/bui
ld/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_DESTINATION=__entitlements
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/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.noindex/Runner.build/Debug-iphonesimulator/Runner.bu
ild/Objects/LinkFileList
export
FIXED_FILES_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/FixedFiles
export
FLUTTER_APPLICATION_PATH=/Users/xander/Code/emoji_test
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_BUILD_NAME=1.0.0
export FLUTTER_BUILD_NUMBER=1
export
FLUTTER_FRAMEWORK_DIR=/Users/xander/Development/flutter/
bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/xander/Development/flutter
export
FLUTTER_TARGET=/Users/xander/Code/emoji_test/lib/main.da
rt
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export
FRAMEWORK_SEARCH_PATHS="/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++
objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export
GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_
0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=Y
ES
export
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYP
ES=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/xander/Code/emoji_test/build
/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/xander
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.stri
ngs
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=xander
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.framewor
k/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/Objects-normal/x86_64/Runner_dependenc
y_info.dat
export LD_GENERATE_MAP_FILE=NO
export
LD_MAP_FILE_PATH=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.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/Pl
ugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Develo
per
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/xander/Code/emoji_test/buil
d/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export
LINK_FILE_LIST_normal_x86_64=/Users/xander/Library/Devel
oper/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfe
ml/Build/Intermediates.noindex/Runner.build/Debug-iphone
simulator/Runner.build/Objects-normal/x86_64/Runner.Link
FileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
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=18B75
export MAC_OS_X_VERSION_ACTUAL=101401
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1401
export METAL_LIBRARY_FILE_BASE=default
export
METAL_LIBRARY_OUTPUT_DIR=/Users/xander/Code/emoji_test/b
uild/ios/Debug-iphonesimulator/Runner.app
export
MODULE_CACHE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/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/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/Objects
export
OBJECT_FILE_DIR_normal=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor/Runner.build/Objects-normal
export
OBJROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediate
s.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/Toolcha
ins/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode
.app/Contents/Developer/Toolchains/XcodeDefault.xctoolch
ain/usr/local/bin:/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Ap
plications/Xcode.app/Contents/Developer/Platforms/iPhone
Simulator.platform/Developer/usr/bin:/Applications/Xcode
.app/Contents/Developer/Platforms/iPhoneSimulator.platfo
rm/Developer/usr/local/bin:/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/usr/bin
:/Applications/Xcode.app/Contents/Developer/Platforms/iP
honeSimulator.platform/usr/local/bin:/Applications/Xcode
.app/Contents/Developer/usr/bin:/Applications/Xcode.app/
Contents/Developer/usr/local/bin:/Applications/Xcode.app
/Contents/Developer/Tools:/Users/xander/Development/flut
ter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/in
clude /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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export
PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.
app/Contents/Developer/Platforms/iPhoneSimulator.platfor
m/Developer/Applications
export
PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/usr/bin
export
PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/C
ontents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupp
ort/Developer/Library
export
PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/SDKs
export
PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneSimulator.platform/Devel
oper/Tools
export
PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export
PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.emojiTest
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export
PRODUCT_SETTINGS_PATH=/Users/xander/Code/emoji_test/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/xander/Library/Developer
/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/B
uild/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/xander/Code/emoji_test/ios
export
PROJECT_FILE_PATH=/Users/xander/Code/emoji_test/ios/Runn
er.xcodeproj
export PROJECT_NAME=Runner
export
PROJECT_TEMP_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build
export
PROJECT_TEMP_ROOT=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/ResourceManagerResources
export
REZ_OBJECTS_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/ResourceManagerResources/Objects
export
REZ_SEARCH_PATHS="/Users/xander/Code/emoji_test/build/io
s/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_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jn
w3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/pipe_to
_stdout
export
SDKROOT=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Cont
ents/Developer/Platforms/iPhoneSimulator.platform/Develo
per/SDKs/iPhoneSimulator12.1.sdk
export SDK_NAME=iphonesimulator12.1
export SDK_NAMES=iphonesimulator12.1
export SDK_PRODUCT_BUILD_VERSION=16B91
export SDK_VERSION=12.1
export SDK_VERSION_ACTUAL=120100
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=100
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/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator/DerivedSources
export
SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFramework
s
export
SHARED_PRECOMPS_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/PrecompiledHeaders
export
SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/xander/Code/emoji_test/ios
export SRCROOT=/Users/xander/Code/emoji_test/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export
SYMROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/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/Conten
ts/Developer/Applications
export
SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Content
s/Developer/usr/bin
export
SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Cont
ents/Developer/Applications/Utilities/Built Examples"
export
SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/De
veloper
export
SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Conten
ts/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/Xc
ode.app/Contents/Developer/Applications/Performance
Tools"
export
SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.a
pp/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/X
code.app/Contents/Developer/ADC Reference
Library/releasenotes/DeveloperTools"
export
SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Content
s/Developer/usr
export
SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/C
ontents/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/xander/Code/emoji_test/build/ios
/Debug-iphonesimulator
export
TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulato
rPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export
TARGET_TEMP_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build
export
TEMP_DIR=/Users/xander/Library/Developer/Xcode/DerivedDa
ta/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediat
es.noindex/Runner.build/Debug-iphonesimulator/Runner.bui
ld
export
TEMP_FILES_DIR=/Users/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build
export
TEMP_FILE_DIR=/Users/xander/Library/Developer/Xcode/Deri
vedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Interm
ediates.noindex/Runner.build/Debug-iphonesimulator/Runne
r.build
export
TEMP_ROOT=/Users/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.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=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=xander
export USER_APPS_DIR=/Users/xander/Applications
export USER_LIBRARY_DIR=/Users/xander/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=xander
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/D
eveloper/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10B61
export XCODE_VERSION_ACTUAL=1010
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1010
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Script
-9740EEB61CF901F6004384FC.sh
โฆ mkdir -p -- /Users/xander/Code/emoji_test/ios/Flutter
โฆ rm -rf --
/Users/xander/Code/emoji_test/ios/Flutter/App.framework
โฆ rm -rf --
/Users/xander/Code/emoji_test/ios/Flutter/Flutter.framework
โฆ cp -r --
/Users/xander/Development/flutter/bin/cache/artifacts/engine
/ios/Flutter.framework
/Users/xander/Code/emoji_test/ios/Flutter
โฆ find
/Users/xander/Code/emoji_test/ios/Flutter/Flutter.framework
-type f -exec chmod a-w {} ;
โฆ mkdir -p --
/Users/xander/Code/emoji_test/ios/Flutter/App.framework
โฆ eval
โฆ cp --
/Users/xander/Code/emoji_test/ios/Flutter/AppFrameworkInfo.p
list
/Users/xander/Code/emoji_test/ios/Flutter/App.framework/Info
.plist
โฆ /Users/xander/Development/flutter/bin/flutter
--suppress-analytics --verbose build bundle
--target-platform=ios
--target=/Users/xander/Code/emoji_test/lib/main.dart --debug
--depfile=build/snapshot_blob.bin.d
--asset-dir=/Users/xander/Code/emoji_test/ios/Flutter/flutte
r_assets
[ +12 ms] executing: [/Users/xander/Development/flutter/]
git rev-parse --abbrev-ref --symbolic @{u}
[ +45 ms] Exit code 0 from: git rev-parse --abbrev-ref
--symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/xander/Development/flutter/]
git rev-parse --abbrev-ref HEAD
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] executing: [/Users/xander/Development/flutter/]
git ls-remote --get-url origin
[ +8 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/xander/Development/flutter/]
git log -n 1 --pretty=format:%H
[ +8 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] d8cbb80206db06d151206f8b599b7dde5a386a2d
[ ] executing: [/Users/xander/Development/flutter/]
git log -n 1 --pretty=format:%ar
[ +12 ms] Exit code 0 from: git log -n 1
--pretty=format:%ar
[ ] 2 weeks ago
[ +1 ms] executing: [/Users/xander/Development/flutter/]
git describe --match v*.*.* --first-parent --long --tags
[ +21 ms] Exit code 0 from: git describe --match v*.*.*
--first-parent --long --tags
[ ] v0.10.2-0-gd8cbb8020
[ +896 ms] Skipping kernel compilation. Fingerprint match.
[ +167 ms] Building bundle
[ ] Writing asset files to
/Users/xander/Code/emoji_test/ios/Flutter/flutter_assets
[ +90 ms] Wrote
/Users/xander/Code/emoji_test/ios/Flutter/flutter_assets
[ +9 ms] "flutter bundle" took 1,019ms.
Project /Users/xander/Code/emoji_test built and packaged
successfully.
CompileC
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86
_64/AppDelegate.o Runner/AppDelegate.m normal x86_64
objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/xander/Code/emoji_test/ios
export LANG=en_US.US-ASCII
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.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/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400
-fmodules-prune-after=345600
-fbuild-session-file=/Users/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex/Session.modulevalidat
ion -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
-Wno-objc-interface-ivars -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/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.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
-Wno-semicolon-before-method-body -fobjc-abi-version=2
-fobjc-legacy-dispatch -index-store-path
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Index/DataStore -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-generated-files.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-own-target-headers.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-all-target-headers.hmap -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-project-headers.hmap
-I/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator/include
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources/x86_64
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter -MMD
-MT dependencies -MF
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/AppDelegate.d --serialize-diagnostics
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/AppDelegate.dia -c
/Users/xander/Code/emoji_test/ios/Runner/AppDelegate.m
-o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/AppDelegate.o
CompileC
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86
_64/main.o Runner/main.m normal x86_64 objective-c
com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/xander/Code/emoji_test/ios
export LANG=en_US.US-ASCII
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.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/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400
-fmodules-prune-after=345600
-fbuild-session-file=/Users/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex/Session.modulevalidat
ion -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
-Wno-objc-interface-ivars -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/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.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
-Wno-semicolon-before-method-body -fobjc-abi-version=2
-fobjc-legacy-dispatch -index-store-path
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Index/DataStore -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-generated-files.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-own-target-headers.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-all-target-headers.hmap -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-project-headers.hmap
-I/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator/include
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources/x86_64
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter -MMD
-MT dependencies -MF
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/main.d --serialize-diagnostics
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/main.dia -c
/Users/xander/Code/emoji_test/ios/Runner/main.m -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/main.o
CompileC
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/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/xander/Code/emoji_test/ios
export LANG=en_US.US-ASCII
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.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/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex
-fmodules-prune-interval=86400
-fmodules-prune-after=345600
-fbuild-session-file=/Users/xander/Library/Developer/Xco
de/DerivedData/ModuleCache.noindex/Session.modulevalidat
ion -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
-Wno-objc-interface-ivars -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/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.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
-Wno-semicolon-before-method-body -fobjc-abi-version=2
-fobjc-legacy-dispatch -index-store-path
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Index/DataStore -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-generated-files.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-own-target-headers.hmap
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Runn
er-all-target-headers.hmap -iquote
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
-project-headers.hmap
-I/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator/include
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources/x86_64
-I/Users/xander/Library/Developer/Xcode/DerivedData/Runn
er-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noin
dex/Runner.build/Debug-iphonesimulator/Runner.build/Deri
vedSources
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter -MMD
-MT dependencies -MF
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/GeneratedPluginRegistrant.d
--serialize-diagnostics
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/GeneratedPluginRegistrant.dia -c
/Users/xander/Code/emoji_test/ios/Runner/GeneratedPlugin
Registrant.m -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/GeneratedPluginRegistrant.o
Ld
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Runner normal x86_64
cd /Users/xander/Code/emoji_test/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/Xc
odeDefault.xctoolchain/usr/bin/clang -arch x86_64
-isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPh
oneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1
.sdk
-L/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -L/Users/xander/Code/emoji_test/ios/Flutter
-F/Users/xander/Code/emoji_test/build/ios/Debug-iphonesi
mulator -F/Users/xander/Code/emoji_test/ios/Flutter
-filelist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-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/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic
-Xlinker -no_deduplicate -Xlinker -objc_abi_version
-Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker
-sectcreate -Xlinker __TEXT -Xlinker __entitlements
-Xlinker
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app-Simulated.xcent -framework Flutter -framework App
-Xlinker -dependency_info -Xlinker
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Object
s-normal/x86_64/Runner_dependency_info.dat -o
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Runner
CopyPlistFile
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppFrameworkInfo.plist
Flutter/AppFrameworkInfo.plist
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-copyPlist --convert binary1 --outdir
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app -- Flutter/AppFrameworkInfo.plist
CpResource Flutter/Debug.xcconfig
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Debug.xcconfig
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude
.svn -exclude .git -exclude .hg -resolve-src-symlinks
/Users/xander/Code/emoji_test/ios/Flutter/Debug.xcconfig
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
CpResource Flutter/flutter_assets
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/flutter_assets
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-copy -exclude .DS_Store -exclude CVS -exclude
.svn -exclude .git -exclude .hg -resolve-src-symlinks
/Users/xander/Code/emoji_test/ios/Flutter/flutter_assets
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
CompileStoryboard Runner/Base.lproj/LaunchScreen.storyboard
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
export
XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Content
s/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtoo
l --errors --warnings --notices --module Runner
--output-partial-info-plist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/LaunchScreen-SBPartialInfo.plist
--auto-activate-custom-fonts --target-device iphone
--target-device ipad --minimum-deployment-target 8.0
--output-format human-readable-text
--compilation-directory
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj
/Users/xander/Code/emoji_test/ios/Runner/Base.lproj/Laun
chScreen.storyboard
CompileStoryboard Runner/Base.lproj/Main.storyboard
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
export
XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Content
s/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtoo
l --errors --warnings --notices --module Runner
--output-partial-info-plist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/Main-SBPartialInfo.plist
--auto-activate-custom-fonts --target-device iphone
--target-device ipad --minimum-deployment-target 8.0
--output-format human-readable-text
--compilation-directory
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj
/Users/xander/Code/emoji_test/ios/Runner/Base.lproj/Main
.storyboard
CompileAssetCatalog
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app Runner/Assets.xcassets
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/usr/bin/actoo
l --output-format human-readable-text --notices
--warnings --export-dependency-info
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/assetc
atalog_dependencies --output-partial-info-plist
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/assetc
atalog_generated_info.plist --app-icon AppIcon
--compress-pngs --enable-on-demand-resources YES
--sticker-pack-identifier-prefix
com.example.emojiTest.sticker-pack. --target-device
iphone --target-device ipad --minimum-deployment-target
8.0 --platform iphonesimulator --product-type
com.apple.product-type.application --compile
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
/Users/xander/Code/emoji_test/ios/Runner/Assets.xcassets
/* com.apple.actool.compilation-results */
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon29x29.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/[email protected]
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon20x20~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon20x20@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon29x29~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon29x29@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon40x40~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon40x40@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon76x76~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon76x76@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/AppIcon83.5x83.5@2x~ipad.png
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Assets.car
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/assetcatalog_gener
ated_info.plist
ProcessInfoPlistFile
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Info.plist Runner/Info.plist
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
builtin-infoPlistUtility
/Users/xander/Code/emoji_test/ios/Runner/Info.plist
-genpkginfo
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/PkgInfo -expandbuildsettings -format
binary -platform iphonesimulator -additionalcontentfile
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/assetc
atalog_generated_info.plist -additionalcontentfile
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/LaunchScreen-SBPartialInfo.plist
-additionalcontentfile
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/Main-SBPartialInfo.plist -o
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Info.plist
LinkStoryboards
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
export
XCODE_DEVELOPER_USR_PATH=/Applications/Xcode.app/Content
s/Developer/usr/bin/..
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtoo
l --errors --warnings --notices --module Runner
--target-device iphone --target-device ipad
--minimum-deployment-target 8.0 --output-format
human-readable-text --link
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/LaunchScreen.storyboardc
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Base.l
proj/Main.storyboardc
PBXCp Flutter/App.framework
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/App.framework
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
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/xander/Code/emoji_test/ios/Flutter/App.framework
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/Flutter.framework
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
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/xander/Code/emoji_test/ios/Flutter/Flutter.framew
ork
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/App.framework.xcen
t
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/App.fr
amework.xcent
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Flutter.framework.
xcent
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Flutte
r.framework.xcent
CodeSign
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/Flutter.framework
cd /Users/xander/Code/emoji_test/ios
export
CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesig
n_allocate
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Signing Identity: "-"
/usr/bin/codesign --force --sign -
--preserve-metadata=identifier,entitlements,flags
--timestamp=none
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks/Flutter.framework
CodeSign
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app/Frameworks/App.framework
cd /Users/xander/Code/emoji_test/ios
export
CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesig
n_allocate
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Signing Identity: "-"
/usr/bin/codesign --force --sign -
--preserve-metadata=identifier,entitlements,flags
--timestamp=none
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4
923F5004D2608.sh
cd /Users/xander/Code/emoji_test/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=xander
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/Document
ation
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/xander/Code/emoji_test/build/ios
export
BUILD_ROOT=/Users/xander/Library/Developer/Xcode/Derived
Data/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export
BUILT_PRODUCTS_DIR=/Users/xander/Code/emoji_test/build/i
os/Debug-iphonesimulator
export
CACHE_ROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000g
n/C/com.apple.DeveloperTools/10.1-10B61/Xcode
export
CCHROOT=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C
/com.apple.DeveloperTools/10.1-10B61/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/xander/Library/D
eveloper/Xcode/DerivedData/ModuleCache.noindex/Session.m
odulevalidation
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/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export
CODESIGNING_FOLDER_PATH=/Users/xander/Code/emoji_test/bu
ild/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/xander/Library/Developer/Xcode
/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/I
ntermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export
CONFIGURATION_BUILD_DIR=/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
export
CONFIGURATION_TEMP_DIR=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor
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.ap
p/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export
CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneOS.platform/Developer/SD
Ks/iPhoneOS12.1.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.1
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_TAR
GET
export
DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version
-min
export
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-vers
ion-min=
export
DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export
DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export
DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGE
T
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 12.0 12.1"
export
DERIVED_FILES_DIR=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/DerivedSources
export
DERIVED_FILE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.build/DerivedSources
export
DERIVED_SOURCES_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/Runner.build/Debug-iphonesimulator
/Runner.build/DerivedSources
export
DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Conte
nts/Developer/Applications
export
DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr/bin
export
DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export
DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Content
s/Developer/Library/Frameworks
export
DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/
Contents/Developer/Library/Frameworks
export
DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/D
eveloper/Library
export
DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Devel
oper/Platforms/MacOSX.platform/Developer/SDKs
export
DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Dev
eloper/Tools
export
DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Devel
oper/usr
export DEVELOPMENT_LANGUAGE=English
export
DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Docum
entation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export
DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Develo
per/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/xander/Code/emoji_test/bui
ld/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_DESTINATION=__entitlements
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/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.noindex/Runner.build/Debug-iphonesimulator/Runner.bu
ild/Objects/LinkFileList
export
FIXED_FILES_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/FixedFiles
export
FLUTTER_APPLICATION_PATH=/Users/xander/Code/emoji_test
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_BUILD_NAME=1.0.0
export FLUTTER_BUILD_NUMBER=1
export
FLUTTER_FRAMEWORK_DIR=/Users/xander/Development/flutter/
bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/xander/Development/flutter
export
FLUTTER_TARGET=/Users/xander/Code/emoji_test/lib/main.da
rt
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export
FRAMEWORK_SEARCH_PATHS="/Users/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++
objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export
GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_
0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=Y
ES
export
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYP
ES=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/xander/Code/emoji_test/build
/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/xander
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.stri
ngs
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=xander
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.framewor
k/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/Objects-normal/x86_64/Runner_dependenc
y_info.dat
export LD_GENERATE_MAP_FILE=NO
export
LD_MAP_FILE_PATH=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build/Debug-iphonesimulator/Ru
nner.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/Pl
ugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Develo
per
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/xander/Code/emoji_test/buil
d/ios/Debug-iphonesimulator
/Users/xander/Code/emoji_test/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export
LINK_FILE_LIST_normal_x86_64=/Users/xander/Library/Devel
oper/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfe
ml/Build/Intermediates.noindex/Runner.build/Debug-iphone
simulator/Runner.build/Objects-normal/x86_64/Runner.Link
FileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
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=18B75
export MAC_OS_X_VERSION_ACTUAL=101401
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1401
export METAL_LIBRARY_FILE_BASE=default
export
METAL_LIBRARY_OUTPUT_DIR=/Users/xander/Code/emoji_test/b
uild/ios/Debug-iphonesimulator/Runner.app
export
MODULE_CACHE_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/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/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/Objects
export
OBJECT_FILE_DIR_normal=/Users/xander/Library/Developer/X
code/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bui
ld/Intermediates.noindex/Runner.build/Debug-iphonesimula
tor/Runner.build/Objects-normal
export
OBJROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediate
s.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/Toolcha
ins/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode
.app/Contents/Developer/Toolchains/XcodeDefault.xctoolch
ain/usr/local/bin:/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Ap
plications/Xcode.app/Contents/Developer/Platforms/iPhone
Simulator.platform/Developer/usr/bin:/Applications/Xcode
.app/Contents/Developer/Platforms/iPhoneSimulator.platfo
rm/Developer/usr/local/bin:/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/usr/bin
:/Applications/Xcode.app/Contents/Developer/Platforms/iP
honeSimulator.platform/usr/local/bin:/Applications/Xcode
.app/Contents/Developer/usr/bin:/Applications/Xcode.app/
Contents/Developer/usr/local/bin:/Applications/Xcode.app
/Contents/Developer/Tools:/Users/xander/Development/flut
ter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/in
clude /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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export
PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.
app/Contents/Developer/Platforms/iPhoneSimulator.platfor
m/Developer/Applications
export
PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/usr/bin
export
PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/C
ontents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupp
ort/Developer/Library
export
PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/SDKs
export
PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Con
tents/Developer/Platforms/iPhoneSimulator.platform/Devel
oper/Tools
export
PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Conte
nts/Developer/Platforms/iPhoneSimulator.platform/Develop
er/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/xander/Library/Developer/
Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Bu
ild/Intermediates.noindex/Runner.build/Debug-iphonesimul
ator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export
PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.emojiTest
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export
PRODUCT_SETTINGS_PATH=/Users/xander/Code/emoji_test/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/xander/Library/Developer
/Xcode/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/B
uild/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/xander/Code/emoji_test/ios
export
PROJECT_FILE_PATH=/Users/xander/Code/emoji_test/ios/Runn
er.xcodeproj
export PROJECT_NAME=Runner
export
PROJECT_TEMP_DIR=/Users/xander/Library/Developer/Xcode/D
erivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Int
ermediates.noindex/Runner.build
export
PROJECT_TEMP_ROOT=/Users/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.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/xander/Library/Developer/Xcode/
DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/In
termediates.noindex/Runner.build/Debug-iphonesimulator/R
unner.build/ResourceManagerResources
export
REZ_OBJECTS_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build/ResourceManagerResources/Objects
export
REZ_SEARCH_PATHS="/Users/xander/Code/emoji_test/build/io
s/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_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jn
w3krgdvygr0000gn/T/flutter_build_log_pipe.HbLk1A/pipe_to
_stdout
export
SDKROOT=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platf
orms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimul
ator12.1.sdk
export
SDK_DIR_iphonesimulator12_1=/Applications/Xcode.app/Cont
ents/Developer/Platforms/iPhoneSimulator.platform/Develo
per/SDKs/iPhoneSimulator12.1.sdk
export SDK_NAME=iphonesimulator12.1
export SDK_NAMES=iphonesimulator12.1
export SDK_PRODUCT_BUILD_VERSION=16B91
export SDK_VERSION=12.1
export SDK_VERSION_ACTUAL=120100
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=100
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/xander/Code/emoji_test/bu
ild/ios/Debug-iphonesimulator/DerivedSources
export
SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFramework
s
export
SHARED_PRECOMPS_DIR=/Users/xander/Library/Developer/Xcod
e/DerivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/
Intermediates.noindex/PrecompiledHeaders
export
SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/xander/Code/emoji_test/ios
export SRCROOT=/Users/xander/Code/emoji_test/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export
SYMROOT=/Users/xander/Library/Developer/Xcode/DerivedDat
a/Runner-dvgunftxdsqlakdvbweltifgfeml/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/Conten
ts/Developer/Applications
export
SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Content
s/Developer/usr/bin
export
SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Cont
ents/Developer/Applications/Utilities/Built Examples"
export
SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/De
veloper
export
SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Conten
ts/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/Xc
ode.app/Contents/Developer/Applications/Performance
Tools"
export
SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.a
pp/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/X
code.app/Contents/Developer/ADC Reference
Library/releasenotes/DeveloperTools"
export
SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Content
s/Developer/usr
export
SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/C
ontents/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/xander/Code/emoji_test/build/ios
/Debug-iphonesimulator
export
TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulato
rPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export
TARGET_TEMP_DIR=/Users/xander/Library/Developer/Xcode/De
rivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inte
rmediates.noindex/Runner.build/Debug-iphonesimulator/Run
ner.build
export
TEMP_DIR=/Users/xander/Library/Developer/Xcode/DerivedDa
ta/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediat
es.noindex/Runner.build/Debug-iphonesimulator/Runner.bui
ld
export
TEMP_FILES_DIR=/Users/xander/Library/Developer/Xcode/Der
ivedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Inter
mediates.noindex/Runner.build/Debug-iphonesimulator/Runn
er.build
export
TEMP_FILE_DIR=/Users/xander/Library/Developer/Xcode/Deri
vedData/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Interm
ediates.noindex/Runner.build/Debug-iphonesimulator/Runne
r.build
export
TEMP_ROOT=/Users/xander/Library/Developer/Xcode/DerivedD
ata/Runner-dvgunftxdsqlakdvbweltifgfeml/Build/Intermedia
tes.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=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=xander
export USER_APPS_DIR=/Users/xander/Applications
export USER_LIBRARY_DIR=/Users/xander/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=xander
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/D
eveloper/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10B61
export XCODE_VERSION_ACTUAL=1010
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1010
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Script
-3B06AD1E1E4923F5004D2608.sh
Touch
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
/usr/bin/touch -c
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
ProcessProductPackaging ""
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvg
unftxdsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner
.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
cd /Users/xander/Code/emoji_test/ios
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format
xml -o
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app.xcent
CodeSign
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulato
r/Runner.app
cd /Users/xander/Code/emoji_test/ios
export
CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Devel
oper/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesig
n_allocate
export
PATH="/Applications/Xcode.app/Contents/Developer/Platfor
ms/iPhoneSimulator.platform/Developer/usr/bin:/Applicati
ons/Xcode.app/Contents/Developer/usr/bin:/Users/xander/D
evelopment/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr
/sbin:/sbin"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements
/Users/xander/Library/Developer/Xcode/DerivedData/Runner
-dvgunftxdsqlakdvbweltifgfeml/Build/Intermediates.noinde
x/Runner.build/Debug-iphonesimulator/Runner.build/Runner
.app.xcent --timestamp=none
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimu
lator/Runner.app
** BUILD SUCCEEDED **
[ +84 ms] โโCompiling, linking and signing... (completed)
[ ] Starting Xcode build... (completed)
[ +7 ms] Xcode build done. 7.2s
[ ] executing: [/Users/xander/Code/emoji_test/ios/] /usr/bin/env xcrun
xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace
Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/xander/Code/emoji_test/build/ios -sdk iphonesimulator -arch
x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutt
er_build_log_pipe.HbLk1A/pipe_to_stdout -showBuildSettings
[+1053 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug
VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner
BUILD_DIR=/Users/xander/Code/emoji_test/build/ios -sdk iphonesimulator -arch
x86_64
SCRIPT_OUTPUT_STREAM_FILE=/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutt
er_build_log_pipe.HbLk1A/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/xander/Code/emoji_test/build/ios
SCRIPT_OUTPUT_STREAM_FILE =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_lo
g_pipe.HbLk1A/pipe_to_stdout
SDKROOT = iphonesimulator12.1
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = xander
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/xander/Code/emoji_test/build/ios
BUILD_ROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator
CACHE_ROOT =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C/com.apple.Develo
perTools/10.1-10B61/Xcode
CCHROOT =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/C/com.apple.Develo
perTools/10.1-10B61/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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator/Run
ner.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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-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.pla
tform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.pla
tform/Developer/SDKs/iPhoneOS12.1.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.1
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_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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 12.0 12.1
DERIVED_FILES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-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.platf
orm/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/XcodeDefaul
t.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH =
/Users/xander/Code/emoji_test/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_DESTINATION = __entitlements
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/xander/Code/emoji_test
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR =
/Users/xander/Development/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/xander/Development/flutter
FLUTTER_TARGET = /Users/xander/Code/emoji_test/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS =
/Users/xander/Code/emoji_test/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/xander
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = xander
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/JavaA
pplicationStub
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_depe
ndency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-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/Con
tents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/xander/Code/emoji_test/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_SUFFIX = -simulator
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 = 18B75
MAC_OS_X_VERSION_ACTUAL = 101401
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1401
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR =
/Users/xander/Code/emoji_test/build/ios/Debug-iphonesimulator/Run
ner.app
MODULE_CACHE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/ModuleCache.noi
ndex
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/Objects-normal
OBJROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH =
/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/xander/
Development/flutter/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/s
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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR =
/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Con
tents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/usr
PLATFORM_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.emojiTest
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH =
/Users/xander/Code/emoji_test/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Der
ivedSources
PROJECT_DIR = /Users/xander/Code/emoji_test/ios
PROJECT_FILE_PATH =
/Users/xander/Code/emoji_test/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/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/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE =
/var/folders/5h/zp6q82hn5sl6jnw3krgdvygr0000gn/T/flutter_build_lo
g_pipe.HbLk1A/pipe_to_stdout
SDKROOT =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
SDK_DIR =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
SDK_DIR_iphonesimulator12_1 =
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimula
tor.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
SDK_NAME = iphonesimulator12.1
SDK_NAMES = iphonesimulator12.1
SDK_PRODUCT_BUILD_VERSION = 16B91
SDK_VERSION = 12.1
SDK_VERSION_ACTUAL = 120100
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 100
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/xander/Code/emoji_test/build/ios/Debug-iphonesimulator/Der
ivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/PrecompiledHeade
rs
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/xander/Code/emoji_test/ios
SRCROOT = /Users/xander/Code/emoji_test/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/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/Performan
ce 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/xander/Code/emoji_test/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_FILES_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_FILE_DIR =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex/Runner.build/Deb
ug-iphonesimulator/Runner.build
TEMP_ROOT =
/Users/xander/Library/Developer/Xcode/DerivedData/Runner-dvgunftx
dsqlakdvbweltifgfeml/Build/Intermediates.noindex
TOOLCHAIN_DIR =
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefaul
t.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = xander
USER_APPS_DIR = /Users/xander/Applications
USER_LIBRARY_DIR = /Users/xander/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 = xander
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 = 10B61
XCODE_VERSION_ACTUAL = 1010
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1010
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +103 ms] executing: /usr/bin/xcrun simctl install
E3E507AC-9EAA-4F1B-812F-583CF0A3A181
/Users/xander/Code/emoji_test/build/ios/iphonesimulator/Runner.app
[ +638 ms] executing: /usr/bin/xcrun simctl launch
E3E507AC-9EAA-4F1B-812F-583CF0A3A181 com.example.emojiTest
--enable-dart-profiling --enable-checked-mode --observatory-port=0
[ +429 ms] com.example.emojiTest: 44546
[ ] Waiting for observatory port to be available...
[ +634 ms] [DEVICE LOG] Timestamp (process)[PID]
[ ] [DEVICE LOG] 2018-11-11 21:16:41.487237+0100 localhost
Runner[44546]: (libMobileGestalt.dylib) libMobileGestalt MobileGestalt.c:890:
MGIsDeviceOneOfType is not supported on this platform.
[ ] [DEVICE LOG] 2018-11-11 21:16:41.487283+0100 localhost
Runner[44546]: (libMobileGestalt.dylib) MGIsDeviceOneOfType is not supported on
this platform.
[ +2 ms] [DEVICE LOG] 2018-11-11 21:16:41.489662+0100 localhost
Runner[44546]: (libAccessibility.dylib)
[com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +105 ms] [DEVICE LOG] 2018-11-11 21:16:41.594175+0100 localhost
Runner[44546]: (UIKitCore) You've implemented -[<UIApplicationDelegate>
application:performFetchWithCompletionHandler:], but you still need to add
"fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ +1 ms] [DEVICE LOG] 2018-11-11 21:16:41.594344+0100 localhost
Runner[44546]: (UIKitCore) 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.
[ +69 ms] [DEVICE LOG] 2018-11-11 21:16:41.666878+0100 localhost
Runner[44546]: (Flutter) flutter: Observatory listening on
http://127.0.0.1:52757/
[ +4 ms] Observatory URL on device: http://127.0.0.1:52757/
[ +2 ms] Connecting to service protocol: http://127.0.0.1:52757/
[ +181 ms] [DEVICE LOG] 2018-11-11 21:16:41.855150+0100 localhost
Runner[44546]: (Flutter) flutter: ๐๐ฟ
[ +14 ms] flutter: ๐๐ฟ
[ +6 ms] Successfully connected to service protocol: http://127.0.0.1:52757/
[ +5 ms] getVM: {}
[ +8 ms] getIsolate: {isolateId: isolates/1066825042}
[ +9 ms] _flutter.listViews: {isolateId: isolates/1066825042}
[ +56 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: emoji_test}
[ +24 ms] DevFS: Created new filesystem on the device
(file:///Users/xander/Library/Developer/CoreSimulator/Devices/E3E507AC-9EAA-4F1B
-812F-583CF0A3A181/data/Containers/Data/Application/E8FCEEA3-7C2C-4CEE-9D08-141D
5FE6F8B8/tmp/emoji_testEaf6dA/emoji_test/)
[ +1 ms] Updating assets
[ +374 ms] Syncing files to device iPhone 8...
[ +2 ms] DevFS: Starting sync from LocalDirectory:
'/Users/xander/Code/emoji_test'
[ ] Scanning project files
[ +6 ms] Scanning package files
[ +163 ms] Scanning asset files
[ +1 ms] Scanning for deleted files
[ +10 ms] Compiling dart to kernel with 440 updated files
[ +9 ms] /Users/xander/Development/flutter/bin/cache/dart-sdk/bin/dart
/Users/xander/Development/flutter/bin/cache/artifacts/engine/darwin-x64/frontend
_server.dart.snapshot --sdk-root
/Users/xander/Development/flutter/bin/cache/artifacts/engine/common/flutter_patc
hed_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill
--packages /Users/xander/Code/emoji_test/.packages --filesystem-scheme
org-dartlang-root
[+1590 ms] Updating files
[ +73 ms] DevFS: Sync finished
[ ] Syncing files to device iPhone 8... (completed)
[ ] Synced 0.8MB.
[ +1 ms] _flutter.listViews: {isolateId: isolates/1066825042}
[ +6 ms] Connected to _flutterView/0x7faa7dc150a8.
[ +1 ms] ๐ฅ To hot reload changes while running, press "r". To hot restart
(and rebuild
state), press "R".
[ ] An Observatory debugger and profiler on iPhone 8 is available at:
http://127.0.0.1:52757/
[ ] For a more detailed help message, press "h". To detach, press "d"; to
quit,
press "q".
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" info โข Unused import: 'package:flutter/material.dart' โข
test/widget_test.dart:8:8 โข unused_import
info โข Unused import: 'package:flutter_test/flutter_test.dart' โข
test/widget_test.dart:9:8 โข unused_import
info โข Unused import: 'package:emoji_test/main.dart' โข
test/widget_test.dart:11:8 โข unused_import
3 issues found. (ran in 2.3s)"><pre class="notranslate"><code class="notranslate"> info โข Unused import: 'package:flutter/material.dart' โข
test/widget_test.dart:8:8 โข unused_import
info โข Unused import: 'package:flutter_test/flutter_test.dart' โข
test/widget_test.dart:9:8 โข unused_import
info โข Unused import: 'package:emoji_test/main.dart' โข
test/widget_test.dart:11:8 โข unused_import
3 issues found. (ran in 2.3s)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[โ] Flutter (Channel beta, v0.10.2, on Mac OS X 10.14.1 18B75, locale en-GB)
โข Flutter version 0.10.2 at /Users/xander/Development/flutter
โข Framework revision d8cbb80206 (2 weeks ago), 2018-10-26 01:30:21 -0400
โข Engine revision 6c2ade9fa2
โข Dart version 2.1.0-dev.8.0.flutter-bf26f760b1
[โ] Android toolchain - develop for Android devices (Android SDK 28.0.3)
โข Android SDK at /Users/xander/Library/Android/sdk
โข Android NDK location not configured (optional; useful for native profiling
support)
โข Platform android-28, build-tools 28.0.3
โข Java binary at: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java
โข Java version OpenJDK Runtime Environment (build
1.8.0_152-release-1024-b01)
โข All Android licenses accepted.
[โ] iOS toolchain - develop for iOS devices (Xcode 10.1)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 10.1, Build version 10B61
โข ios-deploy 2.0.0
โข CocoaPods version 1.5.3
[โ] Android Studio (version 3.1)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 27.0.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build
1.8.0_152-release-1024-b01)
[โ] VS Code (version 1.28.2)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Flutter extension version 2.20.0
[โ] Connected device (1 available)
โข Android SDK built for x86 โข emulator-5554 โข android-x86 โข Android 9 (API
28) (emulator)
โข No issues found!"><pre class="notranslate"><code class="notranslate">[โ] Flutter (Channel beta, v0.10.2, on Mac OS X 10.14.1 18B75, locale en-GB)
โข Flutter version 0.10.2 at /Users/xander/Development/flutter
โข Framework revision d8cbb80206 (2 weeks ago), 2018-10-26 01:30:21 -0400
โข Engine revision 6c2ade9fa2
โข Dart version 2.1.0-dev.8.0.flutter-bf26f760b1
[โ] Android toolchain - develop for Android devices (Android SDK 28.0.3)
โข Android SDK at /Users/xander/Library/Android/sdk
โข Android NDK location not configured (optional; useful for native profiling
support)
โข Platform android-28, build-tools 28.0.3
โข Java binary at: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java
โข Java version OpenJDK Runtime Environment (build
1.8.0_152-release-1024-b01)
โข All Android licenses accepted.
[โ] iOS toolchain - develop for iOS devices (Xcode 10.1)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 10.1, Build version 10B61
โข ios-deploy 2.0.0
โข CocoaPods version 1.5.3
[โ] Android Studio (version 3.1)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 27.0.1
โข Dart plugin version 173.4700
โข Java version OpenJDK Runtime Environment (build
1.8.0_152-release-1024-b01)
[โ] VS Code (version 1.28.2)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Flutter extension version 2.20.0
[โ] Connected device (1 available)
โข Android SDK built for x86 โข emulator-5554 โข android-x86 โข Android 9 (API
28) (emulator)
โข No issues found!
</code></pre></div> | <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/abarth/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/abarth">@abarth</a> pointed me to the hello_android-Sample. Works so far.</p>
<p dir="auto">But there are a few open questions / issues:</p>
<ol dir="auto">
<li>Installation is only possible on a real device. It fails on emulator with INSTALL_FAILED_NO_MATCHING_ABIS.</li>
<li>Workflow for updating modifications in dart code is a bit complicated but works.<br>
(Works only via cmdline (flutter refresh...) - I tried it with a custom run configuration in AndroidStudio but this takes (don't know why) 2 or 3 times longer than running "flutter refresh..." via cmdline</li>
<li>"Enable Dart support" in Android Studio fails (it forgets this setting after reload)</li>
</ol>
<p dir="auto"><strong>But here is my main-problem:</strong><br>
I don't need FlutterView - I want to use Androids native UI and Flutter only for business-logic.<br>
Do you have any advice for me (or a sample) what's the best way to solve this problem?</p> | 0 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: [1.19]</li>
</ul>
<p dir="auto"><strong>Describe the bug</strong><br>
In this below POM demonstration example, visibility check element is duplicated. This is misleading in POM context. So documentation needs to updated.<br>
<a href="https://playwright.dev/docs/test-pom" rel="nofollow">https://playwright.dev/docs/test-pom</a></p>
<p dir="auto">Expected:<br>
await expect(this.coreConceptsLink).toBeVisible();</p>
<p dir="auto">As "this.coreConceptsLink = page.locator('text=Core concepts');"<br>
is already defined in PlaywrightDevPage constructor</p>
<p dir="auto">Actual<br>
await expect(this.page.locator('h1').locator("text=Core concepts")).toBeVisible();</p>
<p dir="auto">Add any other details about the problem here.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/43817524/157172929-f81e7edc-7bd5-4db3-84a5-a16c27488b83.png"><img src="https://user-images.githubusercontent.com/43817524/157172929-f81e7edc-7bd5-4db3-84a5-a16c27488b83.png" alt="image" style="max-width: 100%;"></a></p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: 1.36.0</li>
<li>Operating System: OSX</li>
<li>Browser: N/A</li>
<li>Other info:</li>
</ul>
<p dir="auto"><strong>package.json config file</strong></p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""devDependencies": {
"@playwright/test": "^1.36.0",
}"><pre class="notranslate"><span class="pl-ent">"devDependencies"</span>: {
<span class="pl-ent">"@playwright/test"</span>: <span class="pl-s"><span class="pl-pds">"</span>^1.36.0<span class="pl-pds">"</span></span>,
}</pre></div>
<p dir="auto">We do not have <code class="notranslate">playwright</code> as a dependency anywhere.</p>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>Add <code class="notranslate">"@playwright/test": "^1.36.0",</code> to dev dependencies</li>
<li>Run <code class="notranslate">npx playwright install --with-deps</code></li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">We get playwright 1.36.0 installed; I can see it's <a href="https://github.com/microsoft/playwright/releases/tag/v1.36.0">a new release only recently available</a></p>
<p dir="auto"><strong>Actual</strong></p>
<pre class="notranslate">โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Playwright Test integrity check failed: โ
โ You have @playwright/test version '1.36.0' and 'playwright' version '1.33.0' installed! โ
โ You probably added 'playwright' into your package.json by accident, remove it and re-run 'npm install' โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
</pre>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/aslushnikov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/aslushnikov">@aslushnikov</a></p> | 0 |
<h1 dir="auto">ISSUE TYPE</h1>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ansible-pull</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.1.2.0"><pre class="notranslate"><code class="notranslate">ansible 2.1.2.0
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Not sure if this is a problem or just me doing it wrong, but I can not add a custom path for the known_hosts file for ansible-pull.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">By default, ansible-pull uses the known_hosts file located at <code class="notranslate">~/.ssh/known_hosts</code> but I should be able to add a custom one with <code class="notranslate">--ssh-common-args=UserKnownHostsFile=~/my_temporary_known_host</code><br>
Unfortunately, this setting is ignored by ansible-pull and the git checkout fails.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Starting Ansible Pull at 2016-10-26 15:06:29
/usr/local/mydir/bin/ansible-pull -i myinventory -U ssh://git@mygit -C master --private-key=mykey --ssh-common-args=UserKnownHostsFile=~/my_temporary_known_host
localhost | FAILED! => {
"changed": false,
"failed": true,
"msg": "mygit has an unknown hostkey. Set accept_hostkey to True or manually add the hostkey prior to running the git module"
}"><pre class="notranslate"><code class="notranslate">Starting Ansible Pull at 2016-10-26 15:06:29
/usr/local/mydir/bin/ansible-pull -i myinventory -U ssh://git@mygit -C master --private-key=mykey --ssh-common-args=UserKnownHostsFile=~/my_temporary_known_host
localhost | FAILED! => {
"changed": false,
"failed": true,
"msg": "mygit has an unknown hostkey. Set accept_hostkey to True or manually add the hostkey prior to running the git module"
}
</code></pre></div> | <h5 dir="auto">SUMMARY</h5>
<p dir="auto">The <code class="notranslate">git</code> submodule which is used by <code class="notranslate">ansible-pull</code> when cloning the inventory repo is fixed to either initializing submodules recursively or not initializing submodules and doesn't support just initializing the first level of submodules in the repo.</p>
<p dir="auto">Use Case:</p>
<p dir="auto">I have thousands of IOT devices being managed using <code class="notranslate">ansible-pull</code>. Some SCM providers like Bitbucket have API limits and recursive cloning can be a problem here and also a scalability issue.</p>
<p dir="auto">If my <code class="notranslate">ansible-pull</code> inventory uses submodules for roles in <code class="notranslate">roles/</code> and each role itself uses submodules in its tests directory which mimics the inventory at <code class="notranslate">tests/roles/</code> used only for unit testing, then doing recursive submodule initialization is a huge cloning overhead that is ultimately not necessary.</p>
<p dir="auto">The difference in the number of clones in my case when I use 11 role submodules in the inventory repo is that non recursive submodule cloning causes 12 <code class="notranslate">git</code> clones, whereas recursive submodule cloning causes 52 <code class="notranslate">git</code> clones.</p>
<p dir="auto">When your IOT devices may be on internet connections of questionable quality, reducing the amount clones helps reduce the network traffic, load on SCM provider or self hosted instances, and reduce <code class="notranslate">ansible-pull</code> failures resulting from just trying to retrieve the inventory/roles.</p>
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ansible-pull<br>
git</p>
<h5 dir="auto">ADDITIONAL INFORMATION</h5>
<p dir="auto">My guess is that the current <code class="notranslate">git</code> module's behavior is modeled after <code class="notranslate">git-clone</code>'s behavior with its built in <code class="notranslate">--recurse-submodules</code> and <code class="notranslate">--shallow-submodules</code> options.</p>
<p dir="auto">However, in actual implementation, the <code class="notranslate">git</code> submodule is not using these <code class="notranslate">git-clone</code> options though, but instead using <code class="notranslate">git-submodule-update</code> <a href="https://github.com/ansible/ansible/blob/devel/lib/ansible/modules/source_control/git.py#L1198-L1209">recursive submodue init</a> except with <code class="notranslate">--init</code> and <code class="notranslate">--recursive</code> always fixed.</p>
<p dir="auto">Proposal:</p>
<p dir="auto">Extend the <code class="notranslate">git</code> module to add a <code class="notranslate">submodule_init</code> parameter (defaults to <code class="notranslate">yes</code> for backward compatibility) that controls whether or not submodules are initialized at all, and update the <code class="notranslate">submodule_update</code> method to only initialize recursively if the current <code class="notranslate">recursive</code> parameter is enabled. In addition, add <code class="notranslate">submodule_depth</code> parameter which is also used by <code class="notranslate">submodule_update</code> method to expose the depth and allow us to further reduce the clone size for better scalability.</p>
<p dir="auto">Extend the <code class="notranslate">ansible-pull</code> command to add flags for <code class="notranslate">--no-recurse-submodules</code> and <code class="notranslate">--no-submodule-init</code> and update the <a href="https://github.com/ansible/ansible/blob/devel/lib/ansible/cli/pull.py#L188-L206">options passed to git module</a> (the <code class="notranslate">submodule_depth</code> parameter can be set the same way as the <code class="notranslate">depth</code> parameter currently is, based on whether or not <code class="notranslate">--full</code> is provided).</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bcoca/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bcoca">@bcoca</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sivel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sivel">@sivel</a> Thoughts on proposal and likelihood they would be accepted if I submitted PRs?</p> | 1 |
<p dir="auto">Before 3.0.3 it was possible to setup a table with table-striped and use the contextual. Now the styling by table-striped overrules contextual classes.</p> | <p dir="auto">i have table with class .table-striped. it has 3 rows with tr.danger. only the middle one is red, the other two are default color.</p>
<p dir="auto">when i remove .table-striped, it works correctly</p> | 1 |
<p dir="auto">When using the (unofficial) <a href="https://github.com/jridgewell/babel-plugin-transform-for-of-as-array">babel-plugin-transform-for-of-as-array</a> on a <code class="notranslate">for..of</code> loop that iterates over an imported array variable, the AMD (and CommonJS) modules transform fail to rewrite all of the array references.</p>
<p dir="auto">Repro: <a href="https://github.com/MattiasBuelens/babel-for-of-modules-regression">https://github.com/MattiasBuelens/babel-for-of-modules-regression</a></p>
<h3 dir="auto">Input Code</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {array} from 'foo';
for (let elem of array) {
console.log(elem);
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">array</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'foo'</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">let</span> <span class="pl-s1">elem</span> <span class="pl-k">of</span> <span class="pl-s1">array</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">elem</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Babel Configuration (.babelrc, package.json, cli command)</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"plugins": [
"transform-for-of-as-array",
"transform-es2015-modules-amd"
]
}"><pre class="notranslate"><span class="pl-kos">{</span>
<span class="pl-s">"plugins"</span>: <span class="pl-kos">[</span>
<span class="pl-s">"transform-for-of-as-array"</span><span class="pl-kos">,</span>
<span class="pl-s">"transform-es2015-modules-amd"</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Babel version 7.0.0-beta.0 generates this code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="define(["foo"], function (_foo) {
"use strict";
for (let _i = 0; _i < _foo.array.length; _i++) {
let elem = _foo.array[_i];
console.log(elem);
}
});"><pre class="notranslate"><span class="pl-en">define</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">"foo"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">_foo</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">let</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">_foo</span><span class="pl-kos">.</span><span class="pl-c1">array</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">_i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">elem</span> <span class="pl-c1">=</span> <span class="pl-s1">_foo</span><span class="pl-kos">.</span><span class="pl-c1">array</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-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">elem</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>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">Babel version 7.0.0-beta.2 generates this code instead:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="define(["foo"], function (_foo) {
"use strict";
for (let _i = 0; _i < _foo.array.length; _i++) {
let elem = array[_i];
console.log(elem);
}
});"><pre class="notranslate"><span class="pl-en">define</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">"foo"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-k">function</span> <span class="pl-kos">(</span><span class="pl-s1">_foo</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">let</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">_foo</span><span class="pl-kos">.</span><span class="pl-c1">array</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">_i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">elem</span> <span class="pl-c1">=</span> <span class="pl-s1">array</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-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">elem</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Note the <code class="notranslate">let elem = array[_i];</code> inside the loop.</p>
<p dir="auto">The same problem also occurs with the CommonJS modules transform, which generates:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""use strict";
var _foo = require("foo");
for (let _i = 0; _i < _foo.array.length; _i++) {
let elem = array[_i];
console.log(elem);
}"><pre class="notranslate"><span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">_foo</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"foo"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">let</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">_foo</span><span class="pl-kos">.</span><span class="pl-c1">array</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">_i</span><span class="pl-c1">++</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">elem</span> <span class="pl-c1">=</span> <span class="pl-s1">array</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-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">elem</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Context</h3>
<p dir="auto">Our code base only uses <code class="notranslate">for..of</code> on arrays (or array-like objects), so we'd like to keep using the optimized transformation provided by this unofficial plugin.</p>
<p dir="auto">I've tried to reproduce this issue with the standard <code class="notranslate">for..of</code> transform, but that plugin always creates a temporarily variable for the imported array.</p>
<h3 dir="auto">Your Environment</h3>
<table role="table">
<thead>
<tr>
<th>software</th>
<th>version(s)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Babel</td>
<td>7.0.0-beta.2</td>
</tr>
<tr>
<td>node</td>
<td>7.10.0</td>
</tr>
<tr>
<td>npm</td>
<td>5.4.2</td>
</tr>
<tr>
<td>Operating System</td>
<td>Windows 10</td>
</tr>
</tbody>
</table> | <p dir="auto">Thanks for Babel. I'd love for Babel to be a superset of defs.js so I can deprecate defs eventually. For that reason, I'm going through the defs test suite and will open up issues (for bugs and improvement) as I find them.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="~/projects/defs.js/tests % cat var-inside-let.js
"use strict";
// all three var x|y|z = 4 should be errors I believe so we error on all
// v8 --harmony allows the first but not the second and last (2015-08-24: this has now been fixed in v8 so all errors)
if (true) {
let x = 3;
if (true) {
var x = 4;
}
}
let y = 3;
if (true) {
var y = 4;
}
(function() {
if (true) {
let z = 3;
if (true) {
var z = 4;
}
}
})();"><pre class="notranslate"><span class="pl-c1">~</span><span class="pl-pds"><span class="pl-c1">/</span>projects<span class="pl-c1">/</span>defs</span><span class="pl-kos">.</span><span class="pl-c1">js</span><span class="pl-c1">/</span><span class="pl-s1">tests</span> <span class="pl-c1">%</span> <span class="pl-s1">cat</span> <span class="pl-s1">var</span><span class="pl-c1">-</span><span class="pl-s1">inside</span><span class="pl-c1">-</span><span class="pl-s1">let</span><span class="pl-kos">.</span><span class="pl-c1">js</span>
<span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-c">// all three var x|y|z = 4 should be errors I believe so we error on all</span>
<span class="pl-c">// v8 --harmony allows the first but not the second and last (2015-08-24: this has now been fixed in v8 so all errors)</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">3</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">4</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">let</span> <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-c1">3</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-c1">4</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-c1">3</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-c1">4</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">Babel should error on all three redeclaration, here you can see the output from defs.js.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/projects/defs.js/tests % cat var-inside-let-stderr
line 9: x is already declared
line 15: y is already declared
line 22: z is already declared"><pre class="notranslate"><code class="notranslate">~/projects/defs.js/tests % cat var-inside-let-stderr
line 9: x is already declared
line 15: y is already declared
line 22: z is already declared
</code></pre></div>
<p dir="auto">However, Babel only errors on the middle one <code class="notranslate">TypeError: var-inside-let-copy.js: Line 15: Duplicate declaration "y"</code></p> | 0 |
<p dir="auto">If a playbook is written to include a dependency role explicitly, that role can be loaded more than once if another role depends on it. Consider this example. <code class="notranslate">base</code> is a role with no dependencies. <code class="notranslate">feature</code> is a role with a meta/main.yml file specifying the <code class="notranslate">base</code> role as a dependency. <code class="notranslate">base</code> will be run twice by default here.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: name
roles:
- base
- feature"><pre class="notranslate"><code class="notranslate">- name: name
roles:
- base
- feature
</code></pre></div>
<p dir="auto">The docs say "by default, roles can also only be added as a dependency once" and technically that is true, <code class="notranslate">base</code> is loaded once as an explicit module and once as a dependency module. Still, I argue that this behavior should be improved to "by default, roles are added only once" to be more consistent with typical dependency management systems and associated expectations. When <code class="notranslate">feature</code> is run, it should be known that the <code class="notranslate">base</code> dependency has already run.</p> | <p dir="auto">As a system administrator I want to install build dependency packages for developer and buildhost machines using the same syntax I install normal packages with.</p>
<p dir="auto">It would be useful if one could install build-deps via the apt module instead of mixing and matching apt module and commands for "apt-get build-dep "</p> | 0 |
<p dir="auto">As a Haskell programmer, I like the ability to use Unicode character in names. However, I've noticed that the character "๐ข" with the default font causes Atom to place the cursor too far to the right, creating a gap.</p> | <p dir="auto">Halp ticket:</p>
<ul dir="auto">
<li>support/e61e5074bc3011e396a434cf997499c3</li>
</ul>
<blockquote>
<p dir="auto">Support for Unicode is incomplete. Unicode characters are shown, but the cursor get stuck, and the navigation with the keyboard arrows stop working.</p>
</blockquote>
<p dir="auto">The user was using this string as an example <code class="notranslate">ืืณืืณืืณdwdwdww</code></p>
<p dir="auto">Here's a GIF of me pressing just the right arrow key to get from the beginning of the string to the end:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/38924/2644705/38820a02-bf2b-11e3-8c5c-917400a391d1.gif"><img src="https://cloud.githubusercontent.com/assets/38924/2644705/38820a02-bf2b-11e3-8c5c-917400a391d1.gif" alt="test1006" data-animated-image="" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/use-spans-for-inline-elements#?solution=%0A%3Clink%20href%3D%22https%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLobster%22%20rel%3D%22stylesheet%22%20type%3D%22text%2Fcss%22%3E%0A%3Cstyle%3E%0A%0A%20%20h2%20%7B%0A%20%20%20%20font-family%3A%20Lobster%2C%20Monospace%3B%0A%20%20%7D%0A%0A%20%20.thick-green-border%20%7B%0A%20%20%20%20border-color%3A%20green%3B%0A%20%20%20%20border-width%3A%2010px%3B%0A%20%20%20%20border-style%3A%20solid%3B%0A%20%20%20%20border-radius%3A%2050%25%3B%0A%20%20%7D%0A%0A%3C%2Fstyle%3E%0A%0A%3Cdiv%20class%3D%22container-fluid%22%3E%0A%20%20%3Ch2%20class%3D%22text-primary%20text-center%22%3ECatPhotoApp%3C%2Fh2%3E%0A%0A%20%20%3Ca%20href%3D%22%23%22%3E%3Cimg%20class%3D%22img-responsive%20thick-green-border%22%20src%3D%22https%3A%2F%2Fbit.ly%2Ffcc-relaxing-cat%22%20alt%3D%22A%20cute%20orange%20cat%20lying%20on%20its%20back.%20%22%3E%3C%2Fa%3E%0A%0A%20%20%3Cimg%20src%3D%22https%3A%2F%2Fbit.ly%2Ffcc-running-cats%22%20class%3D%22img-responsive%22%20alt%3D%22Three%20kittens%20running%20towards%20the%20camera.%20%22%3E%0A%20%20%3Cdiv%20class%3D%22row%22%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-4%22%3E%0A%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-block%20btn-primary%22%3ELike%3C%2Fbutton%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-4%22%3E%0A%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-block%20btn-info%22%3EInfo%3C%2Fbutton%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-4%22%3E%0A%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-block%20btn-danger%22%3EDelete%3C%2Fbutton%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%3C%2Fdiv%3E%0A%20%20%3Cp%3EThings%20cats%20love%3A%3C%2Fp%3E%0A%20%20%3Cul%3E%0A%20%20%20%20%3Cli%3Ecat%20nip%3C%2Fli%3E%0A%20%20%20%20%3Cli%3Elaser%20pointers%3C%2Fli%3E%0A%20%20%20%20%3Cli%3Elasagna%3C%2Fli%3E%0A%20%20%3C%2Ful%3E%0A%20%20%3Cp%3ETop%203%20things%20cats%20hate%3A%3C%2Fp%3E%0A%20%20%3Col%3E%0A%20%20%20%20%3Cli%3Eflea%20treatment%3C%2Fli%3E%0A%20%20%20%20%3Cli%3Ethunder%3C%2Fli%3E%0A%20%20%20%20%3Cli%3Eother%20cats%3C%2Fli%3E%0A%20%20%3C%2Fol%3E%0A%20%20%3Cform%20fccfaa%3D%22%2Fsubmit-cat-photo%22%3E%0A%20%20%20%20%3Clabel%3E%3Cinput%20type%3D%22radio%22%20name%3D%22indoor-outdoor%22%3E%20Indoor%3C%2Flabel%3E%0A%20%20%20%20%3Clabel%3E%3Cinput%20type%3D%22radio%22%20name%3D%22indoor-outdoor%22%3E%20Outdoor%3C%2Flabel%3E%0A%20%20%20%20%3Clabel%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personality%22%3E%20Loving%3C%2Flabel%3E%0A%20%20%20%20%3Clabel%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personality%22%3E%20Lazy%3C%2Flabel%3E%0A%20%20%20%20%3Clabel%3E%3Cinput%20type%3D%22checkbox%22%20name%3D%22personality%22%3E%20Crazy%3C%2Flabel%3E%0A%20%20%20%20%3Cinput%20type%3D%22text%22%20placeholder%3D%22cat%20photo%20URL%22%20required%3E%0A%20%20%20%20%3Cbutton%20type%3D%22submit%22%3ESubmit%3C%2Fbutton%3E%0A%20%20%3C%2Fform%3E%0A%3C%2Fdiv%3E%0A" rel="nofollow">Use Spans for Inline Elements</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
h2 {
font-family: Lobster, Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
</style>
<div class="container-fluid">
<h2 class="text-primary text-center">CatPhotoApp</h2>
<a href="#"><img class="img-responsive thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "></a>
<img src="https://bit.ly/fcc-running-cats" class="img-responsive" alt="Three kittens running towards the camera. ">
<div class="row">
<div class="col-xs-4">
<button class="btn btn-block btn-primary">Like</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-info">Info</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-danger">Delete</button>
</div>
</div>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Crazy</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</div>
"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">link</span> <span class="pl-c1">href</span>="<span class="pl-s">https://fonts.googleapis.com/css?family=Lobster</span>" <span class="pl-c1">rel</span>="<span class="pl-s">stylesheet</span>" <span class="pl-c1">type</span>="<span class="pl-s">text/css</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">style</span><span class="pl-kos">></span>
<span class="pl-ent">h2</span> {
<span class="pl-c1">font-family</span><span class="pl-kos">:</span> Lobster<span class="pl-kos">,</span> Monospace;
}
.<span class="pl-c1">thick-green-border</span> {
<span class="pl-c1">border-color</span><span class="pl-kos">:</span> green;
<span class="pl-c1">border-width</span><span class="pl-kos">:</span> <span class="pl-c1">10<span class="pl-smi">px</span></span>;
<span class="pl-c1">border-style</span><span class="pl-kos">:</span> solid;
<span class="pl-c1">border-radius</span><span class="pl-kos">:</span> <span class="pl-c1">50<span class="pl-smi">%</span></span>;
}
<span class="pl-kos"></</span><span class="pl-ent">style</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">container-fluid</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h2</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">></span>CatPhotoApp<span class="pl-kos"></</span><span class="pl-ent">h2</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">href</span>="<span class="pl-s">#</span>"<span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">img</span> <span class="pl-c1">class</span>="<span class="pl-s">img-responsive thick-green-border</span>" <span class="pl-c1">src</span>="<span class="pl-s">https://bit.ly/fcc-relaxing-cat</span>" <span class="pl-c1">alt</span>="<span class="pl-s">A cute orange cat lying on its back. </span>"<span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">img</span> <span class="pl-c1">src</span>="<span class="pl-s">https://bit.ly/fcc-running-cats</span>" <span class="pl-c1">class</span>="<span class="pl-s">img-responsive</span>" <span class="pl-c1">alt</span>="<span class="pl-s">Three kittens running towards the camera. </span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">row</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-4</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-block btn-primary</span>"<span class="pl-kos">></span>Like<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-4</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-block btn-info</span>"<span class="pl-kos">></span>Info<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-4</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-block btn-danger</span>"<span class="pl-kos">></span>Delete<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span>Things cats love:<span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">ul</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">li</span><span class="pl-kos">></span>cat nip<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">li</span><span class="pl-kos">></span>laser pointers<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">li</span><span class="pl-kos">></span>lasagna<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">ul</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span>Top 3 things cats hate:<span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">ol</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">li</span><span class="pl-kos">></span>flea treatment<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">li</span><span class="pl-kos">></span>thunder<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">li</span><span class="pl-kos">></span>other cats<span class="pl-kos"></</span><span class="pl-ent">li</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">ol</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">form</span> <span class="pl-c1">action</span>="<span class="pl-s">/submit-cat-photo</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">radio</span>" <span class="pl-c1">name</span>="<span class="pl-s">indoor-outdoor</span>"<span class="pl-kos">></span> Indoor<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">radio</span>" <span class="pl-c1">name</span>="<span class="pl-s">indoor-outdoor</span>"<span class="pl-kos">></span> Outdoor<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">name</span>="<span class="pl-s">personality</span>"<span class="pl-kos">></span> Loving<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">name</span>="<span class="pl-s">personality</span>"<span class="pl-kos">></span> Lazy<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">label</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">checkbox</span>" <span class="pl-c1">name</span>="<span class="pl-s">personality</span>"<span class="pl-kos">></span> Crazy<span class="pl-kos"></</span><span class="pl-ent">label</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">text</span>" <span class="pl-c1">placeholder</span>="<span class="pl-s">cat photo URL</span>" <span class="pl-c1">required</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">button</span> <span class="pl-c1">type</span>="<span class="pl-s">submit</span>"<span class="pl-kos">></span>Submit<span class="pl-kos"></</span><span class="pl-ent">button</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">form</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div> | <p dir="auto">In all the exercises, we the users are forced to press the enter key before writing any code.</p>
<hr>
<h4 dir="auto">Update:</h4>
<p dir="auto">We have locked the conversation temporarily on this thread to collaborators only, this has been resolved in staging, and will be live soon.</p>
<p dir="auto">The fix can be confirmed on the beta website.</p>
<p dir="auto">The workaround currently on production website is:<br>
Press the <kbd>Enter</kbd> key on the challenge editor and then proceed with the challenge.</p>
<p dir="auto">Apologies for the inconvenience meanwhile.</p>
<p dir="auto">Reach us in the chat room if you need any assistance.</p> | 1 |
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-unshift" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-unshift</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.</p>
<p dir="auto">In the description<br>
Let's take the code we had last time and unshiftthis value to the end: "Paul"</p>
<p dir="auto">it should read "start" instead of "end"</p> | <p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-unshift" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-manipulate-arrays-with-unshift</a> has an issue.<br>
Just a little detail that may lead to confusion: in the description of the Waypoint it's written "to the end", when the unshift function adds the new value to the beginning of the array:<br>
"Let's take the code we had last time and unshift this value to the 'END': "Paul"". (I've written it in uppercase so you can see it better).<br>
That's all. Thanks for the work you're doing! ;)</p> | 1 |
<p dir="auto">The Go language has this cool feature for struct composition where if you put one struct after another's values, its values are inherited into the other.</p>
<div class="highlight highlight-source-go notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type foo1 struct {
bar string
}
type foo2 struct {
baz string
foo1 // foo2 now also has the field "bar" inherited from foo1
}"><pre class="notranslate"><span class="pl-k">type</span> <span class="pl-smi">foo1</span> <span class="pl-k">struct</span> {
<span class="pl-c1">bar</span> <span class="pl-smi">string</span>
}
<span class="pl-k">type</span> <span class="pl-smi">foo2</span> <span class="pl-k">struct</span> {
<span class="pl-c1">baz</span> <span class="pl-smi">string</span>
<span class="pl-smi">foo1</span> <span class="pl-c">// foo2 now also has the field "bar" inherited from foo1</span>
}</pre></div>
<p dir="auto">This seems like it would fit well into Julia.</p>
<p dir="auto">My suggested implementation would be:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="struct foo1
bar::String
end
struct foo2
baz::String
foo1...
end"><pre class="notranslate"><span class="pl-k">struct</span> foo1
bar<span class="pl-k">::</span><span class="pl-c1">String</span>
<span class="pl-k">end</span>
<span class="pl-k">struct</span> foo2
baz<span class="pl-k">::</span><span class="pl-c1">String</span>
foo1<span class="pl-k">...</span>
<span class="pl-k">end</span></pre></div>
<p dir="auto">Thanks for taking the time to read this! It would be yet another pretty nifty trick that Julia could use.</p> | <p dir="auto">Julia Version 0.3.0-prerelease+355 (2013-12-08 02:02 UTC)<br>
64-bit Linux (Kubuntu 13.10)</p>
<p dir="auto">A brief discussion about this is also at <a href="https://groups.google.com/forum/#!topic/julia-users/8tMwmFQZFrc" rel="nofollow">https://groups.google.com/forum/#!topic/julia-users/8tMwmFQZFrc</a></p>
<p dir="auto">There are a couple of situations where running methodswith function does not give the expected result. The returned report can either be missing expected methods, report the same method twice, or a combination of missing and duplicated methods.</p>
<h2 dir="auto">Scenario 1: Querying a local package.</h2>
<ul dir="auto">
<li>Create package, eg ExamplePkg via Pkg.generate("ExamplePkg","MIT")</li>
<li>Complete ExamplePkg.jl with attached</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="module ExamplePkg
# package code goes here
export TwoVals, addtwovals
type TwoVals
val1
val2
end
function addtwovals(v::TwoVals)
v.val1 + v.val2
end
function addtwovals(v1::TwoVals, v2::TwoVals)
v1.val1 + v1.val2 + v2.val1 + v2.val2
end
function addtwovals(v::TwoVals)
v.val1 + v.val2
end
function addtwovals(v1::TwoVals, v2::TwoVals)
v1.val1 + v1.val2 + v2.val1 + v2.val2
end
end # module"><pre class="notranslate"><code class="notranslate">module ExamplePkg
# package code goes here
export TwoVals, addtwovals
type TwoVals
val1
val2
end
function addtwovals(v::TwoVals)
v.val1 + v.val2
end
function addtwovals(v1::TwoVals, v2::TwoVals)
v1.val1 + v1.val2 + v2.val1 + v2.val2
end
function addtwovals(v::TwoVals)
v.val1 + v.val2
end
function addtwovals(v1::TwoVals, v2::TwoVals)
v1.val1 + v1.val2 + v2.val1 + v2.val2
end
end # module
</code></pre></div>
<ul dir="auto">
<li>In REPL the following can be seen</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> using ExamplePkg
julia> t1 = TwoVals(1,2)
TwoVals(1,2)
julia> t2 = TwoVals(100,200)
TwoVals(100,200)
julia> addtwovals(t1)
3
julia> addtwovals(t1, t2)
303
julia> methods(addtwovals)
#2 methods for generic function "addtwovals":
addtwovals(v::TwoVals) at /home/johng/.julia/ExamplePkg/src/ExamplePkg.jl:20
addtwovals(v1::TwoVals,v2::TwoVals) at /home/johng/.julia/ExamplePkg/src/ExamplePkg.jl:24
julia> methodswith(TwoVals)
julia> "><pre class="notranslate"><code class="notranslate">julia> using ExamplePkg
julia> t1 = TwoVals(1,2)
TwoVals(1,2)
julia> t2 = TwoVals(100,200)
TwoVals(100,200)
julia> addtwovals(t1)
3
julia> addtwovals(t1, t2)
303
julia> methods(addtwovals)
#2 methods for generic function "addtwovals":
addtwovals(v::TwoVals) at /home/johng/.julia/ExamplePkg/src/ExamplePkg.jl:20
addtwovals(v1::TwoVals,v2::TwoVals) at /home/johng/.julia/ExamplePkg/src/ExamplePkg.jl:24
julia> methodswith(TwoVals)
julia>
</code></pre></div>
<p dir="auto">Problems with above :</p>
<ul dir="auto">
<li>Expected to see the two 'addtwovals' methods reported, however there is nothing reported at all.</li>
</ul>
<h2 dir="auto">Scenario 2: Querying an installed third-pary package.</h2>
<ul dir="auto">
<li>Install WebSockets package via adding to .julia/REQUIRE file and doing a Pkg.resolve()</li>
<li>IN REPL the following can be seen</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia> using WebSockets
julia> methodswith(WebSocket)
isopen(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:126
read(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:227
write(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:97
close(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:115
read(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:227
write(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:97
close(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:115
julia> methods(send_ping)
#2 methods for generic function "send_ping":
send_ping(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:107
send_ping(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:107
julia> methods(send_pong)
#2 methods for generic function "send_pong":
send_pong(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:111
send_pong(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:111"><pre class="notranslate"><code class="notranslate">julia> using WebSockets
julia> methodswith(WebSocket)
isopen(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:126
read(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:227
write(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:97
close(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:115
read(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:227
write(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:97
close(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:115
julia> methods(send_ping)
#2 methods for generic function "send_ping":
send_ping(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:107
send_ping(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:107
julia> methods(send_pong)
#2 methods for generic function "send_pong":
send_pong(ws::WebSocket) at /home/johng/.julia/WebSockets/src/WebSockets.jl:111
send_pong(ws::WebSocket,data) at /home/johng/.julia/WebSockets/src/WebSockets.jl:111
</code></pre></div>
<p dir="auto">Problems with above:</p>
<ul dir="auto">
<li>read(), write(), close() methods are being listed twice for the same argument signature.</li>
<li>methodswith() return value is actually missing two functions send_ping() and send_pong() even though these are exported.</li>
</ul> | 0 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.165.0<br>
<strong>System</strong>: Mac OS X 10.10.1<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: EEXIST, file already exists '/Users/BernzAir/.atom/storage'</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At /Applications/Atom.app/Contents/Resources/app/node_modules/mkdirp/index.js:74
undefined"><pre class="notranslate"><code class="notranslate">At /Applications/Atom.app/Contents/Resources/app/node_modules/mkdirp/index.js:74
undefined
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<h3 dir="auto">Config</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"core": {
"themes": [
"seti-ui",
"seti-syntax"
]
},
"editor": {
"auto-indent": true,
"softWrap": true,
"showIndentGuide": true
}
}"><pre class="notranslate"><code class="notranslate">{
"core": {
"themes": [
"seti-ui",
"seti-syntax"
]
},
"editor": {
"auto-indent": true,
"softWrap": true,
"showIndentGuide": true
}
}
</code></pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
atom-runner, v2.2.0
auto-update-packages, v0.2.1
autocomplete-paths, v0.7.0
autocomplete-plus, v0.22.3
autocomplete-snippets, v0.2.0
color-picker, v1.2.6
linter, v0.9.0
seti-syntax, v0.2.1
seti-ui, v0.5.1
trailing-spaces, v0.2.3
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
atom<span class="pl-k">-</span>runner, v2.<span class="pl-ii">2</span>.<span class="pl-ii">0</span>
auto<span class="pl-k">-</span>update<span class="pl-k">-</span>packages, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span>
autocomplete<span class="pl-k">-</span>paths, v0.<span class="pl-ii">7</span>.<span class="pl-ii">0</span>
autocomplete<span class="pl-k">-</span>plus, v0.<span class="pl-ii">22</span>.<span class="pl-ii">3</span>
autocomplete<span class="pl-k">-</span>snippets, v0.<span class="pl-ii">2</span>.<span class="pl-ii">0</span>
color<span class="pl-k">-</span>picker, v1.<span class="pl-ii">2</span>.<span class="pl-ii">6</span>
linter, v0.<span class="pl-ii">9</span>.<span class="pl-ii">0</span>
seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span>
seti<span class="pl-k">-</span>ui, v0.<span class="pl-ii">5</span>.<span class="pl-ii">1</span>
trailing<span class="pl-k">-</span>spaces, v0.<span class="pl-ii">2</span>.<span class="pl-ii">3</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | <p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.165.0<br>
<strong>System</strong>: Mac OS X 10.10.1<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: EEXIST, file already exists '/Users/812studio/.atom/storage'</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At /Applications/Atom.app/Contents/Resources/app/node_modules/mkdirp/index.js:74
undefined"><pre class="notranslate"><code class="notranslate">At /Applications/Atom.app/Contents/Resources/app/node_modules/mkdirp/index.js:74
undefined
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -0:02.4 project-manager:toggle (input.hidden-input)
-0:00.0 core:confirm (input.hidden-input)"><pre class="notranslate"><code class="notranslate"> -0:02.4 project-manager:toggle (input.hidden-input)
-0:00.0 core:confirm (input.hidden-input)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"core": {
"themes": [
"brownerd-ui",
"brownerd-syntax"
],
"ignoredNames": [
".git",
".svn",
".DS_Store"
],
"disabledPackages": [
"term",
"linter-scss-lint",
"linter-tidy",
"linter-jshint",
"autocomplete-plus",
"linter-csslint"
]
},
"editor": {
"showIndentGuide": true,
"fontFamily": "Source Code Pro",
"lineHeight": 1.5,
"fontSize": 14,
"softWrap": true
}
}"><pre class="notranslate"><code class="notranslate">{
"core": {
"themes": [
"brownerd-ui",
"brownerd-syntax"
],
"ignoredNames": [
".git",
".svn",
".DS_Store"
],
"disabledPackages": [
"term",
"linter-scss-lint",
"linter-tidy",
"linter-jshint",
"autocomplete-plus",
"linter-csslint"
]
},
"editor": {
"showIndentGuide": true,
"fontFamily": "Source Code Pro",
"lineHeight": 1.5,
"fontSize": 14,
"softWrap": true
}
}
</code></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
ScssBundle, v0.4.0
Stylus, v0.4.0
auto-update-packages, v0.2.1
brownerd-syntax, v0.1.0
brownerd-ui, v0.1.0
color-picker, v1.2.6
editorconfig, v0.2.2
emmet, v2.3.0
less-autocompile, v0.3.3
linter, v0.9.0
linter-js-yaml, v0.1.3
minimap, v3.4.9
project-manager, v1.14.1
tabs-to-spaces, v0.8.0
terminal, v0.28.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
ScssBundle, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
Stylus, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
auto<span class="pl-k">-</span>update<span class="pl-k">-</span>packages, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span>
brownerd<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
brownerd<span class="pl-k">-</span>ui, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
color<span class="pl-k">-</span>picker, v1.<span class="pl-ii">2</span>.<span class="pl-ii">6</span>
editorconfig, v0.<span class="pl-ii">2</span>.<span class="pl-ii">2</span>
emmet, v2.<span class="pl-ii">3</span>.<span class="pl-ii">0</span>
less<span class="pl-k">-</span>autocompile, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span>
linter, v0.<span class="pl-ii">9</span>.<span class="pl-ii">0</span>
linter<span class="pl-k">-</span>js<span class="pl-k">-</span>yaml, v0.<span class="pl-ii">1</span>.<span class="pl-ii">3</span>
minimap, v3.<span class="pl-ii">4</span>.<span class="pl-ii">9</span>
project<span class="pl-k">-</span>manager, v1.<span class="pl-ii">14</span>.<span class="pl-ii">1</span>
tabs<span class="pl-k">-</span>to<span class="pl-k">-</span>spaces, v0.<span class="pl-ii">8</span>.<span class="pl-ii">0</span>
terminal, v0.<span class="pl-ii">28</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 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.3</li>
<li>Operating System version: macOs Sierra</li>
<li>Java version: JDK 1.7</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>sleep 1 second for the provider.</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@Override
public String sayHello(String msg) {
try {
TimeUnit.SECONDS.sleep(1);
} catch (Exception e) {
e.printStackTrace();
}
return "welcome";
}"><pre class="notranslate"><code class="notranslate">@Override
public String sayHello(String msg) {
try {
TimeUnit.SECONDS.sleep(1);
} catch (Exception e) {
e.printStackTrace();
}
return "welcome";
}
</code></pre></div>
<ol start="2" dir="auto">
<li>set 1 millisecond to trigger the timeout exception.<br>
<dubbo:reference id="demoService" interface="xxx" timeout="1"><br>
</dubbo:reference></li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">The log exception should be short and without extra sensitive data.</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">The log exception contains the whole RpcInvocation, maybe caused sensitive data's leakage.</p> | <p dir="auto">Add missing UT for RedisRegistry which got identified as part of <a href="https://github.com/apache/incubator-dubbo/pull/3291" data-hovercard-type="pull_request" data-hovercard-url="/apache/dubbo/pull/3291/hovercard">PR</a> review</p>
<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: xxx</li>
<li>Operating System version: xxx</li>
<li>Java version: xxx</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>xxx</li>
<li>xxx</li>
<li>xxx</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?</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here!
</code></pre></div> | 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> 9.0.0</li>
<li><strong>Operating System:</strong> Windows 10 Version 2004 (OS Build 19635.1) x64</li>
<li><strong>Last Known Working Electron version:</strong> 8.3.0</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Electron boots correctly.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Electron crashes early in the boot sequence:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> electron.exe!uv_fatal_error(const int errorno, const char * syscall) Line 62 C
electron.exe!uv_winapi_init() Line 149 C
electron.exe!uv_init() Line 205 C
[Inline Frame] electron.exe!uv__once_inner(uv_once_s * guard, void(*)() callback) Line 51 C
electron.exe!uv_once(uv_once_s * guard, void(*)() callback) Line 73 C
electron.exe!uv_hrtime() Line 458 C
[Inline Frame] electron.exe!node::performance::`dynamic initializer for 'timeOrigin'() Line 42 C++
electron.exe!_GLOBAL__sub_I_node_perf.cc() Line 0 C++
electron.exe!_initterm(void(*)() * first, void(*)() * last) Line 16 C++"><pre class="notranslate"><code class="notranslate">> electron.exe!uv_fatal_error(const int errorno, const char * syscall) Line 62 C
electron.exe!uv_winapi_init() Line 149 C
electron.exe!uv_init() Line 205 C
[Inline Frame] electron.exe!uv__once_inner(uv_once_s * guard, void(*)() callback) Line 51 C
electron.exe!uv_once(uv_once_s * guard, void(*)() callback) Line 73 C
electron.exe!uv_hrtime() Line 458 C
[Inline Frame] electron.exe!node::performance::`dynamic initializer for 'timeOrigin'() Line 42 C++
electron.exe!_GLOBAL__sub_I_node_perf.cc() Line 0 C++
electron.exe!_initterm(void(*)() * first, void(*)() * last) Line 16 C++
</code></pre></div>
<p dir="auto">syscall is "GetModuleHandleA", GetLastError is "The specified module could not be found."</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Just try to run electron.exe.</p> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>11.0.3</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 11.0.1 / macOS 11.1</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>
before update macOS bigsur,it's work fine.</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">my application rely on WEBGL.it's work fine on macOS version before big sur(11.0.1/11.1). but i upgrade macOS version to big sur. when i use WEBGL,GPU process randomly crash.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">it's should work normal like on old macOS version.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">no certain way to recreate this problem๏ผopen my electron application(use webgl)๏ผafter a while ,randomly will get GPU process crash๏ผ I get webglContextlost in javascript and macos system report gpu proces crash๏ผ.</p>
<p dir="auto">this crash into four types.</p>
<ul dir="auto">
<li>Crashed Thread: 3 ThreadPoolForegroundWorker Dispatch queue: librariesCacheSerialQueue</li>
<li>Crashed Thread: 0 CrGpuMain Dispatch queue: com.apple.main-thread</li>
<li>Crashed Thread: 7 VizCompositorThread</li>
<li>Crashed Thread: 0</li>
</ul>
<h3 dir="auto">Screenshots</h3>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">I use electron version 11.0.3 . and cut out some important infomation.</p>
<p dir="auto">it's seem like <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="750323081" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/26687" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/26687/hovercard" href="https://github.com/electron/electron/issues/26687">#26687</a></p>
<p dir="auto">try a lot of way to solve it๏ผbut no get. Hope for a solution. Thanks.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Date/Time: 2020-12-19 22:24:40.566 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 730000 seconds
Time Since Wake: 24000 seconds
System Integrity Protection: enabled
Crashed Thread: 3 ThreadPoolForegroundWorker Dispatch queue: librariesCacheSerialQueue
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
abort() called
XXXX Helper (GPU)(69519,0x70000831d000) malloc: Incorrect checksum for freed object 0x7fd8d9ff1388: probably modified after being freed.
Corrupt value: 0x2020202273656372
hread 3 Crashed:: ThreadPoolForegroundWorker Dispatch queue: librariesCacheSerialQueue
0 libsystem_kernel.dylib 0x00007fff2030e462 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff2033c610 pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2028f720 abort + 120
3 libsystem_malloc.dylib 0x00007fff20170430 malloc_vreport + 548
4 libsystem_malloc.dylib 0x00007fff20184702 malloc_zone_error + 183
5 libsystem_malloc.dylib 0x00007fff20165502 tiny_malloc_from_free_list + 1805
6 libsystem_malloc.dylib 0x00007fff20164876 tiny_malloc_should_clear + 233
7 libsystem_malloc.dylib 0x00007fff20163793 szone_malloc_should_clear + 66
8 com.github.Electron.framework 0x000000010d5f29b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
9 com.github.Electron.framework 0x000000010d5f29b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
10 libsystem_malloc.dylib 0x00007fff2017ceb7 _malloc_zone_calloc + 59
11 libobjc.A.dylib 0x00007fff201d8b0b class_createInstance + 72
12 libdispatch.dylib 0x00007fff20190ef1 _os_object_alloc_realized + 25
13 libsystem_trace.dylib 0x00007fff200b1259 os_log_create + 367
14 libsystem_coreservices.dylib 0x00007fff2a2515da ___log_block_invoke + 23
15 libdispatch.dylib 0x00007fff201917c7 _dispatch_client_callout + 8
16 libdispatch.dylib 0x00007fff2019296b _dispatch_once_callout + 20
17 libsystem_coreservices.dylib 0x00007fff2a24fc25 _dirhelper + 2005
18 libsystem_c.dylib 0x00007fff20211de1 confstr + 457
19 com.apple.Metal 0x00007fff2831dd3f getCacheFolder(char*, unsigned long, char const*) + 48
20 com.apple.Metal 0x00007fff2831e004 getCacheMainFolder(char*, unsigned long) + 86
21 com.apple.Metal 0x00007fff283011d9 MTLCompilerFSCache::openSync() + 125
22 com.apple.Metal 0x00007fff2831e9ed invocation function for block in MTLCompilerFSCache::getElement(MTLUINT256_t, void**, unsigned long*) + 46
23 libdispatch.dylib 0x00007fff201917c7 _dispatch_client_callout + 8
24 libdispatch.dylib 0x00007fff2019e605 _dispatch_lane_barrier_sync_invoke_and_complete + 60
25 com.apple.Metal 0x00007fff28301093 MTLCompilerFSCache::getElement(MTLUINT256_t, void**, unsigned long*) + 353
26 com.apple.Metal 0x00007fff2836e734 MultiLevelPipelineCache::getElement(MTLUINT256_t const&) const + 178
27 com.apple.Metal 0x00007fff2836e014 MTLLibraryBuilder::initLibraryContainerWithRequestData(MTLLibraryContainer*, void*, unsigned long, MTLBuildRequestType, MTLCompileOptions const*, MTLCompilerFunctionRequest const*, unsigned int, bool, void () block_pointer) + 1102
28 com.apple.Metal 0x00007fff2836f0d4 MTLLibraryBuilder::newLibraryWithRequestData(void*, unsigned long, MTLBuildRequestType, MTLCompileOptions const*, MTLCompilerFunctionRequest const*, unsigned int, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 254
29 com.apple.Metal 0x00007fff28370bbc MTLLibraryBuilder::newLibraryWithSource(id<MTLDevice>, NSString*, MTLCompileOptions*, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 5952
30 com.apple.Metal 0x00007fff28348121 -[_MTLDevice newLibraryWithSource:options:completionHandler:] + 75
31 com.github.Electron.framework 0x0000000111650b25 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23129029
32 com.github.Electron.framework 0x0000000111651700 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23132064
33 com.github.Electron.framework 0x000000010d5adee9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
34 com.github.Electron.framework 0x000000010d5c6827 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6130039
35 com.github.Electron.framework 0x000000010d5c61af v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6128383
36 com.github.Electron.framework 0x000000010d5e856c v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6268604
37 com.github.Electron.framework 0x000000010d5c5cf6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6127174
38 com.github.Electron.framework 0x000000010d5cd14a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156954
39 com.github.Electron.framework 0x000000010d5ccf0d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156381
40 com.github.Electron.framework 0x000000010d5e8a23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6269811
41 libsystem_pthread.dylib 0x00007fff2033c950 _pthread_start + 224
42 libsystem_pthread.dylib 0x00007fff2033847b thread_start + 15"><pre class="notranslate"><code class="notranslate">Date/Time: 2020-12-19 22:24:40.566 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 730000 seconds
Time Since Wake: 24000 seconds
System Integrity Protection: enabled
Crashed Thread: 3 ThreadPoolForegroundWorker Dispatch queue: librariesCacheSerialQueue
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
abort() called
XXXX Helper (GPU)(69519,0x70000831d000) malloc: Incorrect checksum for freed object 0x7fd8d9ff1388: probably modified after being freed.
Corrupt value: 0x2020202273656372
hread 3 Crashed:: ThreadPoolForegroundWorker Dispatch queue: librariesCacheSerialQueue
0 libsystem_kernel.dylib 0x00007fff2030e462 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff2033c610 pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2028f720 abort + 120
3 libsystem_malloc.dylib 0x00007fff20170430 malloc_vreport + 548
4 libsystem_malloc.dylib 0x00007fff20184702 malloc_zone_error + 183
5 libsystem_malloc.dylib 0x00007fff20165502 tiny_malloc_from_free_list + 1805
6 libsystem_malloc.dylib 0x00007fff20164876 tiny_malloc_should_clear + 233
7 libsystem_malloc.dylib 0x00007fff20163793 szone_malloc_should_clear + 66
8 com.github.Electron.framework 0x000000010d5f29b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
9 com.github.Electron.framework 0x000000010d5f29b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
10 libsystem_malloc.dylib 0x00007fff2017ceb7 _malloc_zone_calloc + 59
11 libobjc.A.dylib 0x00007fff201d8b0b class_createInstance + 72
12 libdispatch.dylib 0x00007fff20190ef1 _os_object_alloc_realized + 25
13 libsystem_trace.dylib 0x00007fff200b1259 os_log_create + 367
14 libsystem_coreservices.dylib 0x00007fff2a2515da ___log_block_invoke + 23
15 libdispatch.dylib 0x00007fff201917c7 _dispatch_client_callout + 8
16 libdispatch.dylib 0x00007fff2019296b _dispatch_once_callout + 20
17 libsystem_coreservices.dylib 0x00007fff2a24fc25 _dirhelper + 2005
18 libsystem_c.dylib 0x00007fff20211de1 confstr + 457
19 com.apple.Metal 0x00007fff2831dd3f getCacheFolder(char*, unsigned long, char const*) + 48
20 com.apple.Metal 0x00007fff2831e004 getCacheMainFolder(char*, unsigned long) + 86
21 com.apple.Metal 0x00007fff283011d9 MTLCompilerFSCache::openSync() + 125
22 com.apple.Metal 0x00007fff2831e9ed invocation function for block in MTLCompilerFSCache::getElement(MTLUINT256_t, void**, unsigned long*) + 46
23 libdispatch.dylib 0x00007fff201917c7 _dispatch_client_callout + 8
24 libdispatch.dylib 0x00007fff2019e605 _dispatch_lane_barrier_sync_invoke_and_complete + 60
25 com.apple.Metal 0x00007fff28301093 MTLCompilerFSCache::getElement(MTLUINT256_t, void**, unsigned long*) + 353
26 com.apple.Metal 0x00007fff2836e734 MultiLevelPipelineCache::getElement(MTLUINT256_t const&) const + 178
27 com.apple.Metal 0x00007fff2836e014 MTLLibraryBuilder::initLibraryContainerWithRequestData(MTLLibraryContainer*, void*, unsigned long, MTLBuildRequestType, MTLCompileOptions const*, MTLCompilerFunctionRequest const*, unsigned int, bool, void () block_pointer) + 1102
28 com.apple.Metal 0x00007fff2836f0d4 MTLLibraryBuilder::newLibraryWithRequestData(void*, unsigned long, MTLBuildRequestType, MTLCompileOptions const*, MTLCompilerFunctionRequest const*, unsigned int, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 254
29 com.apple.Metal 0x00007fff28370bbc MTLLibraryBuilder::newLibraryWithSource(id<MTLDevice>, NSString*, MTLCompileOptions*, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 5952
30 com.apple.Metal 0x00007fff28348121 -[_MTLDevice newLibraryWithSource:options:completionHandler:] + 75
31 com.github.Electron.framework 0x0000000111650b25 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23129029
32 com.github.Electron.framework 0x0000000111651700 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23132064
33 com.github.Electron.framework 0x000000010d5adee9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
34 com.github.Electron.framework 0x000000010d5c6827 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6130039
35 com.github.Electron.framework 0x000000010d5c61af v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6128383
36 com.github.Electron.framework 0x000000010d5e856c v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6268604
37 com.github.Electron.framework 0x000000010d5c5cf6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6127174
38 com.github.Electron.framework 0x000000010d5cd14a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156954
39 com.github.Electron.framework 0x000000010d5ccf0d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156381
40 com.github.Electron.framework 0x000000010d5e8a23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6269811
41 libsystem_pthread.dylib 0x00007fff2033c950 _pthread_start + 224
42 libsystem_pthread.dylib 0x00007fff2033847b thread_start + 15
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Date/Time: 2020-12-19 22:30:41.206 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 730000 seconds
Time Since Wake: 24000 seconds
System Integrity Protection: enabled
Crashed Thread: 3 ThreadPoolForegroundWorker Dispatch queue: libraryBuilder
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
dyld: in dlopen_preflight()
abort() called
XXXX Helper (GPU)(69782,0x70000c8cc000) malloc: Incorrect checksum for freed object 0x7ff7ce64b6b0: probably modified after being freed.
Corrupt value: 0x756f7365522f7374
Thread 3 Crashed:: ThreadPoolForegroundWorker Dispatch queue: libraryBuilder
0 libsystem_kernel.dylib 0x00007fff2030e462 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff2033c610 pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2028f720 abort + 120
3 libsystem_malloc.dylib 0x00007fff20170430 malloc_vreport + 548
4 libsystem_malloc.dylib 0x00007fff20184702 malloc_zone_error + 183
5 libsystem_malloc.dylib 0x00007fff20168182 tiny_free_list_add_ptr + 1224
6 libsystem_malloc.dylib 0x00007fff2016545d tiny_malloc_from_free_list + 1640
7 libsystem_malloc.dylib 0x00007fff20164876 tiny_malloc_should_clear + 233
8 libsystem_malloc.dylib 0x00007fff20163793 szone_malloc_should_clear + 66
9 com.github.Electron.framework 0x000000010c7399b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
10 com.github.Electron.framework 0x000000010c7399b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
11 libsystem_malloc.dylib 0x00007fff2017ceb7 _malloc_zone_calloc + 59
12 libobjc.A.dylib 0x00007fff201d8b0b class_createInstance + 72
13 libdispatch.dylib 0x00007fff20190ef1 _os_object_alloc_realized + 25
14 libdispatch.dylib 0x00007fff20192150 dispatch_group_create + 21
15 com.apple.Metal 0x00007fff282fb57a invocation function for block in MTLLibraryBuilder::findOrCreateLibraryContainer(MTLUINT256_t const&, bool*) + 238
16 libdispatch.dylib 0x00007fff201917c7 _dispatch_client_callout + 8
17 libdispatch.dylib 0x00007fff2019e605 _dispatch_lane_barrier_sync_invoke_and_complete + 60
18 com.apple.Metal 0x00007fff282fb444 MTLLibraryBuilder::findOrCreateLibraryContainer(MTLUINT256_t const&, bool*) + 148
19 com.apple.Metal 0x00007fff2836f051 MTLLibraryBuilder::newLibraryWithRequestData(void*, unsigned long, MTLBuildRequestType, MTLCompileOptions const*, MTLCompilerFunctionRequest const*, unsigned int, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 123
20 com.apple.Metal 0x00007fff28370bbc MTLLibraryBuilder::newLibraryWithSource(id<MTLDevice>, NSString*, MTLCompileOptions*, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 5952
21 com.apple.Metal 0x00007fff28348121 -[_MTLDevice newLibraryWithSource:options:completionHandler:] + 75
22 com.github.Electron.framework 0x0000000110797b25 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23129029
23 com.github.Electron.framework 0x0000000110798700 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23132064
24 com.github.Electron.framework 0x000000010c6f4ee9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
25 com.github.Electron.framework 0x000000010c70d827 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6130039
26 com.github.Electron.framework 0x000000010c70d1af v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6128383
27 com.github.Electron.framework 0x000000010c72f56c v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6268604
28 com.github.Electron.framework 0x000000010c70ccf6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6127174
29 com.github.Electron.framework 0x000000010c71414a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156954
30 com.github.Electron.framework 0x000000010c713f0d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156381
31 com.github.Electron.framework 0x000000010c72fa23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6269811
32 libsystem_pthread.dylib 0x00007fff2033c950 _pthread_start + 224
33 libsystem_pthread.dylib 0x00007fff2033847b thread_start + 15"><pre class="notranslate"><code class="notranslate">Date/Time: 2020-12-19 22:30:41.206 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 730000 seconds
Time Since Wake: 24000 seconds
System Integrity Protection: enabled
Crashed Thread: 3 ThreadPoolForegroundWorker Dispatch queue: libraryBuilder
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
dyld: in dlopen_preflight()
abort() called
XXXX Helper (GPU)(69782,0x70000c8cc000) malloc: Incorrect checksum for freed object 0x7ff7ce64b6b0: probably modified after being freed.
Corrupt value: 0x756f7365522f7374
Thread 3 Crashed:: ThreadPoolForegroundWorker Dispatch queue: libraryBuilder
0 libsystem_kernel.dylib 0x00007fff2030e462 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff2033c610 pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2028f720 abort + 120
3 libsystem_malloc.dylib 0x00007fff20170430 malloc_vreport + 548
4 libsystem_malloc.dylib 0x00007fff20184702 malloc_zone_error + 183
5 libsystem_malloc.dylib 0x00007fff20168182 tiny_free_list_add_ptr + 1224
6 libsystem_malloc.dylib 0x00007fff2016545d tiny_malloc_from_free_list + 1640
7 libsystem_malloc.dylib 0x00007fff20164876 tiny_malloc_should_clear + 233
8 libsystem_malloc.dylib 0x00007fff20163793 szone_malloc_should_clear + 66
9 com.github.Electron.framework 0x000000010c7399b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
10 com.github.Electron.framework 0x000000010c7399b4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6310660
11 libsystem_malloc.dylib 0x00007fff2017ceb7 _malloc_zone_calloc + 59
12 libobjc.A.dylib 0x00007fff201d8b0b class_createInstance + 72
13 libdispatch.dylib 0x00007fff20190ef1 _os_object_alloc_realized + 25
14 libdispatch.dylib 0x00007fff20192150 dispatch_group_create + 21
15 com.apple.Metal 0x00007fff282fb57a invocation function for block in MTLLibraryBuilder::findOrCreateLibraryContainer(MTLUINT256_t const&, bool*) + 238
16 libdispatch.dylib 0x00007fff201917c7 _dispatch_client_callout + 8
17 libdispatch.dylib 0x00007fff2019e605 _dispatch_lane_barrier_sync_invoke_and_complete + 60
18 com.apple.Metal 0x00007fff282fb444 MTLLibraryBuilder::findOrCreateLibraryContainer(MTLUINT256_t const&, bool*) + 148
19 com.apple.Metal 0x00007fff2836f051 MTLLibraryBuilder::newLibraryWithRequestData(void*, unsigned long, MTLBuildRequestType, MTLCompileOptions const*, MTLCompilerFunctionRequest const*, unsigned int, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 123
20 com.apple.Metal 0x00007fff28370bbc MTLLibraryBuilder::newLibraryWithSource(id<MTLDevice>, NSString*, MTLCompileOptions*, bool, void (id<MTLLibrary>, NSError*) block_pointer) + 5952
21 com.apple.Metal 0x00007fff28348121 -[_MTLDevice newLibraryWithSource:options:completionHandler:] + 75
22 com.github.Electron.framework 0x0000000110797b25 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23129029
23 com.github.Electron.framework 0x0000000110798700 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 23132064
24 com.github.Electron.framework 0x000000010c6f4ee9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
25 com.github.Electron.framework 0x000000010c70d827 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6130039
26 com.github.Electron.framework 0x000000010c70d1af v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6128383
27 com.github.Electron.framework 0x000000010c72f56c v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6268604
28 com.github.Electron.framework 0x000000010c70ccf6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6127174
29 com.github.Electron.framework 0x000000010c71414a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156954
30 com.github.Electron.framework 0x000000010c713f0d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6156381
31 com.github.Electron.framework 0x000000010c72fa23 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6269811
32 libsystem_pthread.dylib 0x00007fff2033c950 _pthread_start + 224
33 libsystem_pthread.dylib 0x00007fff2033847b thread_start + 15
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Date/Time: 2020-12-19 17:13:11.237 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 720000 seconds
Time Since Wake: 5300 seconds
System Integrity Protection: enabled
Notes: Translocated Process
Crashed Thread: 0 CrGpuMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
abort() called
xxxx Helper (GPU)(55031,0x10df58e00) malloc: Incorrect checksum for freed object 0x7fb6c1ced8c0: probably modified after being freed.
Corrupt value: 0x6372756f7365522f
Thread 0 Crashed:: CrGpuMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff2030e462 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff2033c610 pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2028f720 abort + 120
3 libsystem_malloc.dylib 0x00007fff20170430 malloc_vreport + 548
4 libsystem_malloc.dylib 0x00007fff20184702 malloc_zone_error + 183
5 libsystem_malloc.dylib 0x00007fff20168182 tiny_free_list_add_ptr + 1224
6 libsystem_malloc.dylib 0x00007fff201677aa tiny_free_no_lock + 1116
7 libsystem_malloc.dylib 0x00007fff201671f9 free_tiny + 442
8 com.github.Electron.framework 0x0000000105c8251e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18515374
9 com.github.Electron.framework 0x0000000105c821e6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18514550
10 com.github.Electron.framework 0x0000000105c8199e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18512430
11 com.github.Electron.framework 0x0000000105c80dd2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18509410
12 com.github.Electron.framework 0x0000000109333a87 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 25654535
13 com.github.Electron.framework 0x00000001093344ae v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 25657134
14 com.github.Electron.framework 0x0000000109204dcf v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 24414287
15 com.github.Electron.framework 0x0000000109214948 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 24478664
16 com.github.Electron.framework 0x0000000105abcf8f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16658463
17 com.github.Electron.framework 0x0000000106941f4f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31883231
18 com.github.Electron.framework 0x000000010693fd6a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31874554
19 com.github.Electron.framework 0x00000001069438fe v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31889806
20 com.github.Electron.framework 0x0000000105ac26c4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16680788
21 com.github.Electron.framework 0x0000000105099fa9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
22 com.github.Electron.framework 0x00000001050a7715 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6084517
23 com.github.Electron.framework 0x00000001050a7320 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6083504
24 com.github.Electron.framework 0x00000001050d9260 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6288112
25 com.github.Electron.framework 0x00000001050d5d7a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6274570
26 com.github.Electron.framework 0x00000001050d8c3f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6286543
27 com.apple.CoreFoundation 0x00007fff204349fc __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
28 com.apple.CoreFoundation 0x00007fff20434964 __CFRunLoopDoSource0 + 180
29 com.apple.CoreFoundation 0x00007fff204346df __CFRunLoopDoSources0 + 248
30 com.apple.CoreFoundation 0x00007fff20433111 __CFRunLoopRun + 890
31 com.apple.CoreFoundation 0x00007fff204326be CFRunLoopRunSpecific + 563
32 com.apple.Foundation 0x00007fff211bcfa1 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
33 com.github.Electron.framework 0x00000001050d9729 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6289337
34 com.github.Electron.framework 0x00000001050d87d2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6285410
35 com.github.Electron.framework 0x00000001050a7c81 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6085905
36 com.github.Electron.framework 0x0000000105086379 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5948425
37 com.github.Electron.framework 0x0000000106a1007a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32727306
38 com.github.Electron.framework 0x0000000104cc0c7d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 1993997
39 com.github.Electron.framework 0x00000001045042be ElectronInitializeICUandStartNode + 6186878
40 com.github.Electron.framework 0x00000001045047c2 ElectronInitializeICUandStartNode + 6188162
41 com.github.Electron.framework 0x0000000103f1db08 ElectronMain + 136
42 com.kakacode-student.app.helper.GPU 0x0000000103eb4d40 0x103eb1000 + 15680
43 libdyld.dylib 0x00007fff20357631 start + 1"><pre class="notranslate"><code class="notranslate">Date/Time: 2020-12-19 17:13:11.237 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 720000 seconds
Time Since Wake: 5300 seconds
System Integrity Protection: enabled
Notes: Translocated Process
Crashed Thread: 0 CrGpuMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Application Specific Information:
abort() called
xxxx Helper (GPU)(55031,0x10df58e00) malloc: Incorrect checksum for freed object 0x7fb6c1ced8c0: probably modified after being freed.
Corrupt value: 0x6372756f7365522f
Thread 0 Crashed:: CrGpuMain Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff2030e462 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff2033c610 pthread_kill + 263
2 libsystem_c.dylib 0x00007fff2028f720 abort + 120
3 libsystem_malloc.dylib 0x00007fff20170430 malloc_vreport + 548
4 libsystem_malloc.dylib 0x00007fff20184702 malloc_zone_error + 183
5 libsystem_malloc.dylib 0x00007fff20168182 tiny_free_list_add_ptr + 1224
6 libsystem_malloc.dylib 0x00007fff201677aa tiny_free_no_lock + 1116
7 libsystem_malloc.dylib 0x00007fff201671f9 free_tiny + 442
8 com.github.Electron.framework 0x0000000105c8251e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18515374
9 com.github.Electron.framework 0x0000000105c821e6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18514550
10 com.github.Electron.framework 0x0000000105c8199e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18512430
11 com.github.Electron.framework 0x0000000105c80dd2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 18509410
12 com.github.Electron.framework 0x0000000109333a87 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 25654535
13 com.github.Electron.framework 0x00000001093344ae v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 25657134
14 com.github.Electron.framework 0x0000000109204dcf v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 24414287
15 com.github.Electron.framework 0x0000000109214948 v8::internal::compiler::ZoneStats::GetCurrentAllocatedBytes() const + 24478664
16 com.github.Electron.framework 0x0000000105abcf8f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16658463
17 com.github.Electron.framework 0x0000000106941f4f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31883231
18 com.github.Electron.framework 0x000000010693fd6a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31874554
19 com.github.Electron.framework 0x00000001069438fe v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 31889806
20 com.github.Electron.framework 0x0000000105ac26c4 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 16680788
21 com.github.Electron.framework 0x0000000105099fa9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
22 com.github.Electron.framework 0x00000001050a7715 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6084517
23 com.github.Electron.framework 0x00000001050a7320 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6083504
24 com.github.Electron.framework 0x00000001050d9260 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6288112
25 com.github.Electron.framework 0x00000001050d5d7a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6274570
26 com.github.Electron.framework 0x00000001050d8c3f v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6286543
27 com.apple.CoreFoundation 0x00007fff204349fc __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
28 com.apple.CoreFoundation 0x00007fff20434964 __CFRunLoopDoSource0 + 180
29 com.apple.CoreFoundation 0x00007fff204346df __CFRunLoopDoSources0 + 248
30 com.apple.CoreFoundation 0x00007fff20433111 __CFRunLoopRun + 890
31 com.apple.CoreFoundation 0x00007fff204326be CFRunLoopRunSpecific + 563
32 com.apple.Foundation 0x00007fff211bcfa1 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212
33 com.github.Electron.framework 0x00000001050d9729 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6289337
34 com.github.Electron.framework 0x00000001050d87d2 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6285410
35 com.github.Electron.framework 0x00000001050a7c81 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6085905
36 com.github.Electron.framework 0x0000000105086379 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5948425
37 com.github.Electron.framework 0x0000000106a1007a v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32727306
38 com.github.Electron.framework 0x0000000104cc0c7d v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 1993997
39 com.github.Electron.framework 0x00000001045042be ElectronInitializeICUandStartNode + 6186878
40 com.github.Electron.framework 0x00000001045047c2 ElectronInitializeICUandStartNode + 6188162
41 com.github.Electron.framework 0x0000000103f1db08 ElectronMain + 136
42 com.kakacode-student.app.helper.GPU 0x0000000103eb4d40 0x103eb1000 + 15680
43 libdyld.dylib 0x00007fff20357631 start + 1
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Date/Time: 2020-12-19 19:11:00.812 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 720000 seconds
Time Since Wake: 12000 seconds
System Integrity Protection: enabled
Crashed Thread: 7 VizCompositorThread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [61113]
Thread 7 Crashed:: VizCompositorThread
0 libsystem_malloc.dylib 0x00007fff20167e45 tiny_free_list_add_ptr + 395
1 libsystem_malloc.dylib 0x00007fff201677aa tiny_free_no_lock + 1116
2 libsystem_malloc.dylib 0x00007fff201671f9 free_tiny + 442
3 com.github.Electron.framework 0x000000010ee273c7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 14681175
4 com.github.Electron.framework 0x000000010ef34bd9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15785065
5 com.github.Electron.framework 0x000000010ef349d6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15784550
6 com.github.Electron.framework 0x000000010ef342e5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15782773
7 com.github.Electron.framework 0x000000010ef33986 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15780374
8 com.github.Electron.framework 0x000000010ff4ba59 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32656105
9 com.github.Electron.framework 0x000000010ff4aea5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32653109
10 com.github.Electron.framework 0x000000010ff39e0b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32583323
11 com.github.Electron.framework 0x000000010ff374e7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32572791
12 com.github.Electron.framework 0x000000010ff37418 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32572584
13 com.github.Electron.framework 0x000000010d9a8f84 ElectronInitializeICUandStartNode + 5497924
14 com.github.Electron.framework 0x000000010e76c6ea v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7624570
15 com.github.Electron.framework 0x000000010e7721be v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7647822
16 com.github.Electron.framework 0x000000010e771aef v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7646079
17 com.github.Electron.framework 0x000000010e76a2ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7615293
18 com.github.Electron.framework 0x000000010e76a99e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7617070
19 com.github.Electron.framework 0x000000010e7806b9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7706441
20 com.github.Electron.framework 0x000000010e5e6fa9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
21 com.github.Electron.framework 0x000000010e5f4715 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6084517
22 com.github.Electron.framework 0x000000010e5f4320 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6083504
23 com.github.Electron.framework 0x000000010e5bccc5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5856597
24 com.github.Electron.framework 0x000000010e5f4c81 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6085905
25 com.github.Electron.framework 0x000000010e5d3379 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5948425
26 com.github.Electron.framework 0x000000010e60ccbf v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6184271
27 com.github.Electron.framework 0x000000010e621ae3 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6269811
28 libsystem_pthread.dylib 0x00007fff2033c950 _pthread_start + 224
29 libsystem_pthread.dylib 0x00007fff2033847b thread_start + 15"><pre class="notranslate"><code class="notranslate">Date/Time: 2020-12-19 19:11:00.812 +0800
OS Version: macOS 11.0.1 (20B29)
Report Version: 12
Anonymous UUID: CF1FA6AE-1FAF-CBCA-ABC1-58B6808551AC
Sleep/Wake UUID: A700D007-3A47-4775-8BB3-3C1AF4733A99
Time Awake Since Boot: 720000 seconds
Time Since Wake: 12000 seconds
System Integrity Protection: enabled
Crashed Thread: 7 VizCompositorThread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [61113]
Thread 7 Crashed:: VizCompositorThread
0 libsystem_malloc.dylib 0x00007fff20167e45 tiny_free_list_add_ptr + 395
1 libsystem_malloc.dylib 0x00007fff201677aa tiny_free_no_lock + 1116
2 libsystem_malloc.dylib 0x00007fff201671f9 free_tiny + 442
3 com.github.Electron.framework 0x000000010ee273c7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 14681175
4 com.github.Electron.framework 0x000000010ef34bd9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15785065
5 com.github.Electron.framework 0x000000010ef349d6 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15784550
6 com.github.Electron.framework 0x000000010ef342e5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15782773
7 com.github.Electron.framework 0x000000010ef33986 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 15780374
8 com.github.Electron.framework 0x000000010ff4ba59 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32656105
9 com.github.Electron.framework 0x000000010ff4aea5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32653109
10 com.github.Electron.framework 0x000000010ff39e0b v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32583323
11 com.github.Electron.framework 0x000000010ff374e7 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32572791
12 com.github.Electron.framework 0x000000010ff37418 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 32572584
13 com.github.Electron.framework 0x000000010d9a8f84 ElectronInitializeICUandStartNode + 5497924
14 com.github.Electron.framework 0x000000010e76c6ea v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7624570
15 com.github.Electron.framework 0x000000010e7721be v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7647822
16 com.github.Electron.framework 0x000000010e771aef v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7646079
17 com.github.Electron.framework 0x000000010e76a2ad v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7615293
18 com.github.Electron.framework 0x000000010e76a99e v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7617070
19 com.github.Electron.framework 0x000000010e7806b9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 7706441
20 com.github.Electron.framework 0x000000010e5e6fa9 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6029369
21 com.github.Electron.framework 0x000000010e5f4715 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6084517
22 com.github.Electron.framework 0x000000010e5f4320 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6083504
23 com.github.Electron.framework 0x000000010e5bccc5 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5856597
24 com.github.Electron.framework 0x000000010e5f4c81 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6085905
25 com.github.Electron.framework 0x000000010e5d3379 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 5948425
26 com.github.Electron.framework 0x000000010e60ccbf v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6184271
27 com.github.Electron.framework 0x000000010e621ae3 v8::internal::SetupIsolateDelegate::SetupHeap(v8::internal::Heap*) + 6269811
28 libsystem_pthread.dylib 0x00007fff2033c950 _pthread_start + 224
29 libsystem_pthread.dylib 0x00007fff2033847b thread_start + 15
</code></pre></div> | 0 |
<p dir="auto">see <a href="http://docs.scipy.org/doc/scipy/reference/special.html" rel="nofollow">http://docs.scipy.org/doc/scipy/reference/special.html</a></p>
<p dir="auto">in the Bessel Functions section.</p>
<ol dir="auto">
<li>the description of jn() and jv() are identical, however jn() should be "integer order n" while jv() should be "real order v". (c.f. the entries for yn() and yv() )</li>
<li>in the Bessel Functions section, note that the arguments in the function list (typically x1, x2) do not match the arguments in the description (typically n(or v), z)</li>
<li>the optional "out" parameter is not described</li>
</ol> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> scipy.info(scipy.special.jn)
jv(x1, x2[, out])
y=jv(v,z) returns the Bessel function of real order v at complex z."><pre class="notranslate"><code class="notranslate">>>> scipy.info(scipy.special.jn)
jv(x1, x2[, out])
y=jv(v,z) returns the Bessel function of real order v at complex z.
</code></pre></div>
<p dir="auto">Could it be related to <a href="https://github.com/scipy/scipy/blob/master/scipy/special/generate_ufuncs.py#L372">https://github.com/scipy/scipy/blob/master/scipy/special/generate_ufuncs.py#L372</a> where <code class="notranslate">jn</code> is aliased to <code class="notranslate">jv</code> in the ufunc generation code?</p> | 1 |
<p dir="auto">After completing a video challenge, I first see my brownie points increment by 1 and I am directed to the next challenge, but when I havigate away and come back, my recently gained brownie point(s) has/have disappeared and the recently completed challenge(s) is/are not marked as complete.</p> | <p dir="auto">I answer all of the quiz questions correctly and the box pops up saying "Congratulations!<br>
Hike completed. Saving..." but then when I go back to the map or my account page there is no record of me having completed the challenge. No green checkbox, no mark on the calendar, and no point.</p>
<p dir="auto">I did the first video challenge yesterday and everything worked like it's supposed to, but upon logging back in today no progress is being after I complete each subsequent challenge.</p> | 1 |
<p dir="auto">After recent changes to Process (seems like today's changes), getting the following error when firing off a Process command that runs <code class="notranslate">php composer.phar dump-autoload --optimize</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="proc_close(): 219 is not a valid process resource"><pre class="notranslate"><code class="notranslate">proc_close(): 219 is not a valid process resource
</code></pre></div> | <p dir="auto">Hello,<br>
after the recent merge to 2.3 of symfony/process all my servers are returning this error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="proc_close(): 356 is not a valid process resource"><pre class="notranslate"><code class="notranslate">proc_close(): 356 is not a valid process resource
</code></pre></div>
<p dir="auto">Note: the number changes depending on the environment.</p>
<p dir="auto">Any idea? I'm pretty sure that every Laravel 4 installation is broken right now</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="
df = pd.DataFrame(list(range(9)), pd.MultiIndex.from_product([['a', 'b', 'c'], [1, 2, 3]]), ['col'])
df.index
# MultiIndex(levels=[['a', 'b', 'c'], [1, 2, 3]],
# labels=[[0, 0, 0, 1, 1, 1, 2, 2, 2], [0, 1, 2, 0, 1, 2, 0, 1, 2]])
df.to_parquet('test.parquet', engine='fastparquet')
df1 = pd.read_parquet('test.parquet')
df1.index
# MultiIndex(levels=[['a', 'a', 'a', 'b', 'b', 'b', 'c', 'c', 'c'], [1, 2, 3, 1, 2, 3, 1, 2, 3]],
# labels=[[0, 1, 2, 3, 4, 5, 6, 7, 8], [0, 1, 2, 3, 4, 5, 6, 7, 8]],
# names=['level_0', 'level_1'])
#
df.loc['a', 1]
# col 0
# Name: (a, 1), dtype: int64
df1.loc['a', 1]
# Traceback (most recent call last):
# File "<stdin>", line 1, in <module>
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1472, in __getitem__
# return self._getitem_tuple(key)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 870, in _getitem_tuple
# return self._getitem_lowerdim(tup)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1027, in _getitem_lowerdim
# return getattr(section, self.name)[new_key]
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1472, in __getitem__
# return self._getitem_tuple(key)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 870, in _getitem_tuple
# return self._getitem_lowerdim(tup)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 998, in _getitem_lowerdim
# section = self._getitem_axis(key, axis=i)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1911, in _getitem_axis
# self._validate_key(key, axis)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1788, in _validate_key
# key = self._convert_scalar_indexer(key, axis)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 261, in _convert_scalar_indexer
# return ax._convert_scalar_indexer(key, kind=self.name)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexes/base.py", line 1679, in _convert_scalar_indexer
# return self._invalid_indexer('label', key)
# File "/usr/local/lib/python3.7/site-packages/pandas/core/indexes/base.py", line 1863, in _invalid_indexer
# kind=type(key)))
# TypeError: cannot do label indexing on <class 'pandas.core.indexes.base.Index'> with these indexers [1] of <class 'int'>
"><pre class="notranslate"><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-en">list</span>(<span class="pl-en">range</span>(<span class="pl-c1">9</span>)), <span class="pl-s1">pd</span>.<span class="pl-v">MultiIndex</span>.<span class="pl-en">from_product</span>([[<span class="pl-s">'a'</span>, <span class="pl-s">'b'</span>, <span class="pl-s">'c'</span>], [<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>]]), [<span class="pl-s">'col'</span>])
<span class="pl-s1">df</span>.<span class="pl-s1">index</span>
<span class="pl-c"># MultiIndex(levels=[['a', 'b', 'c'], [1, 2, 3]],</span>
<span class="pl-c"># labels=[[0, 0, 0, 1, 1, 1, 2, 2, 2], [0, 1, 2, 0, 1, 2, 0, 1, 2]])</span>
<span class="pl-s1">df</span>.<span class="pl-en">to_parquet</span>(<span class="pl-s">'test.parquet'</span>, <span class="pl-s1">engine</span><span class="pl-c1">=</span><span class="pl-s">'fastparquet'</span>)
<span class="pl-s1">df1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_parquet</span>(<span class="pl-s">'test.parquet'</span>)
<span class="pl-s1">df1</span>.<span class="pl-s1">index</span>
<span class="pl-c"># MultiIndex(levels=[['a', 'a', 'a', 'b', 'b', 'b', 'c', 'c', 'c'], [1, 2, 3, 1, 2, 3, 1, 2, 3]],</span>
<span class="pl-c"># labels=[[0, 1, 2, 3, 4, 5, 6, 7, 8], [0, 1, 2, 3, 4, 5, 6, 7, 8]],</span>
<span class="pl-c"># names=['level_0', 'level_1'])</span>
<span class="pl-c"># </span>
<span class="pl-s1">df</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'a'</span>, <span class="pl-c1">1</span>]
<span class="pl-c"># col 0</span>
<span class="pl-c"># Name: (a, 1), dtype: int64</span>
<span class="pl-s1">df1</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'a'</span>, <span class="pl-c1">1</span>]
<span class="pl-c"># Traceback (most recent call last):</span>
<span class="pl-c"># File "<stdin>", line 1, in <module></span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1472, in __getitem__</span>
<span class="pl-c"># return self._getitem_tuple(key)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 870, in _getitem_tuple</span>
<span class="pl-c"># return self._getitem_lowerdim(tup)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1027, in _getitem_lowerdim</span>
<span class="pl-c"># return getattr(section, self.name)[new_key]</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1472, in __getitem__</span>
<span class="pl-c"># return self._getitem_tuple(key)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 870, in _getitem_tuple</span>
<span class="pl-c"># return self._getitem_lowerdim(tup)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 998, in _getitem_lowerdim</span>
<span class="pl-c"># section = self._getitem_axis(key, axis=i)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1911, in _getitem_axis</span>
<span class="pl-c"># self._validate_key(key, axis)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 1788, in _validate_key</span>
<span class="pl-c"># key = self._convert_scalar_indexer(key, axis)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexing.py", line 261, in _convert_scalar_indexer</span>
<span class="pl-c"># return ax._convert_scalar_indexer(key, kind=self.name)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexes/base.py", line 1679, in _convert_scalar_indexer</span>
<span class="pl-c"># return self._invalid_indexer('label', key)</span>
<span class="pl-c"># File "/usr/local/lib/python3.7/site-packages/pandas/core/indexes/base.py", line 1863, in _invalid_indexer</span>
<span class="pl-c"># kind=type(key)))</span>
<span class="pl-c"># TypeError: cannot do label indexing on <class 'pandas.core.indexes.base.Index'> with these indexers [1] of <class 'int'></span></pre></div>
<h4 dir="auto">Problem description</h4>
<ol dir="auto">
<li>When importing <code class="notranslate">DataFrame</code> by <code class="notranslate">read_parquet()</code>, <code class="notranslate">MultiIndex.levels</code> becomes large and duplicated.</li>
<li>The imported <code class="notranslate">DataFrame</code> fails indexing.</li>
</ol>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
<h2 dir="auto">[paste the output of <code class="notranslate">pd.show_versions()</code> here below this line]<br>
INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 3.7.0.final.0<br>
python-bits: 64<br>
OS: Darwin<br>
OS-release: 17.7.0<br>
machine: x86_64<br>
processor: i386<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: zh_CN.UTF-8<br>
LOCALE: zh_CN.UTF-8</p>
<p dir="auto">pandas: 0.23.3<br>
pytest: None<br>
pip: 10.0.1<br>
setuptools: 39.2.0<br>
Cython: 0.28.4<br>
numpy: 1.14.5<br>
scipy: 1.1.0<br>
pyarrow: None<br>
xarray: None<br>
IPython: None<br>
sphinx: None<br>
patsy: None<br>
dateutil: 2.7.3<br>
pytz: 2018.5<br>
blosc: None<br>
bottleneck: None<br>
tables: None<br>
numexpr: None<br>
feather: None<br>
matplotlib: None<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: None<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: 4.6.0<br>
html5lib: None<br>
sqlalchemy: None<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: None<br>
s3fs: None<br>
fastparquet: 0.1.5<br>
pandas_gbq: None<br>
pandas_datareader: None</p>
<blockquote>
<blockquote>
<blockquote>
</blockquote>
</blockquote>
</blockquote>
</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]: df = pd.DataFrame(index=range(3), columns=['A', 'B', 'C', 'D', 'E', 'F'])
In [3]: df.loc[0, ['A', 'D']] = (1,2)
In [4]: df.loc[:, ['B', 'E']] = (1,2)
In [5]: df[['C', 'F']] = (1,2)
In [6]: df
Out[6]:
A B C D E F
0 1 1 1 2 2 2
1 NaN 1 1 NaN 2 2
2 NaN 1 1 NaN 2 2
In [7]: dfdup = pd.DataFrame(index=range(3), columns=['A', 'B', 'C']*2)
In [8]: dfdup.loc[0, 'A'] = (1,2) # Works
In [9]: dfdup.loc[:, 'B'] = (1,2) # Works
In [10]: dfdup['C'] = (1,2) # Fails
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-10-17d5611af828> in <module>()
----> 1 dfdup['C'] = (1,2)
/home/pietro/nobackup/repo/pandas/pandas/core/frame.py in __setitem__(self, key, value)
2421 else:
2422 # set column
-> 2423 self._set_item(key, value)
2424
2425 def _setitem_slice(self, key, value):
/home/pietro/nobackup/repo/pandas/pandas/core/frame.py in _set_item(self, key, value)
2487
2488 self._ensure_valid_index(value)
-> 2489 value = self._sanitize_column(key, value)
2490 NDFrame._set_item(self, key, value)
2491
/home/pietro/nobackup/repo/pandas/pandas/core/frame.py in _sanitize_column(self, key, value, broadcast)
2658
2659 # turn me into an ndarray
-> 2660 value = _sanitize_index(value, self.index, copy=False)
2661 if not isinstance(value, (np.ndarray, Index)):
2662 if isinstance(value, list) and len(value) > 0:
/home/pietro/nobackup/repo/pandas/pandas/core/series.py in _sanitize_index(data, index, copy)
2847
2848 if len(data) != len(index):
-> 2849 raise ValueError('Length of values does not match length of ' 'index')
2850
2851 if isinstance(data, PeriodIndex):
ValueError: Length of values does not match length of index
In [11]: dfdup
Out[11]:
A B C A B C
0 1 1 NaN 2 2 NaN
1 NaN 1 NaN NaN 2 NaN
2 NaN 1 NaN NaN 2 NaN"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">2</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">index</span><span class="pl-c1">=</span><span class="pl-en">range</span>(<span class="pl-c1">3</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-s">'C'</span>, <span class="pl-s">'D'</span>, <span class="pl-s">'E'</span>, <span class="pl-s">'F'</span>])
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">df</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>, [<span class="pl-s">'A'</span>, <span class="pl-s">'D'</span>]] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-s1">df</span>.<span class="pl-s1">loc</span>[:, [<span class="pl-s">'B'</span>, <span class="pl-s">'E'</span>]] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">5</span>]: <span class="pl-s1">df</span>[[<span class="pl-s">'C'</span>, <span class="pl-s">'F'</span>]] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">6</span>]: <span class="pl-s1">df</span>
<span class="pl-v">Out</span>[<span class="pl-c1">6</span>]:
<span class="pl-v">A</span> <span class="pl-v">B</span> <span class="pl-v">C</span> <span class="pl-v">D</span> <span class="pl-v">E</span> <span class="pl-v">F</span>
<span class="pl-c1">0</span> <span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span> <span class="pl-c1">2</span> <span class="pl-c1">2</span>
<span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-c1">2</span> <span class="pl-c1">2</span>
<span class="pl-c1">2</span> <span class="pl-v">NaN</span> <span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-c1">2</span> <span class="pl-c1">2</span>
<span class="pl-v">In</span> [<span class="pl-c1">7</span>]: <span class="pl-s1">dfdup</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-en">range</span>(<span class="pl-c1">3</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-s">'C'</span>]<span class="pl-c1">*</span><span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">8</span>]: <span class="pl-s1">dfdup</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>, <span class="pl-s">'A'</span>] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>) <span class="pl-c"># Works</span>
<span class="pl-v">In</span> [<span class="pl-c1">9</span>]: <span class="pl-s1">dfdup</span>.<span class="pl-s1">loc</span>[:, <span class="pl-s">'B'</span>] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>) <span class="pl-c"># Works</span>
<span class="pl-v">In</span> [<span class="pl-c1">10</span>]: <span class="pl-s1">dfdup</span>[<span class="pl-s">'C'</span>] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>) <span class="pl-c"># Fails</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-s1">ipython</span><span class="pl-c1">-</span><span class="pl-s1">input</span><span class="pl-c1">-</span><span class="pl-c1">10</span><span class="pl-c1">-</span><span class="pl-c1">17</span><span class="pl-s1">d5611af828</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">dfdup</span>[<span class="pl-s">'C'</span>] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>)
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">frame</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">__setitem__</span>(<span class="pl-s1">self</span>, <span class="pl-s1">key</span>, <span class="pl-s1">value</span>)
<span class="pl-c1">2421</span> <span class="pl-s1">else</span>:
<span class="pl-c1">2422</span> <span class="pl-c"># set column</span>
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">2423</span> <span class="pl-s1">self</span>.<span class="pl-en">_set_item</span>(<span class="pl-s1">key</span>, <span class="pl-s1">value</span>)
<span class="pl-c1">2424</span>
<span class="pl-c1">2425</span> <span class="pl-k">def</span> <span class="pl-en">_setitem_slice</span>(<span class="pl-s1">self</span>, <span class="pl-s1">key</span>, <span class="pl-s1">value</span>):
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">frame</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_set_item</span>(<span class="pl-s1">self</span>, <span class="pl-s1">key</span>, <span class="pl-s1">value</span>)
<span class="pl-c1">2487</span>
<span class="pl-c1">2488</span> <span class="pl-s1">self</span>.<span class="pl-en">_ensure_valid_index</span>(<span class="pl-s1">value</span>)
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">2489</span> <span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">_sanitize_column</span>(<span class="pl-s1">key</span>, <span class="pl-s1">value</span>)
<span class="pl-c1">2490</span> <span class="pl-v">NDFrame</span>.<span class="pl-en">_set_item</span>(<span class="pl-s1">self</span>, <span class="pl-s1">key</span>, <span class="pl-s1">value</span>)
<span class="pl-c1">2491</span>
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">frame</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_sanitize_column</span>(<span class="pl-s1">self</span>, <span class="pl-s1">key</span>, <span class="pl-s1">value</span>, <span class="pl-s1">broadcast</span>)
<span class="pl-c1">2658</span>
<span class="pl-c1">2659</span> <span class="pl-c"># turn me into an ndarray</span>
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">2660</span> <span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-en">_sanitize_index</span>(<span class="pl-s1">value</span>, <span class="pl-s1">self</span>.<span class="pl-s1">index</span>, <span class="pl-s1">copy</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)
<span class="pl-c1">2661</span> <span class="pl-k">if</span> <span class="pl-c1">not</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">value</span>, (<span class="pl-s1">np</span>.<span class="pl-s1">ndarray</span>, <span class="pl-v">Index</span>)):
<span class="pl-c1">2662</span> <span class="pl-k">if</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">value</span>, <span class="pl-s1">list</span>) <span class="pl-c1">and</span> <span class="pl-en">len</span>(<span class="pl-s1">value</span>) <span class="pl-c1">></span> <span class="pl-c1">0</span>:
<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">pietro</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">series</span>.<span class="pl-s1">py</span> <span class="pl-c1">in</span> <span class="pl-en">_sanitize_index</span>(<span class="pl-s1">data</span>, <span class="pl-s1">index</span>, <span class="pl-s1">copy</span>)
<span class="pl-c1">2847</span>
<span class="pl-c1">2848</span> <span class="pl-k">if</span> <span class="pl-en">len</span>(<span class="pl-s1">data</span>) <span class="pl-c1">!=</span> <span class="pl-en">len</span>(<span class="pl-s1">index</span>):
<span class="pl-c1">-></span> <span class="pl-c1">2849</span> <span class="pl-k">raise</span> <span class="pl-v">ValueError</span>(<span class="pl-s">'Length of values does not match length of '</span> <span class="pl-s">'index'</span>)
<span class="pl-c1">2850</span>
<span class="pl-c1">2851</span> <span class="pl-k">if</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">data</span>, <span class="pl-v">PeriodIndex</span>):
<span class="pl-v">ValueError</span>: <span class="pl-v">Length</span> <span class="pl-s1">of</span> <span class="pl-s1">values</span> <span class="pl-s1">does</span> <span class="pl-c1">not</span> <span class="pl-s1">match</span> <span class="pl-s1">length</span> <span class="pl-s1">of</span> <span class="pl-s1">index</span>
<span class="pl-v">In</span> [<span class="pl-c1">11</span>]: <span class="pl-s1">dfdup</span>
<span class="pl-v">Out</span>[<span class="pl-c1">11</span>]:
<span class="pl-v">A</span> <span class="pl-v">B</span> <span class="pl-v">C</span> <span class="pl-v">A</span> <span class="pl-v">B</span> <span class="pl-v">C</span>
<span class="pl-c1">0</span> <span class="pl-c1">1</span> <span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-c1">2</span> <span class="pl-c1">2</span> <span class="pl-v">NaN</span>
<span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-v">NaN</span> <span class="pl-c1">2</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2</span> <span class="pl-v">NaN</span> <span class="pl-c1">1</span> <span class="pl-v">NaN</span> <span class="pl-v">NaN</span> <span class="pl-c1">2</span> <span class="pl-v">NaN</span></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">While <code class="notranslate">loc</code> correctly treats <code class="notranslate">A</code> as referring to two columns, <code class="notranslate">DataFrame[.]</code> sees one value only and raises. Note that <code class="notranslate">Series[.]</code> behaves correctly:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [12]: s = pd.Series(index=['A', 'B']*2)
In [13]: s.loc['A'] = (1,2)
In [14]: s
Out[14]:
A 1.0
B NaN
A 2.0
B NaN
dtype: float64
In [15]: s['B'] = (1,2)
In [16]: s
Out[16]:
A 1.0
B 1.0
A 2.0
B 2.0
dtype: float64"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">12</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-s1">index</span><span class="pl-c1">=</span>[<span class="pl-s">'A'</span>, <span class="pl-s">'B'</span>]<span class="pl-c1">*</span><span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">13</span>]: <span class="pl-s1">s</span>.<span class="pl-s1">loc</span>[<span class="pl-s">'A'</span>] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">14</span>]: <span class="pl-s1">s</span>
<span class="pl-v">Out</span>[<span class="pl-c1">14</span>]:
<span class="pl-v">A</span> <span class="pl-c1">1.0</span>
<span class="pl-v">B</span> <span class="pl-v">NaN</span>
<span class="pl-v">A</span> <span class="pl-c1">2.0</span>
<span class="pl-v">B</span> <span class="pl-v">NaN</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">float64</span>
<span class="pl-v">In</span> [<span class="pl-c1">15</span>]: <span class="pl-s1">s</span>[<span class="pl-s">'B'</span>] <span class="pl-c1">=</span> (<span class="pl-c1">1</span>,<span class="pl-c1">2</span>)
<span class="pl-v">In</span> [<span class="pl-c1">16</span>]: <span class="pl-s1">s</span>
<span class="pl-v">Out</span>[<span class="pl-c1">16</span>]:
<span class="pl-v">A</span> <span class="pl-c1">1.0</span>
<span class="pl-v">B</span> <span class="pl-c1">1.0</span>
<span class="pl-v">A</span> <span class="pl-c1">2.0</span>
<span class="pl-v">B</span> <span class="pl-c1">2.0</span>
<span class="pl-s1">dtype</span>: <span class="pl-s1">float64</span></pre></div>
<h4 dir="auto">Expected Output</h4>
<p dir="auto"><code class="notranslate">Out[6]</code> (except for column names, obviously)</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.7.0-1-amd64<br>
machine: x86_64<br>
processor:<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: it_IT.utf8<br>
LOCALE: it_IT.UTF-8</p>
<p dir="auto">pandas: 0.19.0+605.gc081d5782<br>
pytest: 3.0.6<br>
pip: 9.0.1<br>
setuptools: 33.1.1<br>
Cython: 0.25.2<br>
numpy: 1.12.0<br>
scipy: 0.18.1<br>
xarray: None<br>
IPython: 5.1.0.dev<br>
sphinx: 1.4.9<br>
patsy: 0.3.0-dev<br>
dateutil: 2.5.3<br>
pytz: 2016.7<br>
blosc: None<br>
bottleneck: 1.2.0<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.1.2<br>
xlsxwriter: 0.9.6<br>
lxml: 3.7.1<br>
bs4: 4.5.3<br>
html5lib: 0.999999999<br>
sqlalchemy: 1.0.15<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.8<br>
s3fs: None<br>
pandas_gbq: None<br>
pandas_datareader: 0.2.1</p>
</details> | 0 |
<p dir="auto">Based on the documentation <a href="https://www.tensorflow.org/api_docs/python/tf/nn/in_top_k" rel="nofollow">here</a> tf.nn.in_top_k treats ties as positive, which is almost never what you'd want. This is a major flaw, which leads to misleading metrics. An all zero predictions would give you 0 error with any targets. I think the default behavior should be to not count ties,</p> | <p dir="auto">This is a feature request related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="234166884" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/10489" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/10489/hovercard" href="https://github.com/tensorflow/tensorflow/issues/10489">#10489</a> (tie handling in function in_top_k)</p>
<p dir="auto">Would it be possible to add an option/argument specifying whether ties should be included or excluded?<br>
In other words, make it possible for ties to return False instead of True.</p>
<p dir="auto">Thanks!</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>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>v11.1.1</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 10.13.6</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>none</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">I follow the official document: <a href="https://www.electronjs.org/docs/api/web-contents#contentssetdevtoolswebcontentsdevtoolswebcontents" rel="nofollow">https://www.electronjs.org/docs/api/web-contents#contentssetdevtoolswebcontentsdevtoolswebcontents</a> to set devtools, I expect the devtools tool to be debugged.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The devtools is opened successfully, but nothing in the devtools, I can't do any debugging in the devtools view.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">This is the html code.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<html>
<head>
<style type="text/css">
* {
margin: 0;
}
#browser {
display: flex;
width: 500px;
height: 500px;
}
#devtools {
display: flex;
width: 500px;
height: 500px;
}
</style>
</head>
<body>
<div style="display: flex;height: 1000px;">
<webview id="browser" src="https://github.com"></webview>
<webview id="devtools" src="about:blank"></webview>
</div>
<script>
const { webContents } = electron.remote
const emittedOnce = (element, eventName) => new Promise(resolve => {
element.addEventListener(eventName, event => resolve(event), { once: true })
})
const browserView = document.getElementById('browser')
const devtoolsView = document.getElementById('devtools')
const browserReady = emittedOnce(browserView, 'dom-ready')
const devtoolsReady = emittedOnce(devtoolsView, 'dom-ready')
Promise.all([browserReady, devtoolsReady]).then(() => {
console.log('ready');
const browser = webContents.fromId(browserView.getWebContentsId())
const devtools = webContents.fromId(devtoolsView.getWebContentsId())
browser.setDevToolsWebContents(devtools)
browser.openDevTools()
})
console.log('start');
</script>
</body>
</html>"><pre class="notranslate"><code class="notranslate"><html>
<head>
<style type="text/css">
* {
margin: 0;
}
#browser {
display: flex;
width: 500px;
height: 500px;
}
#devtools {
display: flex;
width: 500px;
height: 500px;
}
</style>
</head>
<body>
<div style="display: flex;height: 1000px;">
<webview id="browser" src="https://github.com"></webview>
<webview id="devtools" src="about:blank"></webview>
</div>
<script>
const { webContents } = electron.remote
const emittedOnce = (element, eventName) => new Promise(resolve => {
element.addEventListener(eventName, event => resolve(event), { once: true })
})
const browserView = document.getElementById('browser')
const devtoolsView = document.getElementById('devtools')
const browserReady = emittedOnce(browserView, 'dom-ready')
const devtoolsReady = emittedOnce(devtoolsView, 'dom-ready')
Promise.all([browserReady, devtoolsReady]).then(() => {
console.log('ready');
const browser = webContents.fromId(browserView.getWebContentsId())
const devtools = webContents.fromId(devtoolsView.getWebContentsId())
browser.setDevToolsWebContents(devtools)
browser.openDevTools()
})
console.log('start');
</script>
</body>
</html>
</code></pre></div>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/8097860/102987528-6be68580-454d-11eb-808b-8631e064e494.png"><img src="https://user-images.githubusercontent.com/8097860/102987528-6be68580-454d-11eb-808b-8631e064e494.png" alt="electron-issue" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional Information</h3> | <ul dir="auto">
<li>Electron version: <code class="notranslate">1.7.7</code>, <code class="notranslate">1.6.12</code></li>
<li>Operating system: macOS 10.13</li>
</ul>
<p dir="auto">We're getting several reports of a native crash on startup for the Slack app, when running the High Sierra beta. One in particular also tried the Trello Electron app and found it crashed in the same way:</p>
<blockquote>
<p dir="auto">Yesterday I install the Trello app from the Mac App Store and it acts like the Slack app, Iโm getting the same error from Apple. Something with com.github.electron.framework at GetLoginItemSettings() function.</p>
</blockquote>
<details>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Process: Slack [21601]
Path: /Applications/Slack.app/Contents/MacOS/Slack
Identifier: com.tinyspeck.slackmacgap
Version: 2.8.0 (4320)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Slack [21601]
User ID: 501
Date/Time: 2017-09-18 23:43:10.229 +0200
OS Version: Mac OS X 10.13 (17A360a)
Report Version: 12
Anonymous UUID: BE4E1D94-B2A3-7F73-5F03-897E8B01F443
Sleep/Wake UUID: 03C2BD4F-42DF-48E7-BB65-85747C3FA58B
Time Awake Since Boot: 93000 seconds
Time Since Wake: 17000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000
Application Specific Information:
*** CFEqual() called with NULL first argument ***
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.apple.CoreFoundation 0x00007fff3d06e73c CFEqual + 620
1 com.github.electron.framework 0x000000010d761856 0x10d53a000 + 2259030
2 com.github.electron.framework 0x000000010d7616f2 0x10d53a000 + 2258674
3 com.github.electron.framework 0x000000010d5d61e8 atom::Browser::GetLoginItemSettings(atom::Browser::LoginItemSettings const&) + 24
4 com.github.electron.framework 0x000000010d54688d atom::api::App::GetLoginItemSettings(mate::Arguments*) + 61
5 com.github.electron.framework 0x000000010d5512a9 0x10d53a000 + 94889
6 com.github.electron.framework 0x000000010d55126e 0x10d53a000 + 94830
7 com.github.electron.framework 0x000000010d551244 0x10d53a000 + 94788
8 com.github.electron.framework 0x000000010d55120f base::internal::Invoker<base::internal::BindState<atom::Browser::LoginItemSettings (atom::api::App::*)(mate::Arguments*)>, atom::Browser::LoginItemSettings (atom::api::App*, mate::Arguments*)>::Run(base::internal::BindStateBase*, atom::api::App*&&, mate::Arguments*&&) + 31
9 com.github.electron.framework 0x000000010d550f8f 0x10d53a000 + 94095
10 com.github.electron.framework 0x000000010d550c99 0x10d53a000 + 93337
11 com.github.electron.framework 0x000000010d550b4c mate::internal::Dispatcher<atom::Browser::LoginItemSettings (atom::api::App*, mate::Arguments*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 124
12 libnode.dylib 0x0000000111a00d55 0x111805000 + 2080085
13 libnode.dylib 0x0000000111ab1d18 0x111805000 + 2805016
14 libnode.dylib 0x0000000111ab1271 0x111805000 + 2802289
15 ??? 0x000027bbb9e843a7 0 + 43687231374247
16 ??? 0x000027bbba429d8e 0 + 43687237295502
17 ??? 0x000027bbba429a84 0 + 43687237294724
18 ??? 0x000027bbb9e85cd5 0 + 43687231380693
19 ??? 0x000027bbb9f0915a 0 + 43687231918426
20 ??? 0x000027bbb9ef23f8 0 + 43687231824888
21 ??? 0x000027bbba3a3ff2 0 + 43687236747250
22 ??? 0x000027bbba3a3dea 0 + 43687236746730
23 ??? 0x000027bbba2f957b 0 + 43687236048251
24 ??? 0x000027bbba429822 0 + 43687237294114
25 ??? 0x000027bbba2f957b 0 + 43687236048251
26 ??? 0x000027bbba4042ea 0 + 43687237141226
27 ??? 0x000027bbba40419c 0 + 43687237140892
28 ??? 0x000027bbba2f957b 0 + 43687236048251
29 ??? 0x000027bbba42962b 0 + 43687237293611
30 ??? 0x000027bbba4286c4 0 + 43687237289668
31 ??? 0x000027bbb9e85cd5 0 + 43687231380693
32 ??? 0x000027bbb9ef1ac3 0 + 43687231822531
33 ??? 0x000027bbb9eb65c1 0 + 43687231579585
34 libnode.dylib 0x0000000111c7e4a5 0x111805000 + 4691109
35 libnode.dylib 0x0000000111c7e209 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>*) + 169
36 libnode.dylib 0x0000000111a1fd5b v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*) + 459
37 libnode.dylib 0x00000001118df8f6 node::MakeCallback(node::Environment*, v8::Local<v8::Value>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*) + 726
38 libnode.dylib 0x00000001118dfe58 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*) + 104
39 libnode.dylib 0x00000001118dfdbf node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::String>, int, v8::Local<v8::Value>*) + 95
40 libnode.dylib 0x00000001118dfd30 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, char const*, int, v8::Local<v8::Value>*) + 80
41 com.github.electron.framework 0x000000010d63375a mate::internal::CallMethodWithArgs(v8::Isolate*, v8::Local<v8::Object>, char const*, std::__1::vector<v8::Local<v8::Value>, std::__1::allocator<v8::Local<v8::Value> > >*) + 74
42 com.github.electron.framework 0x000000010d54c1a9 0x10d53a000 + 74153
43 com.github.electron.framework 0x000000010d5a81ab 0x10d53a000 + 450987
44 com.github.electron.framework 0x000000010d5a8114 0x10d53a000 + 450836
45 com.github.electron.framework 0x000000010d59f47d 0x10d53a000 + 414845
46 com.github.electron.framework 0x000000010d5a093e atom::api::WebContents::DocumentLoadedInFrame(content::RenderFrameHost*) + 62
47 com.github.electron.framework 0x000000010d5a0960 non-virtual thunk to atom::api::WebContents::DocumentLoadedInFrame(content::RenderFrameHost*) + 16
48 com.github.electron.framework 0x000000010dd4cc74 0x10d53a000 + 8465524
49 com.github.electron.framework 0x000000010dd4ca96 0x10d53a000 + 8465046
50 com.github.electron.framework 0x000000010dd4c146 0x10d53a000 + 8462662
51 com.github.electron.framework 0x000000010dbbb871 0x10d53a000 + 6822001
52 com.github.electron.framework 0x000000010e23f98b 0x10d53a000 + 13654411
53 com.github.electron.framework 0x000000010d79b351 0x10d53a000 + 2495313
54 com.github.electron.framework 0x000000010d76df26 0x10d53a000 + 2309926
55 com.github.electron.framework 0x000000010d76e1fc 0x10d53a000 + 2310652
56 com.github.electron.framework 0x000000010d76e543 0x10d53a000 + 2311491
57 com.github.electron.framework 0x000000010d77188d 0x10d53a000 + 2324621
58 com.github.electron.framework 0x000000010d72e73a 0x10d53a000 + 2049850
59 com.github.electron.framework 0x000000010d771304 0x10d53a000 + 2323204
60 com.apple.CoreFoundation 0x00007fff3d0f56c1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
61 com.apple.CoreFoundation 0x00007fff3d1af2cc __CFRunLoopDoSource0 + 108
62 com.apple.CoreFoundation 0x00007fff3d0d8160 __CFRunLoopDoSources0 + 208
63 com.apple.CoreFoundation 0x00007fff3d0d75dd __CFRunLoopRun + 1293
64 com.apple.CoreFoundation 0x00007fff3d0d6e43 CFRunLoopRunSpecific + 483
65 com.apple.HIToolbox 0x00007fff3c3f6866 RunCurrentEventLoopInMode + 286
66 com.apple.HIToolbox 0x00007fff3c3f65d6 ReceiveNextEventCommon + 613
67 com.apple.HIToolbox 0x00007fff3c3f6354 _BlockUntilNextEventMatchingListInModeWithFilter + 64
68 com.apple.AppKit 0x00007fff3a6f444f _DPSNextEvent + 2085
69 com.apple.AppKit 0x00007fff3ae89508 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 3044
70 com.apple.AppKit 0x00007fff3a6e925d -[NSApplication run] + 764
71 com.github.electron.framework 0x000000010d7720de 0x10d53a000 + 2326750
72 com.github.electron.framework 0x000000010d77174c 0x10d53a000 + 2324300
73 com.github.electron.framework 0x000000010d76dc8e 0x10d53a000 + 2309262
74 com.github.electron.framework 0x000000010d783653 0x10d53a000 + 2397779
75 com.github.electron.framework 0x000000010d9d387b 0x10d53a000 + 4823163
76 com.github.electron.framework 0x000000010d9d36d0 0x10d53a000 + 4822736
77 com.github.electron.framework 0x000000010d9d5e12 0x10d53a000 + 4832786
78 com.github.electron.framework 0x000000010d9cf7ac 0x10d53a000 + 4806572
79 com.github.electron.framework 0x000000010d93530d 0x10d53a000 + 4174605
80 com.github.electron.framework 0x000000010d934406 0x10d53a000 + 4170758
81 com.github.electron.framework 0x000000010d53bd07 AtomMain + 71
82 com.tinyspeck.slackmacgap 0x000000010cd38f26 main + 38
83 libdyld.dylib 0x00007fff645d0145 start + 1"><pre class="notranslate"><code class="notranslate">Process: Slack [21601]
Path: /Applications/Slack.app/Contents/MacOS/Slack
Identifier: com.tinyspeck.slackmacgap
Version: 2.8.0 (4320)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Slack [21601]
User ID: 501
Date/Time: 2017-09-18 23:43:10.229 +0200
OS Version: Mac OS X 10.13 (17A360a)
Report Version: 12
Anonymous UUID: BE4E1D94-B2A3-7F73-5F03-897E8B01F443
Sleep/Wake UUID: 03C2BD4F-42DF-48E7-BB65-85747C3FA58B
Time Awake Since Boot: 93000 seconds
Time Since Wake: 17000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 CrBrowserMain Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000
Application Specific Information:
*** CFEqual() called with NULL first argument ***
Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread
0 com.apple.CoreFoundation 0x00007fff3d06e73c CFEqual + 620
1 com.github.electron.framework 0x000000010d761856 0x10d53a000 + 2259030
2 com.github.electron.framework 0x000000010d7616f2 0x10d53a000 + 2258674
3 com.github.electron.framework 0x000000010d5d61e8 atom::Browser::GetLoginItemSettings(atom::Browser::LoginItemSettings const&) + 24
4 com.github.electron.framework 0x000000010d54688d atom::api::App::GetLoginItemSettings(mate::Arguments*) + 61
5 com.github.electron.framework 0x000000010d5512a9 0x10d53a000 + 94889
6 com.github.electron.framework 0x000000010d55126e 0x10d53a000 + 94830
7 com.github.electron.framework 0x000000010d551244 0x10d53a000 + 94788
8 com.github.electron.framework 0x000000010d55120f base::internal::Invoker<base::internal::BindState<atom::Browser::LoginItemSettings (atom::api::App::*)(mate::Arguments*)>, atom::Browser::LoginItemSettings (atom::api::App*, mate::Arguments*)>::Run(base::internal::BindStateBase*, atom::api::App*&&, mate::Arguments*&&) + 31
9 com.github.electron.framework 0x000000010d550f8f 0x10d53a000 + 94095
10 com.github.electron.framework 0x000000010d550c99 0x10d53a000 + 93337
11 com.github.electron.framework 0x000000010d550b4c mate::internal::Dispatcher<atom::Browser::LoginItemSettings (atom::api::App*, mate::Arguments*)>::DispatchToCallback(v8::FunctionCallbackInfo<v8::Value> const&) + 124
12 libnode.dylib 0x0000000111a00d55 0x111805000 + 2080085
13 libnode.dylib 0x0000000111ab1d18 0x111805000 + 2805016
14 libnode.dylib 0x0000000111ab1271 0x111805000 + 2802289
15 ??? 0x000027bbb9e843a7 0 + 43687231374247
16 ??? 0x000027bbba429d8e 0 + 43687237295502
17 ??? 0x000027bbba429a84 0 + 43687237294724
18 ??? 0x000027bbb9e85cd5 0 + 43687231380693
19 ??? 0x000027bbb9f0915a 0 + 43687231918426
20 ??? 0x000027bbb9ef23f8 0 + 43687231824888
21 ??? 0x000027bbba3a3ff2 0 + 43687236747250
22 ??? 0x000027bbba3a3dea 0 + 43687236746730
23 ??? 0x000027bbba2f957b 0 + 43687236048251
24 ??? 0x000027bbba429822 0 + 43687237294114
25 ??? 0x000027bbba2f957b 0 + 43687236048251
26 ??? 0x000027bbba4042ea 0 + 43687237141226
27 ??? 0x000027bbba40419c 0 + 43687237140892
28 ??? 0x000027bbba2f957b 0 + 43687236048251
29 ??? 0x000027bbba42962b 0 + 43687237293611
30 ??? 0x000027bbba4286c4 0 + 43687237289668
31 ??? 0x000027bbb9e85cd5 0 + 43687231380693
32 ??? 0x000027bbb9ef1ac3 0 + 43687231822531
33 ??? 0x000027bbb9eb65c1 0 + 43687231579585
34 libnode.dylib 0x0000000111c7e4a5 0x111805000 + 4691109
35 libnode.dylib 0x0000000111c7e209 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>*) + 169
36 libnode.dylib 0x0000000111a1fd5b v8::Function::Call(v8::Local<v8::Context>, v8::Local<v8::Value>, int, v8::Local<v8::Value>*) + 459
37 libnode.dylib 0x00000001118df8f6 node::MakeCallback(node::Environment*, v8::Local<v8::Value>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*) + 726
38 libnode.dylib 0x00000001118dfe58 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::Function>, int, v8::Local<v8::Value>*) + 104
39 libnode.dylib 0x00000001118dfdbf node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, v8::Local<v8::String>, int, v8::Local<v8::Value>*) + 95
40 libnode.dylib 0x00000001118dfd30 node::MakeCallback(v8::Isolate*, v8::Local<v8::Object>, char const*, int, v8::Local<v8::Value>*) + 80
41 com.github.electron.framework 0x000000010d63375a mate::internal::CallMethodWithArgs(v8::Isolate*, v8::Local<v8::Object>, char const*, std::__1::vector<v8::Local<v8::Value>, std::__1::allocator<v8::Local<v8::Value> > >*) + 74
42 com.github.electron.framework 0x000000010d54c1a9 0x10d53a000 + 74153
43 com.github.electron.framework 0x000000010d5a81ab 0x10d53a000 + 450987
44 com.github.electron.framework 0x000000010d5a8114 0x10d53a000 + 450836
45 com.github.electron.framework 0x000000010d59f47d 0x10d53a000 + 414845
46 com.github.electron.framework 0x000000010d5a093e atom::api::WebContents::DocumentLoadedInFrame(content::RenderFrameHost*) + 62
47 com.github.electron.framework 0x000000010d5a0960 non-virtual thunk to atom::api::WebContents::DocumentLoadedInFrame(content::RenderFrameHost*) + 16
48 com.github.electron.framework 0x000000010dd4cc74 0x10d53a000 + 8465524
49 com.github.electron.framework 0x000000010dd4ca96 0x10d53a000 + 8465046
50 com.github.electron.framework 0x000000010dd4c146 0x10d53a000 + 8462662
51 com.github.electron.framework 0x000000010dbbb871 0x10d53a000 + 6822001
52 com.github.electron.framework 0x000000010e23f98b 0x10d53a000 + 13654411
53 com.github.electron.framework 0x000000010d79b351 0x10d53a000 + 2495313
54 com.github.electron.framework 0x000000010d76df26 0x10d53a000 + 2309926
55 com.github.electron.framework 0x000000010d76e1fc 0x10d53a000 + 2310652
56 com.github.electron.framework 0x000000010d76e543 0x10d53a000 + 2311491
57 com.github.electron.framework 0x000000010d77188d 0x10d53a000 + 2324621
58 com.github.electron.framework 0x000000010d72e73a 0x10d53a000 + 2049850
59 com.github.electron.framework 0x000000010d771304 0x10d53a000 + 2323204
60 com.apple.CoreFoundation 0x00007fff3d0f56c1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
61 com.apple.CoreFoundation 0x00007fff3d1af2cc __CFRunLoopDoSource0 + 108
62 com.apple.CoreFoundation 0x00007fff3d0d8160 __CFRunLoopDoSources0 + 208
63 com.apple.CoreFoundation 0x00007fff3d0d75dd __CFRunLoopRun + 1293
64 com.apple.CoreFoundation 0x00007fff3d0d6e43 CFRunLoopRunSpecific + 483
65 com.apple.HIToolbox 0x00007fff3c3f6866 RunCurrentEventLoopInMode + 286
66 com.apple.HIToolbox 0x00007fff3c3f65d6 ReceiveNextEventCommon + 613
67 com.apple.HIToolbox 0x00007fff3c3f6354 _BlockUntilNextEventMatchingListInModeWithFilter + 64
68 com.apple.AppKit 0x00007fff3a6f444f _DPSNextEvent + 2085
69 com.apple.AppKit 0x00007fff3ae89508 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 3044
70 com.apple.AppKit 0x00007fff3a6e925d -[NSApplication run] + 764
71 com.github.electron.framework 0x000000010d7720de 0x10d53a000 + 2326750
72 com.github.electron.framework 0x000000010d77174c 0x10d53a000 + 2324300
73 com.github.electron.framework 0x000000010d76dc8e 0x10d53a000 + 2309262
74 com.github.electron.framework 0x000000010d783653 0x10d53a000 + 2397779
75 com.github.electron.framework 0x000000010d9d387b 0x10d53a000 + 4823163
76 com.github.electron.framework 0x000000010d9d36d0 0x10d53a000 + 4822736
77 com.github.electron.framework 0x000000010d9d5e12 0x10d53a000 + 4832786
78 com.github.electron.framework 0x000000010d9cf7ac 0x10d53a000 + 4806572
79 com.github.electron.framework 0x000000010d93530d 0x10d53a000 + 4174605
80 com.github.electron.framework 0x000000010d934406 0x10d53a000 + 4170758
81 com.github.electron.framework 0x000000010d53bd07 AtomMain + 71
82 com.tinyspeck.slackmacgap 0x000000010cd38f26 main + 38
83 libdyld.dylib 0x00007fff645d0145 start + 1
</code></pre></div>
</details> | 0 |
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):</p>
<h2 dir="auto">I search the keywords "kube-proxy curl hang"</h2>
<p dir="auto">*<em>This a BUG REPORT *</em> (choose one):</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): 1.3</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
I think it is independence the environment, so I did not describe them.</p>
<p dir="auto">If I create a type of nodePort service , kube-proxy will use net.Listen to openLocalPort in every node.<br>
If the service have no endpoint (means pod have not started, or start failed.), the client like curl <a href="http://xxxx:xxx" rel="nofollow">http://xxxx:xxx</a> will hang. It will not timeout.</p>
<p dir="auto">I had tried it just use net.Listen to create a TCP Listener, it can be reproduce.</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
I expected it will timeout, if the endpoints is not ready.</p>
<p dir="auto">I think it will infect the third-part to access the service that the endpoint have not ready.<br>
The third-part client will hang.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<ol dir="auto">
<li>Create an nodePort service without any endpoint.</li>
<li>curl <a href="http://node-ip:nodeport" rel="nofollow">http://node-ip:nodeport</a>. The curl will always hang.</li>
</ol>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):</p>
<p dir="auto">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.):</p>
<h2 dir="auto">unmount<br>
umount<br>
Error checking if mountpoint</h2>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):</p>
<p dir="auto">BUG REPORT.</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<p dir="auto">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.6", GitCommit:"e569a27d02001e343cb68086bc06d47804f62af6", GitTreeState:"clean", BuildDate:"2016-11-12T05:22:15Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}<br>
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.6", GitCommit:"e569a27d02001e343cb68086bc06d47804f62af6", GitTreeState:"clean", BuildDate:"2016-11-12T05:16:27Z", 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>: AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): Debian GNU/Linux 8 (jessie)</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):Linux ip-172-20-84-61 4.4.26-k8s <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="35192559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/1" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/1/hovercard" href="https://github.com/kubernetes/kubernetes/issues/1">#1</a> SMP Fri Oct 21 05:21:13 UTC 2016 x86_64 GNU/Linux</li>
<li><strong>Install tools</strong>: kops Version git-e1a9aad</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">I created a storageclass and a new PVC referencing it:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: v1
items:
- apiVersion: storage.k8s.io/v1beta1
kind: StorageClass
metadata:
annotations:
kubectl.kubernetes.io/last-applied-configuration: '{"kind":"StorageClass","apiVersion":"storage.k8s.io/v1beta1","metadata":{"name":"normal","creationTimestamp":null},"provisioner":"kubernetes.io/aws-ebs","parameters":{"type":"gp2"}}'
creationTimestamp: 2016-12-07T15:31:12Z
name: normal
resourceVersion: "2739806"
selfLink: /apis/storage.k8s.io/v1beta1/storageclasses/normal
uid: 2f28bfcc-bc92-11e6-b3c8-12e507f54388
parameters:
type: gp2
provisioner: kubernetes.io/aws-ebs
kind: List
metadata: {}"><pre class="notranslate"><code class="notranslate">apiVersion: v1
items:
- apiVersion: storage.k8s.io/v1beta1
kind: StorageClass
metadata:
annotations:
kubectl.kubernetes.io/last-applied-configuration: '{"kind":"StorageClass","apiVersion":"storage.k8s.io/v1beta1","metadata":{"name":"normal","creationTimestamp":null},"provisioner":"kubernetes.io/aws-ebs","parameters":{"type":"gp2"}}'
creationTimestamp: 2016-12-07T15:31:12Z
name: normal
resourceVersion: "2739806"
selfLink: /apis/storage.k8s.io/v1beta1/storageclasses/normal
uid: 2f28bfcc-bc92-11e6-b3c8-12e507f54388
parameters:
type: gp2
provisioner: kubernetes.io/aws-ebs
kind: List
metadata: {}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: v1
kind: PersistentVolumeClaim
metadata:
annotations:
kubectl.kubernetes.io/last-applied-configuration: '{"kind":"PersistentVolumeClaim","apiVersion":"v1","metadata":{"name":"infrastructure-foolscap-logs-pvc","creationTimestamp":null,"labels":{"app":"s4","component":"Infrastructure","provider":"LeastAuthority"},"annotations":{"volume.beta.kubernetes.io/storage-class":"normal"}},"spec":{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"10G"}}},"status":{}}'
pv.kubernetes.io/bind-completed: "yes"
pv.kubernetes.io/bound-by-controller: "yes"
volume.beta.kubernetes.io/storage-class: normal
creationTimestamp: 2016-12-07T15:10:30Z
labels:
app: s4
component: Infrastructure
provider: LeastAuthority
name: infrastructure-foolscap-logs-pvc
namespace: staging
resourceVersion: "2739819"
selfLink: /api/v1/namespaces/staging/persistentvolumeclaims/infrastructure-foolscap-logs-pvc
uid: 4b3c2fb4-bc8f-11e6-b3c8-12e507f54388
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10G
volumeName: pvc-4b3c2fb4-bc8f-11e6-b3c8-12e507f54388
status:
accessModes:
- ReadWriteOnce
capacity:
storage: 10Gi
phase: Bound"><pre class="notranslate"><code class="notranslate">apiVersion: v1
kind: PersistentVolumeClaim
metadata:
annotations:
kubectl.kubernetes.io/last-applied-configuration: '{"kind":"PersistentVolumeClaim","apiVersion":"v1","metadata":{"name":"infrastructure-foolscap-logs-pvc","creationTimestamp":null,"labels":{"app":"s4","component":"Infrastructure","provider":"LeastAuthority"},"annotations":{"volume.beta.kubernetes.io/storage-class":"normal"}},"spec":{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"10G"}}},"status":{}}'
pv.kubernetes.io/bind-completed: "yes"
pv.kubernetes.io/bound-by-controller: "yes"
volume.beta.kubernetes.io/storage-class: normal
creationTimestamp: 2016-12-07T15:10:30Z
labels:
app: s4
component: Infrastructure
provider: LeastAuthority
name: infrastructure-foolscap-logs-pvc
namespace: staging
resourceVersion: "2739819"
selfLink: /api/v1/namespaces/staging/persistentvolumeclaims/infrastructure-foolscap-logs-pvc
uid: 4b3c2fb4-bc8f-11e6-b3c8-12e507f54388
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10G
volumeName: pvc-4b3c2fb4-bc8f-11e6-b3c8-12e507f54388
status:
accessModes:
- ReadWriteOnce
capacity:
storage: 10Gi
phase: Bound
</code></pre></div>
<p dir="auto">And I updated my deployment to include a volume using this PVC and updated the deployment's template spec so that one of the containers would mount this volume. Then I deployed this with <code class="notranslate">kubectl apply -f ...</code>. I make some tweaks and repeated this operation a few times. Behavior was as expected (EBS-backed PV created, pod started, container had PV mounted in it, data persisted across deployment updates).</p>
<p dir="auto">On the last deployment update (in which I changed the image used by some of the containers), the new pod failed to come up. The web ui reported</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "s4-infrastructure-3171603516-8zj8k"/"staging". list of unattached/unmounted volumes=[log-gatherer-data]"><pre class="notranslate"><code class="notranslate">Error syncing pod, skipping: timeout expired waiting for volumes to attach/mount for pod "s4-infrastructure-3171603516-8zj8k"/"staging". list of unattached/unmounted volumes=[log-gatherer-data]
</code></pre></div>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">I expected a new pod to be created and its containers to start, and for the container using the log-gatherer-data volume to have the data it had before the deployment update.</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>:</p>
<p dir="auto">There are many mount/unmount errors in the kubectl journalctl log, attached.</p>
<p dir="auto"><a href="https://github.com/kubernetes/kubernetes/files/637330/logs.txt">logs.txt</a></p>
<p dir="auto">The EBS volume backing the PVC is indeed attached to the node.<br>
The mount state is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,relatime,size=10240k,nr_inodes=479670,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,relatime,size=771468k,mode=755)
/dev/xvda1 on / type ext4 (rw,relatime,data=ordered)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=23,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
rpc_pipefs on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
/dev/xvdc on /mnt type ext3 (rw,relatime,data=ordered)
tmpfs on /var/lib/kubelet/pods/7cce5087-ab69-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-3mbvh type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/7d411a93-ab69-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-3mbvh type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/ae9bb673-ac0b-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-fp0o5 type tmpfs (rw,relatime)
/dev/xvdba on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/vol-0f1ca7d3ab1426833 type ext4 (rw,relatime,data=ordered)
/dev/xvdba on /var/lib/kubelet/pods/ae9bb673-ac0b-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/leastauthority-tweaks-kube-registry-pv type ext4 (rw,relatime,data=ordered)
/dev/xvdbc on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/vol-0e80ac26be3edd63f type ext4 (rw,relatime,data=ordered)
/dev/xvdbb on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/vol-01b01d11a6b17e2de type ext4 (rw,relatime,data=ordered)
tmpfs on /var/lib/kubelet/pods/755e6718-ac11-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-zwvk5 type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/web-secrets type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-zwvk5 type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/flapp-secrets type tmpfs (rw,relatime)
/dev/xvdbc on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/infrastructure-web-pv type ext4 (rw,relatime,data=ordered)
/dev/xvdbb on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/infrastructure-flapp-pv type ext4 (rw,relatime,data=ordered)
/dev/xvdbd on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/aws/us-east-1b/vol-04e25da2c73877960 type ext4 (rw,relatime,data=ordered)
tmpfs on /var/lib/kubelet/pods/4f92171a-bc98-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-36roi type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/f654cc46-bc9a-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/flapp-secrets type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/f654cc46-bc9a-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/web-secrets type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/f654cc46-bc9a-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-36roi type tmpfs (rw,relatime)"><pre class="notranslate"><code class="notranslate">sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,relatime,size=10240k,nr_inodes=479670,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,relatime,size=771468k,mode=755)
/dev/xvda1 on / type ext4 (rw,relatime,data=ordered)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=23,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
rpc_pipefs on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
/dev/xvdc on /mnt type ext3 (rw,relatime,data=ordered)
tmpfs on /var/lib/kubelet/pods/7cce5087-ab69-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-3mbvh type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/7d411a93-ab69-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-3mbvh type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/ae9bb673-ac0b-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-fp0o5 type tmpfs (rw,relatime)
/dev/xvdba on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/vol-0f1ca7d3ab1426833 type ext4 (rw,relatime,data=ordered)
/dev/xvdba on /var/lib/kubelet/pods/ae9bb673-ac0b-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/leastauthority-tweaks-kube-registry-pv type ext4 (rw,relatime,data=ordered)
/dev/xvdbc on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/vol-0e80ac26be3edd63f type ext4 (rw,relatime,data=ordered)
/dev/xvdbb on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/vol-01b01d11a6b17e2de type ext4 (rw,relatime,data=ordered)
tmpfs on /var/lib/kubelet/pods/755e6718-ac11-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-zwvk5 type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/web-secrets type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-zwvk5 type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/flapp-secrets type tmpfs (rw,relatime)
/dev/xvdbc on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/infrastructure-web-pv type ext4 (rw,relatime,data=ordered)
/dev/xvdbb on /var/lib/kubelet/pods/d81c5474-bbfb-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/infrastructure-flapp-pv type ext4 (rw,relatime,data=ordered)
/dev/xvdbd on /var/lib/kubelet/plugins/kubernetes.io/aws-ebs/mounts/aws/us-east-1b/vol-04e25da2c73877960 type ext4 (rw,relatime,data=ordered)
tmpfs on /var/lib/kubelet/pods/4f92171a-bc98-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-36roi type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/f654cc46-bc9a-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/flapp-secrets type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/f654cc46-bc9a-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/web-secrets type tmpfs (rw,relatime)
tmpfs on /var/lib/kubelet/pods/f654cc46-bc9a-11e6-b3c8-12e507f54388/volumes/kubernetes.io~secret/default-token-36roi type tmpfs (rw,relatime)
</code></pre></div>
<p dir="auto">The directory referenced by the stat error in the logs is empty:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="admin@ip-172-20-84-61:~$ sudo ls -al /var/lib/kubelet/pods/938a5bbf-bc95-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/
total 8
drwxr-x--- 2 root root 4096 Dec 7 15:57 .
drwxr-x--- 5 root root 4096 Dec 7 15:55 ..
admin@ip-172-20-84-61:~$ "><pre class="notranslate"><code class="notranslate">admin@ip-172-20-84-61:~$ sudo ls -al /var/lib/kubelet/pods/938a5bbf-bc95-11e6-b3c8-12e507f54388/volumes/kubernetes.io~aws-ebs/
total 8
drwxr-x--- 2 root root 4096 Dec 7 15:57 .
drwxr-x--- 5 root root 4096 Dec 7 15:55 ..
admin@ip-172-20-84-61:~$
</code></pre></div> | 0 |
<p dir="auto">In NumPy 1.13, <code class="notranslate">numpy.diff()</code> no longer works with Bool-Arrays:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import numpy as np
>>> np.diff([True, False, False])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ".../lib/python3.6/site-packages/numpy/lib/function_base.py", line 1926
, in diff
return a[slice1]-a[slice2]
TypeError: numpy boolean subtract, the `-` operator, is deprecated, use the bitwise_xor, the `^` operator, or the logi
cal_xor function instead."><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></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-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">diff</span>([<span class="pl-c1">True</span>, <span class="pl-c1">False</span>, <span class="pl-c1">False</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-v">File</span> <span class="pl-s">"<stdin>"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1</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-v">File</span> <span class="pl-s">".../lib/python3.6/site-packages/numpy/lib/function_base.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1926</span>
, <span class="pl-c1">in</span> <span class="pl-s1">diff</span>
<span class="pl-k">return</span> <span class="pl-s1">a</span>[<span class="pl-s1">slice1</span>]<span class="pl-c1">-</span><span class="pl-s1">a</span>[<span class="pl-s1">slice2</span>]
<span class="pl-v">TypeError</span>: <span class="pl-s1">numpy</span> <span class="pl-s1">boolean</span> <span class="pl-s1">subtract</span>, <span class="pl-s1">the</span> <span class="pl-s">`-`</span> <span class="pl-s1">operator</span>, <span class="pl-s1">is</span> <span class="pl-s1">deprecated</span>, <span class="pl-s1">use</span> <span class="pl-s1">the</span> <span class="pl-s1">bitwise_xor</span>, <span class="pl-s1">the</span> <span class="pl-s">`^`</span> <span class="pl-s1">operator</span>, <span class="pl-s1">or</span> <span class="pl-s1">the</span> <span class="pl-s1">logi</span>
<span class="pl-s1">cal_xor</span> <span class="pl-s1">function</span> <span class="pl-s1">instead</span>.</pre></div>
<p dir="auto">It worked in NumPy 1.12.1 and the <a href="https://docs.scipy.org/doc/numpy/reference/generated/numpy.diff.html" rel="nofollow">documentation says</a> that it should still work:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import numpy as np
>>> np.diff([True, False, False])
array([ True, False], dtype=bool)"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></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-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">diff</span>([<span class="pl-c1">True</span>, <span class="pl-c1">False</span>, <span class="pl-c1">False</span>])
<span class="pl-en">array</span>([ <span class="pl-c1">True</span>, <span class="pl-c1">False</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">bool</span>)</pre></div> | <p dir="auto">Should modify the docstring accordingly, raise a meaningful error, or (preferably) make it work by hidding some logic under the hood.</p>
<p dir="auto">Traceback:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [11]: x = np.array([[True, True], [False, False]])
In [12]: np.diff(x)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-12-59225436601c> in <module>()
----> 1 np.diff(x)
/usr/lib/python3.6/site-packages/numpy/lib/function_base.py in diff(a, n, axis)
1924 return diff(a[slice1]-a[slice2], n-1, axis=axis)
1925 else:
-> 1926 return a[slice1]-a[slice2]
1927
1928
TypeError: numpy boolean subtract, the `-` operator, is deprecated, use the bitwise_xor, the `^` operator, or the logical_xor function instead.
In [13]: np.__version__
Out[13]: '1.13.0'"><pre class="notranslate"><code class="notranslate">In [11]: x = np.array([[True, True], [False, False]])
In [12]: np.diff(x)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-12-59225436601c> in <module>()
----> 1 np.diff(x)
/usr/lib/python3.6/site-packages/numpy/lib/function_base.py in diff(a, n, axis)
1924 return diff(a[slice1]-a[slice2], n-1, axis=axis)
1925 else:
-> 1926 return a[slice1]-a[slice2]
1927
1928
TypeError: numpy boolean subtract, the `-` operator, is deprecated, use the bitwise_xor, the `^` operator, or the logical_xor function instead.
In [13]: np.__version__
Out[13]: '1.13.0'
</code></pre></div>
<p dir="auto">xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="235471652" data-permission-text="Title is private" data-url="https://github.com/scikit-image/scikit-image/issues/2681" data-hovercard-type="issue" data-hovercard-url="/scikit-image/scikit-image/issues/2681/hovercard" href="https://github.com/scikit-image/scikit-image/issues/2681">scikit-image/scikit-image#2681</a></p> | 1 |
<p dir="auto"><code class="notranslate">svds</code> lacks the ability to specify the starting vector, whereas the underlying <code class="notranslate">eigs</code> function it calls does. It would be nice to have the user be able to specify the starting vector, to be consistent with all the other iterative methods.</p> | <p dir="auto">v0 is used as the initial value for seeding the eigs computations and is supported by <code class="notranslate">eigs()</code></p> | 1 |
<p dir="auto">From <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158469029" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26823" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/26823/hovercard" href="https://github.com/kubernetes/kubernetes/pull/26823">#26823</a> on the 1-2 release branch.</p>
<p dir="auto"><a href="https://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/26823/kubernetes-pull-test-unit-integration/29130/" rel="nofollow">https://console.cloud.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/26823/kubernetes-pull-test-unit-integration/29130/</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="=== RUN TestEtcdDeleteCollectionNotFound
I0603 16:07:09.501076 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:09.021087134 -0700 PDT):
[10.438489ms] [10.438489ms] Object encoded
[12.938103ms] [2.499614ms] Version checked
[478.819054ms] [465.880951ms] Object created
[479.50163ms] [682.576รยตs] END
==================
WARNING: DATA RACE
Write by goroutine 136:
testing.(*common).FailNow()
/tmp/workdir/go/src/testing/testing.go:335 +0x41
testing.(*common).Fatalf()
/tmp/workdir/go/src/testing/testing.go:379 +0x94
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound.func1()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:607 +0x1eb
Previous write by goroutine 127:
testing.(*common).FailNow()
/tmp/workdir/go/src/testing/testing.go:335 +0x41
testing.(*common).Fatalf()
/tmp/workdir/go/src/testing/testing.go:379 +0x94
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound.func1()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:607 +0x1eb
Goroutine 136 (running) created at:
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:609 +0x674
testing.tRunner()
/tmp/workdir/go/src/testing/testing.go:456 +0xdc
Goroutine 127 (finished) created at:
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:609 +0x674
testing.tRunner()
/tmp/workdir/go/src/testing/testing.go:456 +0xdc
==================
I0603 16:07:31.563128 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:30.904025457 -0700 PDT):
[4.074994ms] [4.074994ms] Object encoded
[4.108285ms] [33.291รยตs] Version checked
[388.137603ms] [384.029318ms] Object created
[658.894085ms] [270.756482ms] END
I0603 16:07:33.703849 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:31.608403789 -0700 PDT):
[21.447รยตs] [21.447รยตs] About to list etcd node
[1.910621611s] [1.910600164s] Etcd node listed
[2.095241867s] [184.620256ms] Node list decoded
[2.095271215s] [29.348รยตs] END
I0603 16:07:40.311964 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:39.339138415 -0700 PDT):
[8.543508ms] [8.543508ms] Object encoded
[8.57157ms] [28.062รยตs] Version checked
[657.103509ms] [648.531939ms] Object created
[972.615398ms] [315.511889ms] END
I0603 16:07:41.685855 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:40.451788092 -0700 PDT):
[28.395รยตs] [28.395รยตs] About to list etcd node
[1.233569593s] [1.233541198s] Etcd node listed
[1.23389272s] [323.127รยตs] Node list decoded
[1.233916803s] [24.083รยตs] END
I0603 16:07:41.989831 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:40.452513447 -0700 PDT):
[17.67รยตs] [17.67รยตs] About to list etcd node
[1.53678103s] [1.53676336s] Etcd node listed
[1.537119905s] [338.875รยตs] Node list decoded
[1.537147305s] [27.4รยตs] END
I0603 16:07:42.136526 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:40.433819252 -0700 PDT):
[21.971รยตs] [21.971รยตs] About to list etcd node
[1.701880738s] [1.701858767s] Etcd node listed
[1.702409739s] [529.001รยตs] Node list decoded
[1.702443019s] [33.28รยตs] END
I0603 16:07:46.832506 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:46.368422356 -0700 PDT):
[403.833รยตs] [403.833รยตs] Object encoded
[423.064รยตs] [19.231รยตs] Version checked
[463.224621ms] [462.801557ms] Object created
[463.920768ms] [696.147รยตs] END
I0603 16:07:48.421105 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:46.933007109 -0700 PDT):
[20.505รยตs] [20.505รยตs] About to list etcd node
[1.487499823s] [1.487479318s] Etcd node listed
[1.487894779s] [394.956รยตs] Node list decoded
[1.487921821s] [27.042รยตs] END
I0603 16:07:55.195380 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:54.18723978 -0700 PDT):
[569.053รยตs] [569.053รยตs] Object encoded
[595.08รยตs] [26.027รยตs] Version checked
[1.007338588s] [1.006743508s] Object created
[1.007968516s] [629.928รยตs] END
I0603 16:07:55.848223 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:55.195738587 -0700 PDT):
[265.59รยตs] [265.59รยตs] Object encoded
[283.195รยตs] [17.605รยตs] Version checked
[469.233449ms] [468.950254ms] Object created
[652.176438ms] [182.942989ms] END
I0603 16:07:56.997531 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.904154956 -0700 PDT):
[29.063รยตs] [29.063รยตs] About to list etcd node
[1.092862614s] [1.092833551s] Etcd node listed
[1.093186047s] [323.433รยตs] Node list decoded
[1.093211067s] [25.02รยตs] END
I0603 16:07:57.032214 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.879245406 -0700 PDT):
[37.82รยตs] [37.82รยตs] About to list etcd node
[1.152358883s] [1.152321063s] Etcd node listed
[1.152757988s] [399.105รยตs] Node list decoded
[1.152786584s] [28.596รยตs] END
I0603 16:07:57.421529 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.8518515 -0700 PDT):
[25.787รยตs] [25.787รยตs] About to list etcd node
[1.568348264s] [1.568322477s] Etcd node listed
[1.569206493s] [858.229รยตs] Node list decoded
[1.569266984s] [60.491รยตs] END
I0603 16:07:58.072211 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.853393954 -0700 PDT):
[23.36รยตs] [23.36รยตs] About to list etcd node
[2.218247378s] [2.218224018s] Etcd node listed
[2.218613175s] [365.797รยตs] Node list decoded
[2.218650374s] [37.199รยตs] END
I0603 16:08:04.185381 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:08:03.844808624 -0700 PDT):
[418.697รยตs] [418.697รยตs] Object encoded
[445.452รยตs] [26.755รยตs] Version checked
[339.711037ms] [339.265585ms] Object created
[340.374126ms] [663.089รยตs] END
--- FAIL: TestEtcdDeleteCollectionNotFound (83.95s)
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:614: Unexpected error: <nil>
etcd_test.go:593: Unexpected error: pods "foo" already exists"><pre class="notranslate"><code class="notranslate">=== RUN TestEtcdDeleteCollectionNotFound
I0603 16:07:09.501076 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:09.021087134 -0700 PDT):
[10.438489ms] [10.438489ms] Object encoded
[12.938103ms] [2.499614ms] Version checked
[478.819054ms] [465.880951ms] Object created
[479.50163ms] [682.576รยตs] END
==================
WARNING: DATA RACE
Write by goroutine 136:
testing.(*common).FailNow()
/tmp/workdir/go/src/testing/testing.go:335 +0x41
testing.(*common).Fatalf()
/tmp/workdir/go/src/testing/testing.go:379 +0x94
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound.func1()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:607 +0x1eb
Previous write by goroutine 127:
testing.(*common).FailNow()
/tmp/workdir/go/src/testing/testing.go:335 +0x41
testing.(*common).Fatalf()
/tmp/workdir/go/src/testing/testing.go:379 +0x94
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound.func1()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:607 +0x1eb
Goroutine 136 (running) created at:
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:609 +0x674
testing.tRunner()
/tmp/workdir/go/src/testing/testing.go:456 +0xdc
Goroutine 127 (finished) created at:
k8s.io/kubernetes/pkg/registry/generic/etcd.TestEtcdDeleteCollectionNotFound()
/workspace/kubernetes/_output/local/go/src/k8s.io/kubernetes/pkg/registry/generic/etcd/etcd_test.go:609 +0x674
testing.tRunner()
/tmp/workdir/go/src/testing/testing.go:456 +0xdc
==================
I0603 16:07:31.563128 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:30.904025457 -0700 PDT):
[4.074994ms] [4.074994ms] Object encoded
[4.108285ms] [33.291รยตs] Version checked
[388.137603ms] [384.029318ms] Object created
[658.894085ms] [270.756482ms] END
I0603 16:07:33.703849 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:31.608403789 -0700 PDT):
[21.447รยตs] [21.447รยตs] About to list etcd node
[1.910621611s] [1.910600164s] Etcd node listed
[2.095241867s] [184.620256ms] Node list decoded
[2.095271215s] [29.348รยตs] END
I0603 16:07:40.311964 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:39.339138415 -0700 PDT):
[8.543508ms] [8.543508ms] Object encoded
[8.57157ms] [28.062รยตs] Version checked
[657.103509ms] [648.531939ms] Object created
[972.615398ms] [315.511889ms] END
I0603 16:07:41.685855 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:40.451788092 -0700 PDT):
[28.395รยตs] [28.395รยตs] About to list etcd node
[1.233569593s] [1.233541198s] Etcd node listed
[1.23389272s] [323.127รยตs] Node list decoded
[1.233916803s] [24.083รยตs] END
I0603 16:07:41.989831 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:40.452513447 -0700 PDT):
[17.67รยตs] [17.67รยตs] About to list etcd node
[1.53678103s] [1.53676336s] Etcd node listed
[1.537119905s] [338.875รยตs] Node list decoded
[1.537147305s] [27.4รยตs] END
I0603 16:07:42.136526 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:40.433819252 -0700 PDT):
[21.971รยตs] [21.971รยตs] About to list etcd node
[1.701880738s] [1.701858767s] Etcd node listed
[1.702409739s] [529.001รยตs] Node list decoded
[1.702443019s] [33.28รยตs] END
I0603 16:07:46.832506 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:46.368422356 -0700 PDT):
[403.833รยตs] [403.833รยตs] Object encoded
[423.064รยตs] [19.231รยตs] Version checked
[463.224621ms] [462.801557ms] Object created
[463.920768ms] [696.147รยตs] END
I0603 16:07:48.421105 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:46.933007109 -0700 PDT):
[20.505รยตs] [20.505รยตs] About to list etcd node
[1.487499823s] [1.487479318s] Etcd node listed
[1.487894779s] [394.956รยตs] Node list decoded
[1.487921821s] [27.042รยตs] END
I0603 16:07:55.195380 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:54.18723978 -0700 PDT):
[569.053รยตs] [569.053รยตs] Object encoded
[595.08รยตs] [26.027รยตs] Version checked
[1.007338588s] [1.006743508s] Object created
[1.007968516s] [629.928รยตs] END
I0603 16:07:55.848223 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:07:55.195738587 -0700 PDT):
[265.59รยตs] [265.59รยตs] Object encoded
[283.195รยตs] [17.605รยตs] Version checked
[469.233449ms] [468.950254ms] Object created
[652.176438ms] [182.942989ms] END
I0603 16:07:56.997531 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.904154956 -0700 PDT):
[29.063รยตs] [29.063รยตs] About to list etcd node
[1.092862614s] [1.092833551s] Etcd node listed
[1.093186047s] [323.433รยตs] Node list decoded
[1.093211067s] [25.02รยตs] END
I0603 16:07:57.032214 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.879245406 -0700 PDT):
[37.82รยตs] [37.82รยตs] About to list etcd node
[1.152358883s] [1.152321063s] Etcd node listed
[1.152757988s] [399.105รยตs] Node list decoded
[1.152786584s] [28.596รยตs] END
I0603 16:07:57.421529 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.8518515 -0700 PDT):
[25.787รยตs] [25.787รยตs] About to list etcd node
[1.568348264s] [1.568322477s] Etcd node listed
[1.569206493s] [858.229รยตs] Node list decoded
[1.569266984s] [60.491รยตs] END
I0603 16:07:58.072211 31650 trace.go:57] Trace "List *api.PodList" (started 2016-06-03 16:07:55.853393954 -0700 PDT):
[23.36รยตs] [23.36รยตs] About to list etcd node
[2.218247378s] [2.218224018s] Etcd node listed
[2.218613175s] [365.797รยตs] Node list decoded
[2.218650374s] [37.199รยตs] END
I0603 16:08:04.185381 31650 trace.go:57] Trace "etcdHelper::Create *api.Pod" (started 2016-06-03 16:08:03.844808624 -0700 PDT):
[418.697รยตs] [418.697รยตs] Object encoded
[445.452รยตs] [26.755รยตs] Version checked
[339.711037ms] [339.265585ms] Object created
[340.374126ms] [663.089รยตs] END
--- FAIL: TestEtcdDeleteCollectionNotFound (83.95s)
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:607: Unexpected error: client: etcd cluster is unavailable or misconfigured
etcd_test.go:614: Unexpected error: <nil>
etcd_test.go:593: Unexpected error: pods "foo" already exists
</code></pre></div> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.):<br>
No</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):</p>
<h2 dir="auto">kube-dns, resolv.conf, timeout, skydns</h2>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):<br>
BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):<br>
1.3.6 / kube-dns v17.1</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>:<br>
AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release):<br>
centos7</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
<li><strong>Install tools</strong>:</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
Host resolv.conf, as used in kube-dns container:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="search eu-west-1.compute.internal
nameserver 10.10.224.4
nameserver 10.10.228.4
nameserver 10.10.232.4
options rotate attempts:1 timeout:1
options ndots:5"><pre class="notranslate"><code class="notranslate">search eu-west-1.compute.internal
nameserver 10.10.224.4
nameserver 10.10.228.4
nameserver 10.10.232.4
options rotate attempts:1 timeout:1
options ndots:5
</code></pre></div>
<p dir="auto">If I disable <code class="notranslate">10.10.224.4</code>, every few queries it takes 5s to resolve (resulting in timeouts on other pods). Here's what it looks like when running from the kube-dns pod:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# time nslookup gatech.edu.eu-west-1.compute.internal
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 0.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 5.01s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 5.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 0.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 5.01s
user 0m 0.00s
sys 0m 0.00s
/ #
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 0.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4"><pre class="notranslate"><code class="notranslate"># time nslookup gatech.edu.eu-west-1.compute.internal
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 0.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 5.01s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 5.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 0.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 5.01s
user 0m 0.00s
sys 0m 0.00s
/ #
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
nslookup: can't resolve 'gatech.edu.eu-west-1.compute.internal'
Command exited with non-zero status 1
real 0m 0.00s
user 0m 0.00s
sys 0m 0.00s
/ # time nslookup gatech.edu.eu-west-1.compute.internal
Server: 10.50.224.4
Address 1: 10.50.224.4
</code></pre></div>
<p dir="auto">And from another pod:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m0.009s
user 0m0.000s
sys 0m0.002s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m2.007s
user 0m0.000s
sys 0m0.002s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m0.006s
user 0m0.000s
sys 0m0.002s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m0.005s
user 0m0.000s
sys 0m0.001s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m2.008s
user 0m0.000s
sys 0m0.002s"><pre class="notranslate"><code class="notranslate">/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m0.009s
user 0m0.000s
sys 0m0.002s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m2.007s
user 0m0.000s
sys 0m0.002s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m0.006s
user 0m0.000s
sys 0m0.002s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m0.005s
user 0m0.000s
sys 0m0.001s
mypod:/# time getent ahosts gatech.edu
130.207.160.173 STREAM gatech.edu
130.207.160.173 DGRAM
130.207.160.173 RAW
real 0m2.008s
user 0m0.000s
sys 0m0.002s
</code></pre></div>
<p dir="auto">I can sort of work around this by removing the <code class="notranslate">eu-west-1.compute.internal</code> search domain, which prevents the search NXDOMAIN that causes random hangs.</p>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">I expect it to resolve the NXDOMAIN quickly even if one of the nameservers is down. Or at worst, take up to <code class="notranslate">timeout:1</code>. The timeout:1 option seems to be ignored, and it takes 5 seconds to timeout whenever it hits the down server.</p>
<p dir="auto">Also the rotate option seems ignored, so all the load from kube-dns happens on the primary dns server. (need to verify this, just noticed from quick observation that the primary server gets almost all the queries)</p>
<p dir="auto">Ideally, in my opinion, kube-dns would use something like musl and resolve against all the nameservers in parallel, making it robust to failure.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<ol dir="auto">
<li>Have multiple nameservers in host's resolv.conf</li>
<li>Turn off the first nameserver</li>
<li>Try to resolve domains that would normally return NXDOMAIN</li>
</ol>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p> | 0 |
<p dir="auto">The change introduced in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/symfony/symfony/commit/a10844587b4494c678e8e2095a05f1bb88d06cb2/hovercard" href="https://github.com/symfony/symfony/commit/a10844587b4494c678e8e2095a05f1bb88d06cb2"><tt>a108445</tt></a> causes fields that were valid in 2.6.4 to be invalid in 2.6.5.</p>
<p dir="auto">When I revert that one commit in 2.6.5 the problem is fixed.</p>
<p dir="auto">The error I get:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Symfony\Component\Validator\ConstraintViolation
Object(Symfony\Component\Form\Form).children[bundle] = 550fe15080c7e16f5b8b4da0
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
Unable to reverse value for property path "bundle": The choice "550fe15080c7e16f5b8b4da0" does not exist or is not unique
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
The choice "550fe15080c7e16f5b8b4da0" does not exist or is not unique"><pre class="notranslate"><code class="notranslate">Symfony\Component\Validator\ConstraintViolation
Object(Symfony\Component\Form\Form).children[bundle] = 550fe15080c7e16f5b8b4da0
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
Unable to reverse value for property path "bundle": The choice "550fe15080c7e16f5b8b4da0" does not exist or is not unique
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
The choice "550fe15080c7e16f5b8b4da0" does not exist or is not unique
</code></pre></div>
<p dir="auto">The following line does not convert multiple values into an <code class="notranslate">$in</code> query:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$this->em->getRepository($this->class)->findBy(array($this->idField => $values));"><pre class="notranslate"><code class="notranslate">$this->em->getRepository($this->class)->findBy(array($this->idField => $values));
</code></pre></div> | <p dir="auto">After updating Symfony from 2.6.4 to 2.6.5 handling (MongoDB) <code class="notranslate">document</code> as Field is broken.</p>
<p dir="auto">Example FormType:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('terminal', 'document', array('label' => 'terminal', 'required' => false, 'class' => 'company\ExampleBundle\Document\Terminal'));
}"><pre class="notranslate"><code class="notranslate">public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('terminal', 'document', array('label' => 'terminal', 'required' => false, 'class' => 'company\ExampleBundle\Document\Terminal'));
}
</code></pre></div>
<p dir="auto">Submitted Form is not valid, Profiler told me:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Symfony\Component\Validator\ConstraintViolation
Object(Symfony\Component\Form\Form).children[terminal] = 546e4a2d46139fca3b413051
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
Unable to reverse value for property path "terminal": The choice "546e4a2d46139fca3b413051" does not exist or is not unique
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
The choice "546e4a2d46139fca3b413051" does not exist or is not unique"><pre class="notranslate"><code class="notranslate">Symfony\Component\Validator\ConstraintViolation
Object(Symfony\Component\Form\Form).children[terminal] = 546e4a2d46139fca3b413051
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
Unable to reverse value for property path "terminal": The choice "546e4a2d46139fca3b413051" does not exist or is not unique
Caused by:
Symfony\Component\Form\Exception\TransformationFailedException
The choice "546e4a2d46139fca3b413051" does not exist or is not unique
</code></pre></div>
<p dir="auto">But document <code class="notranslate">546e4a2d46139fca3b413051</code> exists and is unique. Reverting symfony back to 2.6.4 does not lead to this issue and submitted form is valid.</p> | 1 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">nightly (1.9.0-dev.20160217)</p>
<p dir="auto"><strong>Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function wrap<T, U>(wrapper: (arg: T) => U) {
return function(target: Object, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => T>) {
var originalMethod = descriptor.value; // save a reference to the original method
// NOTE: Do not use arrow syntax here. Use a function expression in
// order to use the correct value of `this` in this method (see notes below)
const newDescriptor = {
value: function(...args: any[]) {
console.log("The method args are: " + JSON.stringify(args)); // pre
var result = wrapper(<T> originalMethod.apply(this, args)); // run and store the result
console.log("The return value is: " + result); // post
return result; // return the result of the original method
}
};
return newDescriptor;
}
}
function len(val: string): number {
return val.length;
}
class MyClass {
@wrap<string, number>(len)
myMethod(arg: string) {
return "Message -- " + arg;
}
}
const t: number = new MyClass().myMethod("testing");"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">wrap</span><span class="pl-c1"><</span><span class="pl-smi">T</span><span class="pl-kos">,</span> <span class="pl-smi">U</span><span class="pl-c1">></span><span class="pl-kos">(</span><span class="pl-s1">wrapper</span>: <span class="pl-kos">(</span><span class="pl-s1">arg</span>: <span class="pl-smi">T</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">U</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">target</span>: <span class="pl-smi">Object</span><span class="pl-kos">,</span> <span class="pl-s1">propertyKey</span>: <span class="pl-smi">string</span><span class="pl-kos">,</span> <span class="pl-s1">descriptor</span>: <span class="pl-smi">TypedPropertyDescriptor</span><span class="pl-kos"><</span><span class="pl-kos">(</span>...<span class="pl-s1">args</span>: <span class="pl-smi">any</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">T</span><span class="pl-kos">></span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">originalMethod</span> <span class="pl-c1">=</span> <span class="pl-s1">descriptor</span><span class="pl-kos">.</span><span class="pl-c1">value</span><span class="pl-kos">;</span> <span class="pl-c">// save a reference to the original method</span>
<span class="pl-c">// NOTE: Do not use arrow syntax here. Use a function expression in</span>
<span class="pl-c">// order to use the correct value of `this` in this method (see notes below)</span>
<span class="pl-k">const</span> <span class="pl-s1">newDescriptor</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-en">value</span>: <span class="pl-k">function</span><span class="pl-kos">(</span>...<span class="pl-s1">args</span>: <span class="pl-smi">any</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"The method args are: "</span> <span class="pl-c1">+</span> <span class="pl-smi">JSON</span><span class="pl-kos">.</span><span class="pl-en">stringify</span><span class="pl-kos">(</span><span class="pl-s1">args</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// pre</span>
<span class="pl-k">var</span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-en">wrapper</span><span class="pl-kos">(</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">></span> <span class="pl-s1">originalMethod</span><span class="pl-kos">.</span><span class="pl-en">apply</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">,</span> <span class="pl-s1">args</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// run and store the result</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"The return value is: "</span> <span class="pl-c1">+</span> <span class="pl-s1">result</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// post</span>
<span class="pl-k">return</span> <span class="pl-s1">result</span><span class="pl-kos">;</span> <span class="pl-c">// return the result of the original method</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">newDescriptor</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">len</span><span class="pl-kos">(</span><span class="pl-s1">val</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span>: <span class="pl-smi">number</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s1">val</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-smi">MyClass</span> <span class="pl-kos">{</span>
@<span class="pl-s1">wrap</span><span class="pl-c1"></span><span class="pl-c1"><</span><span class="pl-smi">string</span><span class="pl-kos">,</span> <span class="pl-smi">number</span><span class="pl-c1">></span><span class="pl-kos">(</span><span class="pl-s1">len</span><span class="pl-kos">)</span>
<span class="pl-en">myMethod</span><span class="pl-kos">(</span><span class="pl-s1">arg</span>: <span class="pl-smi">string</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s">"Message -- "</span> <span class="pl-c1">+</span> <span class="pl-s1">arg</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">t</span>: <span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">MyClass</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">myMethod</span><span class="pl-kos">(</span><span class="pl-s">"testing"</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Expected behavior:</strong><br>
I expect this to compile, and modify the return type of <code class="notranslate">MyClass#myMethod</code>.</p>
<p dir="auto"><strong>Actual behavior:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tsc decorators-broken.ts --experimentalDecorators --target es5
decorators-broken.ts(25,5): error TS1241: Unable to resolve signature of method decorator when called as an expression.
Type '{ value: (...args: any[]) => number; }' is not assignable to type 'void'.
decorators-broken.ts(31,7): error TS2322: Type 'string' is not assignable to type 'number'."><pre class="notranslate"><code class="notranslate">tsc decorators-broken.ts --experimentalDecorators --target es5
decorators-broken.ts(25,5): error TS1241: Unable to resolve signature of method decorator when called as an expression.
Type '{ value: (...args: any[]) => number; }' is not assignable to type 'void'.
decorators-broken.ts(31,7): error TS2322: Type 'string' is not assignable to type 'number'.
</code></pre></div>
<p dir="auto">I'm trying to create a decorator that wraps methods, potentially altering the wrapped method's return type, making function composition possible through decoration. I initially thought this was a bug, but upon inspecting <code class="notranslate">MethodDecorator</code>'s type signature, this is probably intentional:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>): TypedPropertyDescriptor<T> | void;"><pre class="notranslate"><code class="notranslate">type MethodDecorator = <T>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>): TypedPropertyDescriptor<T> | void;
</code></pre></div>
<p dir="auto">Can we add something like the following?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="type MutatingMethodDecorator = <T, U>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>): TypedPropertyDescriptor<U> | void;"><pre class="notranslate"><code class="notranslate">type MutatingMethodDecorator = <T, U>(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>): TypedPropertyDescriptor<U> | void;
</code></pre></div> | <p dir="auto">If we can get this to type check properly, we would have perfect support for boilerplate-free mixins:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="declare function Blah<T>(target: T): T & {foo: number}
@Blah
class Foo {
bar() {
return this.foo; // Property 'foo' does not exist on type 'Foo'
}
}
new Foo().foo; // Property 'foo' does not exist on type 'Foo'"><pre class="notranslate"><span class="pl-k">declare</span> <span class="pl-k">function</span> <span class="pl-smi">Blah</span><span class="pl-c1"><</span><span class="pl-smi">T</span><span class="pl-c1">></span><span class="pl-kos">(</span><span class="pl-s1">target</span>: <span class="pl-smi">T</span><span class="pl-kos">)</span>: <span class="pl-smi">T</span> <span class="pl-c1">&</span> <span class="pl-kos">{</span><span class="pl-c1">foo</span>: <span class="pl-smi">number</span><span class="pl-kos">}</span>
@<span class="pl-smi">Blah</span>
<span class="pl-k">class</span> <span class="pl-smi">Foo</span> <span class="pl-kos">{</span>
<span class="pl-en">bar</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">foo</span><span class="pl-kos">;</span> <span class="pl-c">// Property 'foo' does not exist on type 'Foo'</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">new</span> <span class="pl-smi">Foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">foo</span><span class="pl-kos">;</span> <span class="pl-c">// Property 'foo' does not exist on type 'Foo'</span></pre></div> | 1 |
<h4 dir="auto">Code Sample</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [19]: dates = pd.period_range('20100101','20100105', freq='D')
In [20]: weights = pd.DataFrame(np.random.randn(5, 5), index=dates, columns = ['g1_%d' % x for x in range(5)])
In [21]: weights.join(pd.DataFrame(np.random.randn(5,5), index=dates, columns = ['g2_%d' % x for x in range(5)]))
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-21-2fdb8b02f5a4> in <module>()
1 weights.join(
----> 2 pd.DataFrame(np.random.randn(5,5), index=dates, columns = ['g2_%d' % x for x in range(5)]))
/usr/local/lib/python2.7/dist-packages/pandas/core/frame.pyc in join(self, other, on, how, lsuffix, rsuffix, sort)
4765 # For SparseDataFrame's benefit
4766 return self._join_compat(other, on=on, how=how, lsuffix=lsuffix,
-> 4767 rsuffix=rsuffix, sort=sort)
4768
4769 def _join_compat(self, other, on=None, how='left', lsuffix='', rsuffix='',
/usr/local/lib/python2.7/dist-packages/pandas/core/frame.pyc in _join_compat(self, other, on, how, lsuffix, rsuffix, sort)
4780 return merge(self, other, left_on=on, how=how,
4781 left_index=on is None, right_index=True,
-> 4782 suffixes=(lsuffix, rsuffix), sort=sort)
4783 else:
4784 if on is not None:
/usr/local/lib/python2.7/dist-packages/pandas/core/reshape/merge.pyc in merge(left, right, how, on, left_on, right_on, left_index, right_index, sort, suffixes, copy, indicator)
52 right_index=right_index, sort=sort, suffixes=suffixes,
53 copy=copy, indicator=indicator)
---> 54 return op.get_result()
55
56
/usr/local/lib/python2.7/dist-packages/pandas/core/reshape/merge.pyc in get_result(self)
567 self.left, self.right)
568
--> 569 join_index, left_indexer, right_indexer = self._get_join_info()
570
571 ldata, rdata = self.left._data, self.right._data
/usr/local/lib/python2.7/dist-packages/pandas/core/reshape/merge.pyc in _get_join_info(self)
720 join_index, left_indexer, right_indexer = \
721 left_ax.join(right_ax, how=self.how, return_indexers=True,
--> 722 sort=self.sort)
723 elif self.right_index and self.how == 'left':
724 join_index, left_indexer, right_indexer = \
TypeError: join() got an unexpected keyword argument 'sort'
"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">19</span>]: <span class="pl-s1">dates</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">period_range</span>(<span class="pl-s">'20100101'</span>,<span class="pl-s">'20100105'</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'D'</span>)
<span class="pl-v">In</span> [<span class="pl-c1">20</span>]: <span class="pl-s1">weights</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">randn</span>(<span class="pl-c1">5</span>, <span class="pl-c1">5</span>), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates</span>, <span class="pl-s1">columns</span> <span class="pl-c1">=</span> [<span class="pl-s">'g1_%d'</span> <span class="pl-c1">%</span> <span class="pl-s1">x</span> <span class="pl-k">for</span> <span class="pl-s1">x</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">5</span>)])
<span class="pl-v">In</span> [<span class="pl-c1">21</span>]: <span class="pl-s1">weights</span>.<span class="pl-en">join</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">randn</span>(<span class="pl-c1">5</span>,<span class="pl-c1">5</span>), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates</span>, <span class="pl-s1">columns</span> <span class="pl-c1">=</span> [<span class="pl-s">'g2_%d'</span> <span class="pl-c1">%</span> <span class="pl-s1">x</span> <span class="pl-k">for</span> <span class="pl-s1">x</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">5</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">TypeError</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">21</span><span class="pl-c1">-</span><span class="pl-c1">2</span><span class="pl-s1">fdb8b02f5a4</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">1</span> <span class="pl-s1">weights</span>.<span class="pl-en">join</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">2</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">randn</span>(<span class="pl-c1">5</span>,<span class="pl-c1">5</span>), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">dates</span>, <span class="pl-s1">columns</span> <span class="pl-c1">=</span> [<span class="pl-s">'g2_%d'</span> <span class="pl-c1">%</span> <span class="pl-s1">x</span> <span class="pl-k">for</span> <span class="pl-s1">x</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">5</span>)]))
<span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python2</span>.<span class="pl-c1">7</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</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">frame</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">join</span>(<span class="pl-s1">self</span>, <span class="pl-s1">other</span>, <span class="pl-s1">on</span>, <span class="pl-s1">how</span>, <span class="pl-s1">lsuffix</span>, <span class="pl-s1">rsuffix</span>, <span class="pl-s1">sort</span>)
<span class="pl-c1">4765</span> <span class="pl-c"># For SparseDataFrame's benefit</span>
<span class="pl-c1">4766</span> <span class="pl-k">return</span> <span class="pl-s1">self</span>.<span class="pl-en">_join_compat</span>(<span class="pl-s1">other</span>, <span class="pl-s1">on</span><span class="pl-c1">=</span><span class="pl-s1">on</span>, <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s1">how</span>, <span class="pl-s1">lsuffix</span><span class="pl-c1">=</span><span class="pl-s1">lsuffix</span>,
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">4767</span> <span class="pl-s1">rsuffix</span><span class="pl-c1">=</span><span class="pl-s1">rsuffix</span>, <span class="pl-s1">sort</span><span class="pl-c1">=</span><span class="pl-s1">sort</span>)
<span class="pl-c1">4768</span>
<span class="pl-c1">4769</span> <span class="pl-k">def</span> <span class="pl-s1">_join_compat</span>(<span class="pl-s1">self</span>, <span class="pl-s1">other</span>, <span class="pl-s1">on</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s">'left'</span>, <span class="pl-s1">lsuffix</span><span class="pl-c1">=</span><span class="pl-s">''</span>, <span class="pl-s1">rsuffix</span><span class="pl-c1">=</span><span class="pl-s">''</span>,
<span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python2</span><span class="pl-c1">.7</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</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">frame</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-s1">_join_compat</span>(<span class="pl-s1">self</span>, <span class="pl-s1">other</span>, <span class="pl-s1">on</span>, <span class="pl-s1">how</span>, <span class="pl-s1">lsuffix</span>, <span class="pl-s1">rsuffix</span>, <span class="pl-s1">sort</span>)
<span class="pl-c1">4780</span> <span class="pl-k">return</span> <span class="pl-en">merge</span>(<span class="pl-s1">self</span>, <span class="pl-s1">other</span>, <span class="pl-s1">left_on</span><span class="pl-c1">=</span><span class="pl-s1">on</span>, <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s1">how</span>,
<span class="pl-c1">4781</span> <span class="pl-s1">left_index</span><span class="pl-c1">=</span><span class="pl-s1">on</span> <span class="pl-c1">is</span> <span class="pl-c1">None</span>, <span class="pl-s1">right_index</span><span class="pl-c1">=</span><span class="pl-c1">True</span>,
<span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">4782</span> <span class="pl-s1">suffixes</span><span class="pl-c1">=</span>(<span class="pl-s1">lsuffix</span>, <span class="pl-s1">rsuffix</span>), <span class="pl-s1">sort</span><span class="pl-c1">=</span><span class="pl-s1">sort</span>)
<span class="pl-c1">4783</span> <span class="pl-s1">else</span>:
<span class="pl-c1">4784</span> <span class="pl-k">if</span> <span class="pl-s1">on</span> <span class="pl-c1">is</span> <span class="pl-c1">not</span> <span class="pl-c1">None</span>:
<span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python2</span>.<span class="pl-c1">7</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</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">reshape</span><span class="pl-c1">/</span><span class="pl-s1">merge</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">merge</span>(<span class="pl-s1">left</span>, <span class="pl-s1">right</span>, <span class="pl-s1">how</span>, <span class="pl-s1">on</span>, <span class="pl-s1">left_on</span>, <span class="pl-s1">right_on</span>, <span class="pl-s1">left_index</span>, <span class="pl-s1">right_index</span>, <span class="pl-s1">sort</span>, <span class="pl-s1">suffixes</span>, <span class="pl-s1">copy</span>, <span class="pl-s1">indicator</span>)
<span class="pl-c1">52</span> <span class="pl-s1">right_index</span><span class="pl-c1">=</span><span class="pl-s1">right_index</span>, <span class="pl-s1">sort</span><span class="pl-c1">=</span><span class="pl-s1">sort</span>, <span class="pl-s1">suffixes</span><span class="pl-c1">=</span><span class="pl-s1">suffixes</span>,
<span class="pl-c1">53</span> <span class="pl-s1">copy</span><span class="pl-c1">=</span><span class="pl-s1">copy</span>, <span class="pl-s1">indicator</span><span class="pl-c1">=</span><span class="pl-s1">indicator</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">54</span> <span class="pl-s1">return</span> <span class="pl-s1">op</span>.<span class="pl-en">get_result</span>()
<span class="pl-c1">55</span>
<span class="pl-c1">56</span>
<span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python2</span>.<span class="pl-c1">7</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</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">reshape</span><span class="pl-c1">/</span><span class="pl-s1">merge</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">get_result</span>(<span class="pl-s1">self</span>)
<span class="pl-c1">567</span> <span class="pl-s1">self</span>.<span class="pl-s1">left</span>, <span class="pl-s1">self</span>.<span class="pl-s1">right</span>)
<span class="pl-c1">568</span>
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">569</span> <span class="pl-s1">join_index</span>, <span class="pl-s1">left_indexer</span>, <span class="pl-s1">right_indexer</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-en">_get_join_info</span>()
<span class="pl-c1">570</span>
<span class="pl-c1">571</span> <span class="pl-s1">ldata</span>, <span class="pl-s1">rdata</span> <span class="pl-c1">=</span> <span class="pl-s1">self</span>.<span class="pl-s1">left</span>.<span class="pl-s1">_data</span>, <span class="pl-s1">self</span>.<span class="pl-s1">right</span>.<span class="pl-s1">_data</span>
<span class="pl-c1">/</span><span class="pl-s1">usr</span><span class="pl-c1">/</span><span class="pl-s1">local</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python2</span>.<span class="pl-c1">7</span><span class="pl-c1">/</span><span class="pl-s1">dist</span><span class="pl-c1">-</span><span class="pl-s1">packages</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">reshape</span><span class="pl-c1">/</span><span class="pl-s1">merge</span>.<span class="pl-s1">pyc</span> <span class="pl-c1">in</span> <span class="pl-en">_get_join_info</span>(<span class="pl-s1">self</span>)
<span class="pl-c1">720</span> <span class="pl-s1">join_index</span>, <span class="pl-s1">left_indexer</span>, <span class="pl-s1">right_indexer</span> <span class="pl-c1">=</span> \
<span class="pl-c1">721</span> <span class="pl-s1">left_ax</span>.<span class="pl-en">join</span>(<span class="pl-s1">right_ax</span>, <span class="pl-s1">how</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">how</span>, <span class="pl-s1">return_indexers</span><span class="pl-c1">=</span><span class="pl-c1">True</span>,
<span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-c1">></span> <span class="pl-c1">722</span> <span class="pl-s1">sort</span><span class="pl-c1">=</span><span class="pl-s1">self</span>.<span class="pl-s1">sort</span>)
<span class="pl-c1">723</span> <span class="pl-k">elif</span> <span class="pl-s1">self</span>.<span class="pl-s1">right_index</span> <span class="pl-c1">and</span> <span class="pl-s1">self</span>.<span class="pl-s1">how</span> <span class="pl-c1">==</span> <span class="pl-s">'left'</span>:
<span class="pl-c1">724</span> <span class="pl-s1">join_index</span>, <span class="pl-s1">left_indexer</span>, <span class="pl-s1">right_indexer</span> <span class="pl-c1">=</span> \
<span class="pl-v">TypeError</span>: <span class="pl-en">join</span>() <span class="pl-s1">got</span> <span class="pl-s1">an</span> <span class="pl-s1">unexpected</span> <span class="pl-s1">keyword</span> <span class="pl-s1">argument</span> <span class="pl-s">'sort'</span></pre></div>
<p dir="auto">It seems the sort kwarg is invalid, but the internals are passing it in regardless</p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
In [22]: pd.show_versions()
/usr/local/lib/python2.7/dist-packages/xarray/core/formatting.py:16: FutureWarning: The pandas.tslib module is deprecated and will be removed in a future version.
from pandas.tslib import OutOfBoundsDatetime
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 2.7.12.final.0<br>
python-bits: 64<br>
OS: Linux<br>
OS-release: 4.9.13-moby<br>
machine: x86_64<br>
processor: x86_64<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: None<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.20.1<br>
pytest: 3.0.7<br>
pip: 9.0.1<br>
setuptools: 35.0.2<br>
Cython: 0.25.2<br>
numpy: 1.12.1<br>
scipy: 0.19.0<br>
xarray: 0.9.2<br>
IPython: 5.3.0<br>
sphinx: None<br>
patsy: 0.4.1<br>
dateutil: 2.6.0<br>
pytz: 2017.2<br>
blosc: None<br>
bottleneck: 1.2.0<br>
tables: None<br>
numexpr: 2.6.2<br>
feather: None<br>
matplotlib: 2.0.1<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: 1.2.0<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: None<br>
html5lib: 0.999999999<br>
sqlalchemy: 1.1.9<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.9.6<br>
s3fs: None<br>
pandas_gbq: 0.1.6<br>
pandas_datareader: None</p>
</details> | <p dir="auto">I've run into a data-dependent bug with MultiIndex. Attached are a test script and a data file generation script:</p>
<ul dir="auto">
<li>sales-data.py loads CSV data from a CSV data file with read_csv and then displays a multiindexed subset.</li>
<li>sales-gen.sh is an AWK script that generates CSV test files. By default, it creates a 600MB file, which causes the failure. To make a smaller test file, which succeeds, just use "head -1000".</li>
</ul>
<p dir="auto">My problem is that sales-data.py breaks with large CSV files but works with smaller CSV files. When it fails it displays the following error message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'MultiIndex lexsort depth 0, key was length 4'"><pre class="notranslate"><code class="notranslate">'MultiIndex lexsort depth 0, key was length 4'
</code></pre></div>
<p dir="auto">I know that MultiIndexes must be pre-sorted. So sales-gen.sh makes sure that the first four columns in the auto-generated CSV files are ordered. BTW, I'm not sure why lexsort is getting called.</p>
<h1 dir="auto">sales-data.py</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#!/usr/bin/env python
import numpy as np
import pandas as pd
from memory_profiler import profile
pd.set_option('display.height', 400)
pd.set_option('display.width', 400)
pd.set_option('display.max_rows', 1000)
pd.set_option('display.max_columns', 30)
pd.set_option('display.line_width', 200)
# @profile
def load_data():
try:
df = pd.read_csv(
'./sales-large.csv',
# './sales-small.csv',
header = None,
na_values = ['NULL'],
names = [
'salesperson',
'customer',
'invoice_date',
'ship_date',
'product',
'quantity',
'price',
],
index_col = [
'salesperson',
'customer',
'invoice_date',
'ship_date',
],
parse_dates = [
'invoice_date',
'ship_date',
],
)
print(df.loc[(
'A00000', # salesperson
'A', # customer
pd.datetime(2011,3,1,0,0,0), # invoice_date
pd.datetime(2011,3,6,0,0,0), # ship_date
)])
except Exception as e:
print(e)
if __name__== '__main__':
load_data()"><pre class="notranslate"><code class="notranslate">#!/usr/bin/env python
import numpy as np
import pandas as pd
from memory_profiler import profile
pd.set_option('display.height', 400)
pd.set_option('display.width', 400)
pd.set_option('display.max_rows', 1000)
pd.set_option('display.max_columns', 30)
pd.set_option('display.line_width', 200)
# @profile
def load_data():
try:
df = pd.read_csv(
'./sales-large.csv',
# './sales-small.csv',
header = None,
na_values = ['NULL'],
names = [
'salesperson',
'customer',
'invoice_date',
'ship_date',
'product',
'quantity',
'price',
],
index_col = [
'salesperson',
'customer',
'invoice_date',
'ship_date',
],
parse_dates = [
'invoice_date',
'ship_date',
],
)
print(df.loc[(
'A00000', # salesperson
'A', # customer
pd.datetime(2011,3,1,0,0,0), # invoice_date
pd.datetime(2011,3,6,0,0,0), # ship_date
)])
except Exception as e:
print(e)
if __name__== '__main__':
load_data()
</code></pre></div>
<h1 dir="auto">sales-gen.sh</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#!/usr/bin/env bash
# 'salesperson',
# 'customer',
# 'invoice_date',
# 'ship_date',
# 'product',
# 'quantity',
# 'price',
awk "BEGIN { \
first = 65; \
last = 91; \
s_char = first; \
c_char = first; \
\
n_sa = 100; \
n_cu = 100; \
n_dt = 10; \
n_pr = 100; \
\
for (i = 0; i < n_sa; i++ s_char++) { \
if (s_char == last) { \
s_char = first; \
} \
c_char = first; \
for (j = 0; j < n_cu; j++ c_char++) { \
if (c_char == last) { \
c_char = first; \
} \
for (k = 1; k <= n_dt; k++) { \
for (l = 0; l < n_pr; l++) { \
printf(\"%c%05d,%c,2011-03-%02d 00:00:00,2011-03-%02d 00:00:00,%d,%d,%f\n\", \
s_char, i, c_char, k, k+5, l, 1 + int(rand() * 10), rand()) \
} \
} \
} \
} \
}""><pre class="notranslate"><code class="notranslate">#!/usr/bin/env bash
# 'salesperson',
# 'customer',
# 'invoice_date',
# 'ship_date',
# 'product',
# 'quantity',
# 'price',
awk "BEGIN { \
first = 65; \
last = 91; \
s_char = first; \
c_char = first; \
\
n_sa = 100; \
n_cu = 100; \
n_dt = 10; \
n_pr = 100; \
\
for (i = 0; i < n_sa; i++ s_char++) { \
if (s_char == last) { \
s_char = first; \
} \
c_char = first; \
for (j = 0; j < n_cu; j++ c_char++) { \
if (c_char == last) { \
c_char = first; \
} \
for (k = 1; k <= n_dt; k++) { \
for (l = 0; l < n_pr; l++) { \
printf(\"%c%05d,%c,2011-03-%02d 00:00:00,2011-03-%02d 00:00:00,%d,%d,%f\n\", \
s_char, i, c_char, k, k+5, l, 1 + int(rand() * 10), rand()) \
} \
} \
} \
} \
}"
</code></pre></div> | 0 |
<p dir="auto">Hi,</p>
<p dir="auto">What needs to be done to get only one source map to show and used for debugging. Currently there are two being created, the one being the es6 file and the other the transpiled one. (see image below.) Here is my config file:</p>
<p dir="auto">var path = require('path'),<br>
webpack = require("webpack"),<br>
libPath = path.join(__dirname, '/modules/authentication/init'),<br>
wwwPath = path.join(__dirname, 'build'),<br>
pkg = require('./package.json'),<br>
HtmlWebpackPlugin = require('html-webpack-plugin');</p>
<p dir="auto">var ngAnnotatePlugin = require('ng-annotate-webpack-plugin');</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="console.log(__dirname);
console.log(path.join(__dirname, '/modules/configuration'));"><pre class="notranslate"><code class="notranslate">console.log(__dirname);
console.log(path.join(__dirname, '/modules/configuration'));
</code></pre></div>
<p dir="auto">var config = {<br>
entry: path.join(libPath, 'init.js'),<br>
debug: true,<br>
devtool: '#inline-source-map',<br>
output: {<br>
path: path.join(wwwPath),<br>
filename: 'bundle-[hash:6].js'<br>
},<br>
recursive: true,<br>
resolve: {<br>
alias: {</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" /*'configuration-module': path.resolve(__dirname, './modules/configuration/configuration-module.js'),
'global-module': path.resolve(__dirname, './modules/global/global-module.js'),
//'angular-recaptcha': path.resolve(__dirname, './modules/global/services/angular-recaptcha.js'),
//'angular-local-storage': path.resolve(__dirname, './modules/global/services/angular-local-storage.js'),
'system-init': path.resolve(__dirname, './modules/system/default/init/system-init.js'),
'authentication-service': path.resolve(__dirname, './modules/authentication/services/authentication-service.js'),
'authentication-inteceptor-service': path.resolve(__dirname, './modules/authentication/services/authentication-inteceptor-service.js'),
'authentication-facebook-service': path.resolve(__dirname, './modules/authentication/services/authentication-facebook-service.js'),
'facebook-login-controller': path.resolve(__dirname, './modules/authentication/controllers/facebook-login-controller.js')*/
}
},
module: {
loaders: [
{
test: /\.html$/,
loader: 'file?name=templates/[name]-[hash:6].html'
}, {
test: /\.(woff|woff2|eot|ttf|svg)$/,
loader: 'file-loader?name=[path][name].[ext]'
}, {
test: /\.(png|jpg)$/,
loader: 'file?name=[path][name]-[hash:6].[ext]' // inline base64 URLs for <=10kb images, direct URLs for the rest
}, {
test: /\.css$/,
loader: "style!css!autoprefixer"
}, {
test: /\.scss$/,
loader: "style!css!autoprefixer!sass"
}, {
test: /\.js$/,
exclude: /(node_modules)/,
loader: "ng-annotate?add=true!babel?presets[]=es2015"
}]
},
plugins: [
// HtmlWebpackPlugin: Simplifies creation of HTML files to serve your webpack bundles : https://www.npmjs.com/package/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
pkg: pkg,
template: path.join(libPath, 'index.html')
}),
new ngAnnotatePlugin({
add: true,
// other ng-annotate options here
}),
// OccurenceOrderPlugin: Assign the module and chunk ids by occurrence count. : https://webpack.github.io/docs/list-of-plugins.html#occurenceorderplugin
// Deduplication: find duplicate dependencies & prevents duplicate inclusion : https://github.com/webpack/docs/wiki/optimization#deduplication
new webpack.optimize.DedupePlugin()
]"><pre class="notranslate"><code class="notranslate"> /*'configuration-module': path.resolve(__dirname, './modules/configuration/configuration-module.js'),
'global-module': path.resolve(__dirname, './modules/global/global-module.js'),
//'angular-recaptcha': path.resolve(__dirname, './modules/global/services/angular-recaptcha.js'),
//'angular-local-storage': path.resolve(__dirname, './modules/global/services/angular-local-storage.js'),
'system-init': path.resolve(__dirname, './modules/system/default/init/system-init.js'),
'authentication-service': path.resolve(__dirname, './modules/authentication/services/authentication-service.js'),
'authentication-inteceptor-service': path.resolve(__dirname, './modules/authentication/services/authentication-inteceptor-service.js'),
'authentication-facebook-service': path.resolve(__dirname, './modules/authentication/services/authentication-facebook-service.js'),
'facebook-login-controller': path.resolve(__dirname, './modules/authentication/controllers/facebook-login-controller.js')*/
}
},
module: {
loaders: [
{
test: /\.html$/,
loader: 'file?name=templates/[name]-[hash:6].html'
}, {
test: /\.(woff|woff2|eot|ttf|svg)$/,
loader: 'file-loader?name=[path][name].[ext]'
}, {
test: /\.(png|jpg)$/,
loader: 'file?name=[path][name]-[hash:6].[ext]' // inline base64 URLs for <=10kb images, direct URLs for the rest
}, {
test: /\.css$/,
loader: "style!css!autoprefixer"
}, {
test: /\.scss$/,
loader: "style!css!autoprefixer!sass"
}, {
test: /\.js$/,
exclude: /(node_modules)/,
loader: "ng-annotate?add=true!babel?presets[]=es2015"
}]
},
plugins: [
// HtmlWebpackPlugin: Simplifies creation of HTML files to serve your webpack bundles : https://www.npmjs.com/package/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
pkg: pkg,
template: path.join(libPath, 'index.html')
}),
new ngAnnotatePlugin({
add: true,
// other ng-annotate options here
}),
// OccurenceOrderPlugin: Assign the module and chunk ids by occurrence count. : https://webpack.github.io/docs/list-of-plugins.html#occurenceorderplugin
// Deduplication: find duplicate dependencies & prevents duplicate inclusion : https://github.com/webpack/docs/wiki/optimization#deduplication
new webpack.optimize.DedupePlugin()
]
</code></pre></div>
<p dir="auto">};</p>
<p dir="auto">module.exports = config;</p>
<p dir="auto">Any help will be greatly appreciated.</p>
<p dir="auto">Thanks :)</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/12214559/13229415/859c242c-d9a9-11e5-85a0-3b084c48a92e.png"><img src="https://cloud.githubusercontent.com/assets/12214559/13229415/859c242c-d9a9-11e5-85a0-3b084c48a92e.png" alt="webpack" style="max-width: 100%;"></a></p> | <h1 dir="auto">Bug report</h1>
<p dir="auto">Minimal repro:<br>
<a href="https://github.com/Bnaya/webpack5-twice-compile-why">https://github.com/Bnaya/webpack5-twice-compile-why</a></p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
Run the project <a href="https://github.com/Bnaya/webpack5-twice-compile-why">https://github.com/Bnaya/webpack5-twice-compile-why</a> on a mac machine<br>
(yarn && yarn start)<br>
After the initial compile, open <code class="notranslate">src/index.js</code> and hit save.</p>
<p dir="auto">You will see that webpack rebuild the project twice.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: 5.69.1<br>
webpack-cli: 4.9.2<br>
Node.js version: (14, 16)<br>
Operating System: macos 12.2.1</p> | 0 |
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/8572307/12980205/b012acaa-d11e-11e5-9c9f-f2e463fdb8fa.PNG"><img width="224" alt="dd" src="https://cloud.githubusercontent.com/assets/8572307/12980205/b012acaa-d11e-11e5-9c9f-f2e463fdb8fa.PNG" style="max-width: 100%;"></a></p> | <p dir="auto">Ported from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="94376232" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/285/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/285">microsoft/TypeScript-Sublime-Plugin#285</a></p>
<p dir="auto">Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="91870539" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript-Sublime-Plugin/issues/265/hovercard" href="https://github.com/microsoft/TypeScript-Sublime-Plugin/issues/265">microsoft/TypeScript-Sublime-Plugin#265</a>.</p>
<p dir="auto">Issue:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627292/da8f8be4-26fe-11e5-97ce-2b2a8b257afa.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Correct:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png"><img src="https://cloud.githubusercontent.com/assets/1707813/8627340/3e27dbf2-26ff-11e5-8751-7e8576cbd230.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">The customize feature (<a href="http://twitter.github.io/bootstrap/customize.html" rel="nofollow">http://twitter.github.io/bootstrap/customize.html</a>) seems to be broken. I tried a few different configurations (even the default) and received the following in an error.txt:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="A less error occured trying to build your bundle. You've likely entered an invalid input into the less variable field. Check your syntax and try again!
thanks!
{"type":"Parse","message":"Syntax Error on line 1","index":0,"filename":"bootstrap.css","line":1,"column":0,"extract":[null,"<!DOCTYPE html>","<!--"]}"><pre class="notranslate"><code class="notranslate">A less error occured trying to build your bundle. You've likely entered an invalid input into the less variable field. Check your syntax and try again!
thanks!
{"type":"Parse","message":"Syntax Error on line 1","index":0,"filename":"bootstrap.css","line":1,"column":0,"extract":[null,"<!DOCTYPE html>","<!--"]}
</code></pre></div> | <p dir="auto">Tried to download a customised setup but css files are empty once downloaded, the same is true for IE,Safari,FireFox and Chrome. Received a error file with the downloaded zip, message as follows:</p>
<p dir="auto">A less error occured trying to build your bundle. You've likely entered an invalid input into the less variable field. Check your syntax and try again!<br>
thanks!<br>
{"type":"Parse","message":"Syntax Error on line 1","index":0,"filename":"bootstrap.css","line":1,"column":0,"extract":[null,"","<!--"]}</p>
<p dir="auto">Thanks</p> | 1 |
<p dir="auto">Logged from file retry.py, line 68<br>
Traceback (most recent call last):<br>
File "c:\python27\lib\logging__init__.py", line 884, in emit<br>
stream.write(fs % msg.encode("UTF-8"))<br>
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd3 in position 234: invalid continuation byte<br>
Logged from file retry.py, line 68<br>
Traceback (most recent call last):<br>
File "c:\python27\lib\logging__init__.py", line 884, in emit<br>
stream.write(fs % msg.encode("UTF-8"))<br>
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd3 in position 234: invalid continuation byte</p> | <p dir="auto">Some error message as:<br>
2015-07-01 16:03:46+0800 [Launcher,7500/stderr] Traceback (most recent call last<br>
):<br>
File "D:\Python27\lib\logging__init__.py", line 882, in emit<br>
stream.write(fs % msg.encode("UTF-8"))<br>
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd3 in position 267:<br>
invalid continuation byte<br>
Logged from file retry.py, line 73<br>
Traceback (most recent call last):<br>
File "D:\Python27\lib\logging__init__.py", line 882, in emit<br>
stream.write(fs % msg.encode("UTF-8"))<br>
UnicodeDecodeError: 'utf8' codec can't decode byte 0xd3 in position 267:<br>
invalid continuation byte<br>
Logged from file retry.py, line 73<br>
Traceback (most recent call last):<br>
File "D:\Python27\lib\logging__init__.py", line 882, in emit<br>
stream.write(fs % msg.encode("UTF-8"))</p> | 1 |
<h3 dir="auto">Vue.js version</h3>
<p dir="auto">2.0.2</p>
<h3 dir="auto">Reproduction Link</h3>
<p dir="auto"><a href="http://codepen.io/anon/pen/WGyrdz" rel="nofollow">http://codepen.io/anon/pen/WGyrdz</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Just load up the page in edge or internet explorer (11) with your console open. Vue will display the warning "duplicate attribute: class".<br>
When removing the <code class="notranslate">class</code> attribute, the warning goes away.</p>
<h3 dir="auto">What is Expected?</h3>
<p dir="auto">No warnings :). I expect vue to use both the regular <code class="notranslate">class</code> attribute and the <code class="notranslate">:class</code> attribute and merge them together into the <code class="notranslate">class</code> attribute.</p> | <h3 dir="auto">What problem does this feature solve?</h3>
<p dir="auto">ๅฉ็จkeep-alive็ปๅcompontent๏ผๅฎ็ฐๅๆขtab็ๆๆใไฝๆฏๆๅคไธชtab็จๅไธไธช็ปไปถ็ๆ
ๅต๏ผๆๅ ไบkeyๅๅบๅ๏ผๅฆไธ๏ผ<br>
<component :is="currentTabComponent" :key="moduleId" ></component><br>
่ฟๆ ท๏ผๅฏไปฅ็ผๅญ่ฟไบไฝฟ็จๅไธไธช็ปไปถ็tabใ้ฎ้ขๆฏ๏ผๅ ้คtabๆถ๏ผ็จincludeๅช่ฝๅน้
็ปไปถ็nameๆๆณจๅๅ๏ผๅนถไธ่ฝๅบๅไฝฟ็จ็ธๅ็ปไปถ็tabใ<br>
็ถๅๆ็จ$desytoy้ๆฏ๏ผๅๆฌกๅๅปบๆถๅไผๆ็ปไปถไธๆญcreated๏ผ็ผๅญไธไบ็็ฐ่ฑกใ<br>
ๆไปไนๅๆณ่งฃๅณ่ฟ็งๅบๆฏๅ๏ผ</p>
<h3 dir="auto">What does the proposed API look like?</h3>
<p dir="auto">includeไธญๆฏๅฆๅฏไปฅๆkeyๅธฆ่ฟๅป๏ผๅบๅ็ปไปถ็ธๅkeyไธๅ็็ผๅญๅฎไพ</p> | 0 |
<p dir="auto">Using kubectl create with a list no longer works. We get the output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ _output/local/bin/linux/amd64/kubectl create -f /tmp/test.json
error validating "/tmp/test.json": error validating data: couldn't find type: v1.List; if you choose to ignore these errors, turn validation off with --validate=false"><pre class="notranslate"><code class="notranslate">$ _output/local/bin/linux/amd64/kubectl create -f /tmp/test.json
error validating "/tmp/test.json": error validating data: couldn't find type: v1.List; if you choose to ignore these errors, turn validation off with --validate=false
</code></pre></div> | <h1 dir="auto">Proposal to create a generic interface from kubelet to cadvisor</h1>
<h2 dir="auto">1. Background</h2>
<p dir="auto">cadvisor was integrated with kubernetes in issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="58833302" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/4798" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/4798/hovercard" href="https://github.com/kubernetes/kubernetes/issues/4798">#4798</a>, which made<br>
the deployment of kubernetes simpler and out-of-box UX smoother for new<br>
users. However, at the same time, it created a tight coupling between<br>
kubelet and cadvisor. We'd like create a generic interface so that other<br>
container health checking tools can be used with kubernetes.</p>
<h2 dir="auto">2. Motivation</h2>
<p dir="auto">It is great that there's a built-in cadvisor when a new user starts to<br>
play around with kubernetes. For most users, continuing to use this<br>
cadvisor, and then configure heapster, influxdb, and grafana is the natural<br>
way to go. However, for other users, they might prefer to use other open<br>
source tools for collecting this information or create their own custom tools.<br>
As there is no way to disable cadvisor, one way is to run both cadvisor<br>
and their custom tools at the same time, which is inefficient and wasteful.</p>
<p dir="auto">Other use cases to further motivate this proposal are:</p>
<ul dir="auto">
<li>a) Deploying kubernetes in a public cloud, and the cloud provider already provides<br>
similar health checking tools.</li>
<li>b) Deploying kubernetes on top of mesos, where there could be multiple frameworks<br>
deployed on the same mesos node. If each framework is using its own health checking<br>
tool, they would perform duplicate works.</li>
<li>c) The kubenetes-bundled cadvisor sometimes have performance issues where it is<br>
consuming a much larger amount of resources than expected (see issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="91490559" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/10451" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/10451/hovercard" href="https://github.com/kubernetes/kubernetes/issues/10451">#10451</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="113435772" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/16296" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/16296/hovercard" href="https://github.com/kubernetes/kubernetes/issues/16296">#16296</a>).<br>
In a production environment, one might want to run a stable version of cadvisor,<br>
and have Kubernetes simply connecting to it instead of using the newer built-in one.</li>
</ul>
<h2 dir="auto">3. Planned work</h2>
<p dir="auto">We're planning to create a generic interface and a set of Kubernetes-based (instead of<br>
cadvisor-based) health checking data structs, so that it can interface with different<br>
health checking backends, including cadvisor. Integrating kubernetes with a new health<br>
checking tool would involve writing a new driver that implements that generic interface.</p>
<h3 dir="auto">3a. Phased approach</h3>
<p dir="auto">We'd like to phase this work to smaller steps. Initially, we are planning to create this<br>
generic interface almost identical to what is defined in pkg/kubelet/cadvisor/types.go, and<br>
the corresponding data structs directly from cadvisor. This allows us to put in the generic<br>
health checking interface with minimal changes to the existing code.</p>
<p dir="auto">In the 2nd phase, we would like to clean up the generic interface and the corresponding<br>
data structs as not everything cadvisor collects are used by kubelet. Basically, we will make<br>
the interface and data structs more generic so that new health check drivers can be more<br>
easily written.</p>
<p dir="auto">In the 3rd phase, we will add one or two additional cmd flags to allow alternative health<br>
checking driver to be used when starting kubernetes. Of course, the default setting will be<br>
to use the built-in cadvisor.</p> | 0 |
<p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: [0.11.1]</li>
<li>Operating System: [Mac Catalina]</li>
</ul>
<p dir="auto"><strong>package.json</strong><br>
<code class="notranslate">{ "dependencies": { "playwright": "^0.11.1" } } </code></p>
<p dir="auto"><strong>test.js</strong><br>
<code class="notranslate">const playwright = require('playwright');</code><br>
<code class="notranslate">(async () => {</code><br>
<code class="notranslate"> for (const browserType of ['chromium', 'firefox', 'webkit']) {</code><br>
<code class="notranslate"> const browser = await playwright[browserType].launch({ headless: false });</code><br>
<code class="notranslate"> const context = await browser.newContext();</code><br>
<code class="notranslate"> const page = await context.newPage();</code><br>
<code class="notranslate"> await page.goto('http://whatsmyuseragent.org/');</code><br>
<code class="notranslate"> await page.screenshot({ path:</code>output/example-${browserType}.png<code class="notranslate"> });</code><br>
<code class="notranslate"> await browser.close();</code><br>
<code class="notranslate"> }</code><br>
<code class="notranslate">})();</code></p>
<p dir="auto">With default settings and for any browser if launch tests with parameter <code class="notranslate">launch({ headless: false })</code> can see double window/tab. Its kinda strange</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17493900/75021402-60e24500-54a5-11ea-8acb-91ab3d169c2f.png"><img src="https://user-images.githubusercontent.com/17493900/75021402-60e24500-54a5-11ea-8acb-91ab3d169c2f.png" alt="ะกะฝะธะผะพะบ ัะบัะฐะฝะฐ 2020-02-21 ะฒ 12 12 20" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/17493900/75021409-63449f00-54a5-11ea-876a-84d71c954003.png"><img src="https://user-images.githubusercontent.com/17493900/75021409-63449f00-54a5-11ea-876a-84d71c954003.png" alt="ะกะฝะธะผะพะบ ัะบัะฐะฝะฐ 2020-02-21 ะฒ 12 12 23" style="max-width: 100%;"></a></p> | <p dir="auto">Version: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/microsoft/playwright/commit/d367a2ed3a2d583e5e82d27ac1f53caddd8aa943/hovercard" href="https://github.com/microsoft/playwright/commit/d367a2ed3a2d583e5e82d27ac1f53caddd8aa943"><tt>d367a2e</tt></a> (current master)</p>
<p dir="auto">When running this script it opens two pages (and I think two contexts)</p>
<ul dir="auto">
<li>one after <code class="notranslate">chromium.launch</code></li>
<li>the other after <code class="notranslate">context.newPage</code></li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const { chromium, devices } = require("playwright");
const iPhone = devices["iPhone 6"];
(async () => {
const browser = await chromium.launch({ headless: false });
const context = await browser.newContext({
viewport: iPhone.viewport,
userAgent: iPhone.userAgent
});
const page = await context.newPage();
})();"><pre class="notranslate"><code class="notranslate">const { chromium, devices } = require("playwright");
const iPhone = devices["iPhone 6"];
(async () => {
const browser = await chromium.launch({ headless: false });
const context = await browser.newContext({
viewport: iPhone.viewport,
userAgent: iPhone.userAgent
});
const page = await context.newPage();
})();
</code></pre></div>
<p dir="auto">I would like to close the page opened by <code class="notranslate">chromium.launch</code>, or skip opening it in the first place. Since it is confusing to have a blank page that is not in use (<a href="https://github.com/qawolf/qawolf/issues/395">https://github.com/qawolf/qawolf/issues/395</a>).</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1136652/74447218-06af0780-4e47-11ea-91d2-2523c29c52e5.gif"><img src="https://user-images.githubusercontent.com/1136652/74447218-06af0780-4e47-11ea-91d2-2523c29c52e5.gif" alt="example-small" data-animated-image="" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Seen on current main in job <code class="notranslate">ci/circleci: refguide_check</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="===================
scipy.sparse.linalg
===================
scipy.sparse.linalg.svds
------------------------
File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 280, in svds
Failed example:
s_a(u2[:, :1], u[:, :1]) + s_a(u2[:, 1:], u[:, 1:]) > 1e-3
Expected:
True
Got:
array([False])
File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 283, in svds
Failed example:
(s_a(vT2[:1, :].T, vT[:1, :].T) +
s_a(vT2[1:, :].T, vT[1:, :].T)) > 1e-3
Expected:
True
Got:
array([False])
ERROR: refguide or doctests have errors"><pre class="notranslate"><code class="notranslate">===================
scipy.sparse.linalg
===================
scipy.sparse.linalg.svds
------------------------
File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 280, in svds
Failed example:
s_a(u2[:, :1], u[:, :1]) + s_a(u2[:, 1:], u[:, 1:]) > 1e-3
Expected:
True
Got:
array([False])
File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 283, in svds
Failed example:
(s_a(vT2[:1, :].T, vT[:1, :].T) +
s_a(vT2[1:, :].T, vT[1:, :].T)) > 1e-3
Expected:
True
Got:
array([False])
ERROR: refguide or doctests have errors
</code></pre></div>
<p dir="auto">Both are <em>potentially</em> only marginal tolerance violations, AFAICT.</p>
<p dir="auto">An old similar issue I found while searching for this: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1350652021" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/16900" data-hovercard-type="issue" data-hovercard-url="/scipy/scipy/issues/16900/hovercard" href="https://github.com/scipy/scipy/issues/16900">#16900</a></p> | <h3 dir="auto">Describe your issue.</h3>
<p dir="auto">Lately I have seen the refguide job failing in CI multiple times in some sparse svd section: <a href="https://app.circleci.com/pipelines/github/scipy/scipy/19755/workflows/7be1af01-79dc-459c-92c4-d4a6d72c2471/jobs/66447" rel="nofollow">https://app.circleci.com/pipelines/github/scipy/scipy/19755/workflows/7be1af01-79dc-459c-92c4-d4a6d72c2471/jobs/66447</a></p>
<p dir="auto">Thought I would raise attention with a separate issue.</p>
<p dir="auto">Slightly related: it looks like the Fortran sparse SVD libraries are very painful to maintain. One unfortunately license incompatible alternative could be <a href="https://github.com/yixuan/spectra">Spectra</a>, ARPACK rewritten in C++. Are there any thoughts on replacements for the old PACKs?</p>
<h3 dir="auto">Reproducing Code Example</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="N/A"><pre class="notranslate"><span class="pl-v">N</span><span class="pl-c1">/</span><span class="pl-v">A</span></pre></div>
<h3 dir="auto">Error message</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 280, in svds
Failed example:
s_a(u2[:, :1], u[:, :1]) + s_a(u2[:, 1:], u[:, 1:]) > 1e-3
Expected:
True
Got:
array([False])
File "build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py", line 283, in svds
Failed example:
(s_a(vT2[:1, :].T, vT[:1, :].T) +
s_a(vT2[1:, :].T, vT[1:, :].T)) > 1e-3
Expected:
True
Got:
array([False])"><pre class="notranslate">File <span class="pl-s"><span class="pl-pds">"</span>build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py<span class="pl-pds">"</span></span>, line 280, <span class="pl-k">in</span> svds
Failed example:
s_a(u2[:, :1], u[:, :1]) + s_a(u2[:, 1:], u[:, 1:]) <span class="pl-k">></span> 1e-3
Expected:
True
Got:
array([False])
File <span class="pl-s"><span class="pl-pds">"</span>build-install/lib/python3.9/site-packages/scipy/sparse/linalg/_eigen/_svds.py<span class="pl-pds">"</span></span>, line 283, <span class="pl-k">in</span> svds
Failed example:
(s_a(vT2[:1, :].T, vT[:1, :].T) +
s_a(vT2[1:, :].T, vT[1:, :].T)) <span class="pl-k">></span> 1e-3
Expected:
True
Got:
array([False])</pre></div>
<h3 dir="auto">SciPy/NumPy/Python version and system information</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="N/A"><pre class="notranslate">N/A</pre></div> | 1 |
<p dir="auto">**I'm submitting a bug report **</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report
[ ] feature request
[ ] support request"><pre class="notranslate"><code class="notranslate">[x] bug report
[ ] feature request
[ ] support request
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Unable to create custom TypeScript decorators when using AoT compiler.</p>
<p dir="auto">Reproduce steps:</p>
<ul dir="auto">
<li>Create new angular-cli project.</li>
<li>Run project using: <code class="notranslate">ng serve --port 3000</code> (serve without AoT)</li>
<li>Create a new decorator and use it in one of the <code class="notranslate">Component</code>s:</li>
</ul>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function test(props: any) {
return function(target: any) {
console.log("Running decorator...", props, target);
}
}
@Component({
template: "Hello!"
})
@test({})
class MyComponent {
// ...
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s1">props</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">target</span>: <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"Running decorator..."</span><span class="pl-kos">,</span> <span class="pl-s1">props</span><span class="pl-kos">,</span> <span class="pl-s1">target</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
@<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">template</span>: <span class="pl-s">"Hello!"</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
@<span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-smi">MyComponent</span> <span class="pl-kos">{</span>
<span class="pl-c">// ...</span>
<span class="pl-kos">}</span></pre></div>
<ul dir="auto">
<li>Note that the logic of the decorator works great and executed (printed to the browser's log).</li>
<li>Now close the cli, and run again, now the command: <code class="notranslate">ng serve --aot --port 3000</code> (serve with AoT)</li>
<li>The decorator is stripped from the Component and the logic of the decorator does not executed.</li>
</ul>
<p dir="auto">The generated factory file contain the actual decorator logic, but it does not execute it when creating the Component.</p>
<p dir="auto">Tried to change <code class="notranslate">angularCompilerOptions</code> and change <code class="notranslate">skipMetadataEmit</code> - but still the same.</p>
<p dir="auto">When running with JIT compiler all works, only AoT compiler causes problems.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
The decorator should execute when using AoT compiler.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
In the description above.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
Same compiler behavior for AoT and regular compiler.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Dotans-MacBook-Pro:~ dotansimha$ ng --version
angular-cli: 1.0.0-beta.19-3
node: 6.9.1
os: darwin x64"><pre class="notranslate"><code class="notranslate">Dotans-MacBook-Pro:~ dotansimha$ ng --version
angular-cli: 1.0.0-beta.19-3
node: 6.9.1
os: darwin x64
</code></pre></div>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.1.0</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> all</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> all / TypeScript?</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</p>
</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Dotans-MacBook-Pro:~ dotansimha$ node --version
v6.9.1
Dotans-MacBook-Pro:~ dotansimha$ npm --version
3.10.8
Dotans-MacBook-Pro:~ dotansimha$ watchman --version
4.7.0"><pre class="notranslate"><code class="notranslate">Dotans-MacBook-Pro:~ dotansimha$ node --version
v6.9.1
Dotans-MacBook-Pro:~ dotansimha$ npm --version
3.10.8
Dotans-MacBook-Pro:~ dotansimha$ watchman --version
4.7.0
</code></pre></div> | <p dir="auto">Right now, we have to specify the attribute name as a parameter of the <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Attribute/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Attribute">@Attribute</a> decorator.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Directive({selector: 'input})
class Component {
constructor(@Attribute('type') private type:String, private element:ElementRef){
if(type === 'date') {
}
}
}"><pre class="notranslate">@<span class="pl-smi">Directive</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'input})</span>
<span class="pl-s">class Component {</span>
<span class="pl-s"> constructor(@Attribute('</span><span class="pl-s1">type</span><span class="pl-s">') private type:String, private element:ElementRef){</span>
<span class="pl-s"> if(type === '</span><span class="pl-s1">date</span>') {
}
}
}</pre></div>
<p dir="auto">It would be very interesting to be able to specify this attribute name directly by naming correctly the corresponding parameter, in order to avoid duplicates code.</p>
<p dir="auto">So for example :</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@Directive({selector: 'input})
class Component {
constructor(@Attribute() private type:String, private element:ElementRef){
if(type === 'date') {
}
}
}"><pre class="notranslate">@<span class="pl-smi">Directive</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">selector</span>: <span class="pl-s">'input})</span>
<span class="pl-s">class Component {</span>
<span class="pl-s"> constructor(@Attribute() private type:String, private element:ElementRef){</span>
<span class="pl-s"> if(type === '</span><span class="pl-s1">date</span>') {
}
}
}</pre></div>
<p dir="auto">What do you think ?</p> | 0 |
<p dir="auto">slides change sharply without transition</p> | <p dir="auto">On my site and the document I try to test Carousel on IE(7-9) I didn't see transition work. I want it work the same FF, Chrome and Safari. Everyone have any idea?</p> | 1 |
<p dir="auto">The code for data-toggle="buttons" doesn't listen for change events. If the underlying radio/checkbox is changed by other code and fires a change event the .active class remains as-is.</p> | <p dir="auto">Maybe I'm doing something wrong, but when I use the btn-group with the radio input type and then set the input checked value, the toggle button state doesn't become active.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1"> Option 1
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2"> Option 2
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3"> Option 3
</label>
</div>"><pre class="notranslate"><code class="notranslate"><div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="radio" name="options" id="option1"> Option 1
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2"> Option 2
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option3"> Option 3
</label>
</div>
</code></pre></div>
<p dir="auto">And here's the script.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$('#option1').prop('checked', true);"><pre class="notranslate"><code class="notranslate">$('#option1').prop('checked', true);
</code></pre></div>
<p dir="auto">Should I expect that the button's data-toggle would be subscribed to the input checked state changing and update it's active state?</p> | 1 |
<p dir="auto">The Flask Doc Download link mentioned below are broken</p>
<p dir="auto"><a href="http://flask.pocoo.org/docs/flask-docs.pdf" rel="nofollow">http://flask.pocoo.org/docs/flask-docs.pdf</a></p>
<p dir="auto"><a href="http://flask.pocoo.org/docs/flask-docs.zip" rel="nofollow">http://flask.pocoo.org/docs/flask-docs.zip</a></p> | <h3 dir="auto">Expected Behavior</h3>
<p dir="auto">For the server to start correctly, this code used to work before 1.1.2.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from pathlib import Path
ui_dist_dir = Path(__file__).parent / "ui" / "public"
app = Flask(__name__, static_folder=ui_dist_dir, static_url_path="/static", template_folder=ui_dist_dir)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">pathlib</span> <span class="pl-k">import</span> <span class="pl-v">Path</span>
<span class="pl-s1">ui_dist_dir</span> <span class="pl-c1">=</span> <span class="pl-v">Path</span>(<span class="pl-s1">__file__</span>).<span class="pl-s1">parent</span> <span class="pl-c1">/</span> <span class="pl-s">"ui"</span> <span class="pl-c1">/</span> <span class="pl-s">"public"</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Flask</span>(<span class="pl-s1">__name__</span>, <span class="pl-s1">static_folder</span><span class="pl-c1">=</span><span class="pl-s1">ui_dist_dir</span>, <span class="pl-s1">static_url_path</span><span class="pl-c1">=</span><span class="pl-s">"/static"</span>, <span class="pl-s1">template_folder</span><span class="pl-c1">=</span><span class="pl-s1">ui_dist_dir</span>)</pre></div>
<p dir="auto">I'm not sure if it was intended to be used with <code class="notranslate">pathlib</code> before but since python2 support is being dropped I think it would make a lot of sense to support. I would even say that instead of manually replacing slashes in strings, it would be a good idea to use pathlib internally and not duplicate that logic in Flask.</p>
<h3 dir="auto">Actual Behavior</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/opt/spike/server/envs/default/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/opt/spike/server/envs/default/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/opt/spike/server/spike/start.py", line 140, in <module>
start()
File "/opt/spike/server/spike/start.py", line 64, in start
app = Flask(__name__, static_folder=ui_dist_dir, static_url_path="/static", template_folder=ui_dist_dir)
File "/opt/spike/server/envs/default/lib/python3.7/site-packages/flask/app.py", line 420, in __init__
self.static_folder = static_folder
File "/opt/spike/server/envs/default/lib/python3.7/site-packages/flask/helpers.py", line 1004, in static_folder
value = value.rstrip("/\\")
AttributeError: 'PosixPath' object has no attribute 'rstrip'"><pre class="notranslate"><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-v">File</span> <span class="pl-s">"/opt/spike/server/envs/default/lib/python3.7/runpy.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">193</span>, <span class="pl-s1">in</span> <span class="pl-s1">_run_module_as_main</span>
<span class="pl-s">"__main__"</span>, <span class="pl-s1">mod_spec</span>)
<span class="pl-v">File</span> <span class="pl-s">"/opt/spike/server/envs/default/lib/python3.7/runpy.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">85</span>, <span class="pl-s1">in</span> <span class="pl-s1">_run_code</span>
<span class="pl-en">exec</span>(<span class="pl-s1">code</span>, <span class="pl-s1">run_globals</span>)
<span class="pl-v">File</span> <span class="pl-s">"/opt/spike/server/spike/start.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">140</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-en">start</span>()
<span class="pl-v">File</span> <span class="pl-s">"/opt/spike/server/spike/start.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">64</span>, <span class="pl-s1">in</span> <span class="pl-s1">start</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Flask</span>(<span class="pl-s1">__name__</span>, <span class="pl-s1">static_folder</span><span class="pl-c1">=</span><span class="pl-s1">ui_dist_dir</span>, <span class="pl-s1">static_url_path</span><span class="pl-c1">=</span><span class="pl-s">"/static"</span>, <span class="pl-s1">template_folder</span><span class="pl-c1">=</span><span class="pl-s1">ui_dist_dir</span>)
<span class="pl-v">File</span> <span class="pl-s">"/opt/spike/server/envs/default/lib/python3.7/site-packages/flask/app.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">420</span>, <span class="pl-s1">in</span> <span class="pl-s1">__init__</span>
<span class="pl-s1">self</span>.<span class="pl-s1">static_folder</span> <span class="pl-c1">=</span> <span class="pl-s1">static_folder</span>
<span class="pl-v">File</span> <span class="pl-s">"/opt/spike/server/envs/default/lib/python3.7/site-packages/flask/helpers.py"</span>, <span class="pl-s1">line</span> <span class="pl-c1">1004</span>, <span class="pl-s1">in</span> <span class="pl-s1">static_folder</span>
<span class="pl-s1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">value</span>.<span class="pl-en">rstrip</span>(<span class="pl-s">"/<span class="pl-cce">\\</span>"</span>)
<span class="pl-v">AttributeError</span>: <span class="pl-s">'PosixPath'</span> <span class="pl-s1">object</span> <span class="pl-s1">has</span> <span class="pl-s1">no</span> <span class="pl-s1">attribute</span> <span class="pl-s">'rstrip'</span></pre></div>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Python version: 3.7.4</li>
<li>Flask version: 1.1.2</li>
<li>Werkzeug version: 0.16.1</li>
</ul> | 0 |
<p dir="auto">Currently if a compute node receives a duplicate request it just does the same query twice. Should be pretty easy to keep track of in progress queries and if a dup comes in block the request until the results are cached (pretty much all read through caches do this)</p> | <p dir="auto">CachingCostBalancerStrategyFactory registers callbacks in its <code class="notranslate">start()</code> method, which is problematic since any callbacks that happen between start of ServerInventoryView and BalancerStrategyFactory will be missed. Inventory view callbacks should generally be registered in constructors, not in start methods.</p>
<p dir="auto">I discovered this when trying to test the cachingCost balancer on a cluster that has a small number of segments, and found that it missed the initialization callback (happened too fast) so it refused to create itself.</p>
<p dir="auto">cc: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dgolitsyn/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dgolitsyn">@dgolitsyn</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/leventov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/leventov">@leventov</a></p> | 0 |
<p dir="auto">When using Atom (0.138.0 from zip download) on german Windows 7 with german keyboard layout the backslash (<code class="notranslate">\</code>) is entered with the <kbd>AltGr</kbd>+<kbd>ร</kbd> combination. In atom this does not enter the character in the text but swallow the keypress. <kbd>AltGr</kbd>+<kbd>q</kbd> (which produces the at (<code class="notranslate">@</code>) is also ignored).</p> | <p dir="auto">Original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="28529842" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/1625" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/1625/hovercard" href="https://github.com/atom/atom/issues/1625">atom/atom#1625</a></p>
<hr>
<p dir="auto">Use <a href="https://atom.io/packages/keyboard-localization" rel="nofollow">https://atom.io/packages/keyboard-localization</a> until this issue gets fixed (should be in the Blink upstream).</p> | 1 |
<p dir="auto">When all of the points are in one hemisphere some of the Voronoi points are incorrect.</p>
<p dir="auto">To be more precise, certain of the points are on the wrong side of the sphere. An example is to create a tetrahedron with the following generator points:</p>
<p dir="auto">generators (polar)<br>
[[-25.56198973 10.81015471]<br>
[-54.40661695 26.73672285]<br>
[-55.29180524 -6.7928405 ]<br>
[-45.12839961 9.12243389]]<br>
generators (rectangular)<br>
[[ 0.88610999 -0.42383021 0.18755541]<br>
[ 0.51980039 -0.72622668 0.4498915 ]<br>
[ 0.56540011 -0.81629197 -0.11827989]<br>
[ 0.69659682 -0.69972598 0.15854467]]</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2798381/47086102-7b2f5300-d1cd-11e8-9394-405ca519bca6.png"><img src="https://user-images.githubusercontent.com/2798381/47086102-7b2f5300-d1cd-11e8-9394-405ca519bca6.png" alt="p" style="max-width: 100%;"></a></p>
<p dir="auto">The first three Voronoi points and associated Delaunay triangles come out fine:<br>
Voronoi vertex number 1 , coordinates: [ 0.73647759 -0.54764287 0.39709955]<br>
Delaunay vertices<br>
[[ 0.69659682 -0.69972598 0.15854467]<br>
[ 0.88610999 -0.42383021 0.18755541]<br>
[ 0.51980039 -0.72622668 0.4498915 ]]<br>
Voronoi vertex number 2 , coordinates: [ 0.42155897 -0.88977832 0.17487877]<br>
Delaunay vertices<br>
[[ 0.69659682 -0.69972598 0.15854467]<br>
[ 0.56540011 -0.81629197 -0.11827989]<br>
[ 0.51980039 -0.72622668 0.4498915 ]]<br>
Voronoi vertex number 3 , coordinates: [ 0.82153008 -0.54761634 -0.15875979]<br>
Delaunay vertices<br>
[[ 0.69659682 -0.69972598 0.15854467]<br>
[ 0.56540011 -0.81629197 -0.11827989]<br>
[ 0.88610999 -0.42383021 0.18755541]]</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2798381/47086240-ce090a80-d1cd-11e8-83be-95237aff6c81.png"><img src="https://user-images.githubusercontent.com/2798381/47086240-ce090a80-d1cd-11e8-83be-95237aff6c81.png" alt="v1" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2798381/47086249-d2352800-d1cd-11e8-8215-32c9c047f499.png"><img src="https://user-images.githubusercontent.com/2798381/47086249-d2352800-d1cd-11e8-8215-32c9c047f499.png" alt="v2" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2798381/47086267-de20ea00-d1cd-11e8-945c-1280f73d67a4.png"><img src="https://user-images.githubusercontent.com/2798381/47086267-de20ea00-d1cd-11e8-945c-1280f73d67a4.png" alt="v3" style="max-width: 100%;"></a></p>
<p dir="auto">The fourth point is not correct - it should be on the opposite side of the sphere:<br>
Voronoi vertex number 0 , coordinates: [ 0.69593711 -0.69851441 0.16658079]<br>
Delaunay vertices<br>
[[ 0.56540011 -0.81629197 -0.11827989]<br>
[ 0.88610999 -0.42383021 0.18755541]<br>
[ 0.51980039 -0.72622668 0.4498915 ]]</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2798381/47086358-17f1f080-d1ce-11e8-862c-1902bb002aca.png"><img src="https://user-images.githubusercontent.com/2798381/47086358-17f1f080-d1ce-11e8-862c-1902bb002aca.png" alt="v0" style="max-width: 100%;"></a></p>
<p dir="auto">I have a good understanding of the algorithm and what the problem is but I don't know how to fix it using qhull.</p> | <p dir="auto">As pointed out by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tylerjereddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tylerjereddy">@tylerjereddy</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="105392224" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/5232" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/5232/hovercard" href="https://github.com/scipy/scipy/pull/5232">#5232</a>, the <code class="notranslate">scipy.spatial.SphericalVoronoi</code> algorithm does not cover cases where all generator points are on a single hemisphere. How would an extension of the algorithm look like to include those cases? Are there theoretical treatises tackling these cases?</p>
<h3 dir="auto">Reproducing code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import scipy.spatial
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import proj3d
from matplotlib import colors
from mpl_toolkits.mplot3d.art3d import Poly3DCollection
# calculate points in single hemisphere
phi = np.linspace(0,2*np.pi,10,endpoint=False) # azimuth angle
theta = np.linspace(0.001,np.pi*0.4,5) # polar angle
theta = theta[np.newaxis, :].T
radius = 1;
phiv, thetav = np.meshgrid(phi, theta)
phiv = np.reshape(phiv,(50,1))
thetav = np.reshape(thetav,(50,1))
x = radius*np.cos(phiv)*np.sin(thetav)
y = radius*np.sin(phiv)*np.sin(thetav)
z = radius*np.cos(thetav)
points = np.concatenate([x,y,z],axis=1)
# Voronoi-Regions
sv = scipy.spatial.SphericalVoronoi(points)
sv.sort_vertices_of_regions()
# plotting
fig = plt.figure()
ax = fig.add_subplot('111', projection='3d')
ax.scatter(points[...,0], points[...,1], points[...,2])
for region in sv.regions:
random_color = colors.rgb2hex(np.random.rand(3))
polygon = Poly3DCollection([sv.vertices[region]], alpha=1.0)
polygon.set_color(random_color)
ax.add_collection3d(polygon)
ax.set_xlim([-1.0,1.0])
ax.set_ylim([-1.0,1.0])
ax.set_zlim([-1.0,1.0])
ax.view_init(45,0)
fig.savefig('hemisphere.png', dpi=300) "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">spatial</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">from</span> <span class="pl-s1">mpl_toolkits</span>.<span class="pl-s1">mplot3d</span> <span class="pl-k">import</span> <span class="pl-s1">proj3d</span>
<span class="pl-k">from</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">import</span> <span class="pl-s1">colors</span>
<span class="pl-k">from</span> <span class="pl-s1">mpl_toolkits</span>.<span class="pl-s1">mplot3d</span>.<span class="pl-s1">art3d</span> <span class="pl-k">import</span> <span class="pl-v">Poly3DCollection</span>
<span class="pl-c"># calculate points in single hemisphere</span>
<span class="pl-s1">phi</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0</span>,<span class="pl-c1">2</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-s1">pi</span>,<span class="pl-c1">10</span>,<span class="pl-s1">endpoint</span><span class="pl-c1">=</span><span class="pl-c1">False</span>) <span class="pl-c"># azimuth angle</span>
<span class="pl-s1">theta</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0.001</span>,<span class="pl-s1">np</span>.<span class="pl-s1">pi</span><span class="pl-c1">*</span><span class="pl-c1">0.4</span>,<span class="pl-c1">5</span>) <span class="pl-c"># polar angle</span>
<span class="pl-s1">theta</span> <span class="pl-c1">=</span> <span class="pl-s1">theta</span>[<span class="pl-s1">np</span>.<span class="pl-s1">newaxis</span>, :].<span class="pl-v">T</span>
<span class="pl-s1">radius</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span>;
<span class="pl-s1">phiv</span>, <span class="pl-s1">thetav</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">meshgrid</span>(<span class="pl-s1">phi</span>, <span class="pl-s1">theta</span>)
<span class="pl-s1">phiv</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">reshape</span>(<span class="pl-s1">phiv</span>,(<span class="pl-c1">50</span>,<span class="pl-c1">1</span>))
<span class="pl-s1">thetav</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">reshape</span>(<span class="pl-s1">thetav</span>,(<span class="pl-c1">50</span>,<span class="pl-c1">1</span>))
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">radius</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-en">cos</span>(<span class="pl-s1">phiv</span>)<span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-en">sin</span>(<span class="pl-s1">thetav</span>)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">radius</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-en">sin</span>(<span class="pl-s1">phiv</span>)<span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-en">sin</span>(<span class="pl-s1">thetav</span>)
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">radius</span><span class="pl-c1">*</span><span class="pl-s1">np</span>.<span class="pl-en">cos</span>(<span class="pl-s1">thetav</span>)
<span class="pl-s1">points</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">concatenate</span>([<span class="pl-s1">x</span>,<span class="pl-s1">y</span>,<span class="pl-s1">z</span>],<span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">1</span>)
<span class="pl-c"># Voronoi-Regions</span>
<span class="pl-s1">sv</span> <span class="pl-c1">=</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">spatial</span>.<span class="pl-v">SphericalVoronoi</span>(<span class="pl-s1">points</span>)
<span class="pl-s1">sv</span>.<span class="pl-en">sort_vertices_of_regions</span>()
<span class="pl-c"># plotting</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">fig</span>.<span class="pl-en">add_subplot</span>(<span class="pl-s">'111'</span>, <span class="pl-s1">projection</span><span class="pl-c1">=</span><span class="pl-s">'3d'</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">scatter</span>(<span class="pl-s1">points</span>[...,<span class="pl-c1">0</span>], <span class="pl-s1">points</span>[...,<span class="pl-c1">1</span>], <span class="pl-s1">points</span>[...,<span class="pl-c1">2</span>])
<span class="pl-k">for</span> <span class="pl-s1">region</span> <span class="pl-c1">in</span> <span class="pl-s1">sv</span>.<span class="pl-s1">regions</span>:
<span class="pl-s1">random_color</span> <span class="pl-c1">=</span> <span class="pl-s1">colors</span>.<span class="pl-en">rgb2hex</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">rand</span>(<span class="pl-c1">3</span>))
<span class="pl-s1">polygon</span> <span class="pl-c1">=</span> <span class="pl-v">Poly3DCollection</span>([<span class="pl-s1">sv</span>.<span class="pl-s1">vertices</span>[<span class="pl-s1">region</span>]], <span class="pl-s1">alpha</span><span class="pl-c1">=</span><span class="pl-c1">1.0</span>)
<span class="pl-s1">polygon</span>.<span class="pl-en">set_color</span>(<span class="pl-s1">random_color</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">add_collection3d</span>(<span class="pl-s1">polygon</span>)
<span class="pl-s1">ax</span>.<span class="pl-en">set_xlim</span>([<span class="pl-c1">-</span><span class="pl-c1">1.0</span>,<span class="pl-c1">1.0</span>])
<span class="pl-s1">ax</span>.<span class="pl-en">set_ylim</span>([<span class="pl-c1">-</span><span class="pl-c1">1.0</span>,<span class="pl-c1">1.0</span>])
<span class="pl-s1">ax</span>.<span class="pl-en">set_zlim</span>([<span class="pl-c1">-</span><span class="pl-c1">1.0</span>,<span class="pl-c1">1.0</span>])
<span class="pl-s1">ax</span>.<span class="pl-en">view_init</span>(<span class="pl-c1">45</span>,<span class="pl-c1">0</span>)
<span class="pl-s1">fig</span>.<span class="pl-en">savefig</span>(<span class="pl-s">'hemisphere.png'</span>, <span class="pl-s1">dpi</span><span class="pl-c1">=</span><span class="pl-c1">300</span>) </pre></div>
<p dir="auto">resulting plot<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7665585/40424201-2e9128a8-5e95-11e8-8ed6-fc13e58c6ded.png"><img src="https://user-images.githubusercontent.com/7665585/40424201-2e9128a8-5e95-11e8-8ed6-fc13e58c6ded.png" alt="hemisphere" style="max-width: 100%;"></a></p>
<h3 dir="auto">Scipy/Numpy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.1.0 1.14.3 sys.version_info(major=3, minor=5, micro=2, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">1.1.0 1.14.3 sys.version_info(major=3, minor=5, micro=2, releaselevel='final', serial=0)
</code></pre></div> | 1 |
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<h1 dir="auto">Your code here</h1>
<p dir="auto">import sqlite3<br>
import pandas as pd<br>
cnx = sqlite3.connect('database.sqlite')<br>
df = pd.read_sql_query("SELECT * FROM Player_Attributes", cnx)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#### Problem description
AttributeError: module 'pandas' has no attribute 'read'
**Note**: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!
**Note**: Many problems can be resolved by simply upgrading `pandas` to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if `master` addresses this issue, but that is not necessary.
For documentation-related issues, you can check the latest versions of the docs on `master` here:
https://pandas-docs.github.io/pandas-docs-travis/
If the issue has not been resolved there, go ahead and file it in the issue tracker.
#### Expected Output
#### Output of ``pd.show_versions()``
<details>
[paste the output of ``pd.show_versions()`` here below this line]
</details>"><pre class="notranslate"><code class="notranslate">#### Problem description
AttributeError: module 'pandas' has no attribute 'read'
**Note**: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!
**Note**: Many problems can be resolved by simply upgrading `pandas` to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if `master` addresses this issue, but that is not necessary.
For documentation-related issues, you can check the latest versions of the docs on `master` here:
https://pandas-docs.github.io/pandas-docs-travis/
If the issue has not been resolved there, go ahead and file it in the issue tracker.
#### Expected Output
#### Output of ``pd.show_versions()``
<details>
[paste the output of ``pd.show_versions()`` here below this line]
</details>
</code></pre></div> | <p dir="auto">Struggled with this for a while to work out why I was getting <code class="notranslate">TypeError: incompatible index of inserted column with frame index</code> when doing df['new_col'] = my_series.</p>
<p dir="auto">Turns out the the series had duplicates in its index. This occured because I was importing a CSV and then setting the index. Perhaps we need a warning when setting an index with duplicate values?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [2]: df = pd.DataFrame({'foo':['a', 'b', 'c'], 'bar':[1,2,3], 'baz':['d','e','f']}).set_index('foo')
In [3]: df
Out[3]:
bar baz
foo
a 1 d
b 2 e
c 3 f
[3 rows x 2 columns]
In [5]: ser = pd.DataFrame({'foo':['a', 'b', 'c', 'a'], 'fiz':['g','h','i','j']}).set_index('foo')
In [6]: ser
Out[6]:
fiz
foo
a g
b h
c i
a j
[4 rows x 1 columns]
In [8]: df['newcol'] = ser
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-8-a8d535085de2> in <module>()
----> 1 df['newcol'] = ser
C:\WinPython-64bit-2.7.5.2\python-2.7.5.amd64\lib\site-packages\pandas-0.13.1-py2.7-win-amd64.egg\pandas\core\frame.pyc in __setitem__(self, key, value)
1885 else:
1886 # set column
-> 1887 self._set_item(key, value)
1888
1889 def _setitem_slice(self, key, value):
C:\WinPython-64bit-2.7.5.2\python-2.7.5.amd64\lib\site-packages\pandas-0.13.1-py2.7-win-amd64.egg\pandas\core\frame.pyc in _set_item(self, key, value)
1965 is_existing = key in self.columns
1966 self._ensure_valid_index(value)
-> 1967 value = self._sanitize_column(key, value)
1968 NDFrame._set_item(self, key, value)
1969
C:\WinPython-64bit-2.7.5.2\python-2.7.5.amd64\lib\site-packages\pandas-0.13.1-py2.7-win-amd64.egg\pandas\core\frame.pyc in _sanitize_column(self, key, value)
2008 value = value.reindex(self.index).values
2009 except:
-> 2010 raise TypeError('incompatible index of inserted column '
2011 'with frame index')
2012
TypeError: incompatible index of inserted column with frame index"><pre class="notranslate"><code class="notranslate">In [2]: df = pd.DataFrame({'foo':['a', 'b', 'c'], 'bar':[1,2,3], 'baz':['d','e','f']}).set_index('foo')
In [3]: df
Out[3]:
bar baz
foo
a 1 d
b 2 e
c 3 f
[3 rows x 2 columns]
In [5]: ser = pd.DataFrame({'foo':['a', 'b', 'c', 'a'], 'fiz':['g','h','i','j']}).set_index('foo')
In [6]: ser
Out[6]:
fiz
foo
a g
b h
c i
a j
[4 rows x 1 columns]
In [8]: df['newcol'] = ser
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-8-a8d535085de2> in <module>()
----> 1 df['newcol'] = ser
C:\WinPython-64bit-2.7.5.2\python-2.7.5.amd64\lib\site-packages\pandas-0.13.1-py2.7-win-amd64.egg\pandas\core\frame.pyc in __setitem__(self, key, value)
1885 else:
1886 # set column
-> 1887 self._set_item(key, value)
1888
1889 def _setitem_slice(self, key, value):
C:\WinPython-64bit-2.7.5.2\python-2.7.5.amd64\lib\site-packages\pandas-0.13.1-py2.7-win-amd64.egg\pandas\core\frame.pyc in _set_item(self, key, value)
1965 is_existing = key in self.columns
1966 self._ensure_valid_index(value)
-> 1967 value = self._sanitize_column(key, value)
1968 NDFrame._set_item(self, key, value)
1969
C:\WinPython-64bit-2.7.5.2\python-2.7.5.amd64\lib\site-packages\pandas-0.13.1-py2.7-win-amd64.egg\pandas\core\frame.pyc in _sanitize_column(self, key, value)
2008 value = value.reindex(self.index).values
2009 except:
-> 2010 raise TypeError('incompatible index of inserted column '
2011 'with frame index')
2012
TypeError: incompatible index of inserted column with frame index
</code></pre></div> | 0 |
<p dir="auto"><strong>Steps to reproduce and a minimal demo of the problem</strong></p>
<p dir="auto"><a href="http://plnkr.co/edit/IAMpyeJl9rQlAcEFPoRs?p=preview" rel="nofollow">http://plnkr.co/edit/IAMpyeJl9rQlAcEFPoRs?p=preview</a></p>
<p dir="auto"><em>What steps should we try in your demo to see the problem?</em></p>
<ol dir="auto">
<li>put some input longer than 2 characters in the first input</li>
<li>try to put some input longer than 2 characters in the second input</li>
</ol>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">HTML5 specifies a number of validation attributes for form elements that browsers are able to interpret to various effects. These are useful for things like restricting input length (maxLength) and for doing DOM queries (e.g. find all required input elements).</p>
<p dir="auto">Currently, Angular2 applies validation for a number of these attributes if they are applied in the form template. However, when forms are built using FormBuilder, validation is defined in the ControlMeta object and not as attributes on the form elements. ngControl does not apply these validations as attributes to the host element, so when FormBuilder is used, either these attributes will not get defined and therefore the browser's HTML5 validation behavior will not be in effect or validation constraints must be duplicated in the form templates and ControlMeta.</p>
<p dir="auto"><strong>Expected/desired behavior</strong></p>
<p dir="auto">I think it would be useful to have the ngControl directive manage HTML5 validation attributes on the host form element based on the validators applied to the Control object.</p>
<p dir="auto"><strong>Other information</strong></p> | <p dir="auto"><code class="notranslate">npm install</code> is failing on a change done on May 1st is causing all fresh/clean checkouts to fail</p>
<p dir="auto">Reproduced by</p>
<p dir="auto">First Bad (you can also use master(as of <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/angular/angular/commit/9f784dcc5a524000836c5e4cd7b3384e21963637/hovercard" href="https://github.com/angular/angular/commit/9f784dcc5a524000836c5e4cd7b3384e21963637"><tt>9f784dc</tt></a>)) check in that appeared in history (note you will never see this error if you already have build from a previous version)</p>
<pre class="notranslate">rm -rf node_modules;
git checkout a66cdb469f56f8ebab2e5f2e44d59b53effd0489;
npm install</pre>
<p dir="auto">it stops with the message </p><pre class="notranslate">< [email protected] preinstall angular<br>
< node tools/npm/check-node-modules<p dir="auto"></p>
<p dir="auto">:-( npm dependencies are stale or in an in unknown state!<br>
</p></pre><p dir="auto"></p>
<p dir="auto">Last Good npm install</p>
<pre class="notranslate">rm -rf node_modules
git checkout 4fe0f1fa655717fd49045dedaebc8b1100f11238
npm install</pre>
<p dir="auto">produces at the same lines</p>
<pre class="notranslate">< [email protected] preinstall angular
< node tools/analytics/build-analytics start install npm3-install && node tools/analytics/build-analytics start install npm-preinstall && node tools/npm/check-node-modules && node tools/analytics/build-analytics success install npm-preinstall && node tools/analytics/build-analytics start install npm-install-net
:-( npm dependencies are stale or in an in unknown state!
</pre>
<p dir="auto">(so tools/analytics/build-analytics is never fired) which makes sense as someone was working with repackaging and must of buggered it up</p>
<p dir="auto"><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/angular/angular/commit/a66cdb469f56f8ebab2e5f2e44d59b53effd0489/hovercard" href="https://github.com/angular/angular/commit/a66cdb469f56f8ebab2e5f2e44d59b53effd0489"><tt>a66cdb4</tt></a>: "repackaging: all the repackaging changes squashed"</p> | 0 |
<p dir="auto">Julia has a few setting that can controlled through environmental variables. Most of these settings are undocumented in the manual. From a cursory scan of Julia base these seem to be the available environmental variables settings for Julia:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="JULIA_HISTORY
JULIA_CPU_CORES
JULIA_LOAD_PATH
JULIA_WORKER_TIMEOUT
JULIA_EDITOR
JULIA_SHELL
JULIA_DEBUG_LOADING
JULIA_INPUT_COLOR
JULIA_ANSWER_COLOR
JULIA_ERROR_COLOR
JULIA_WARN_COLOR
JULIA_INFO_COLOR
JULIA_STACKFRAME_LINEINFO_COLOR
JULIA_STACKFRAME_FUNCTION_COLOR"><pre class="notranslate"><code class="notranslate">JULIA_HISTORY
JULIA_CPU_CORES
JULIA_LOAD_PATH
JULIA_WORKER_TIMEOUT
JULIA_EDITOR
JULIA_SHELL
JULIA_DEBUG_LOADING
JULIA_INPUT_COLOR
JULIA_ANSWER_COLOR
JULIA_ERROR_COLOR
JULIA_WARN_COLOR
JULIA_INFO_COLOR
JULIA_STACKFRAME_LINEINFO_COLOR
JULIA_STACKFRAME_FUNCTION_COLOR
</code></pre></div> | <p dir="auto">It would be useful to have a doc section on envvars, seeing as we're starting to get more of them (that are quite useful as well!) Things like <code class="notranslate">JULIA_PKGDIR</code>, <code class="notranslate">JULIA_LOAD_PATH</code> (once <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="25794335" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/5425" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/5425/hovercard" href="https://github.com/JuliaLang/julia/pull/5425">#5425</a> is merged), <code class="notranslate">JULIA_HOME</code>, <code class="notranslate">JULIA_CPU_CORES</code>, <code class="notranslate">JULIA_EDITOR</code>, etc...</p> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Automatically signing iOS for device deployment using specified development team in Xcode project: Q48Y4UFKL8
Running pod install...
Starting Xcode build...
Xcode build done.
Installing and launching...
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/usr/local/Cellar/python@2/2.7.15_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py", line 52, in <module>
import weakref
File "/usr/local/Cellar/python@2/2.7.15_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py", line 14, in <module>
from _weakref import (
ImportError: cannot import name _remove_dead_weakref
5.4.0 - [Firebase/Analytics][I-ACS023007] Firebase Analytics v.50001000 started
5.4.0 - [Firebase/Analytics][I-ACS023008] To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see http://goo.gl/RfcP7r)
Error connecting to the service protocol: HttpException: Connection closed before full header was received, uri = http://127.0.0.1:8100/ws"><pre lang="Launching" class="notranslate"><code class="notranslate">Automatically signing iOS for device deployment using specified development team in Xcode project: Q48Y4UFKL8
Running pod install...
Starting Xcode build...
Xcode build done.
Installing and launching...
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/usr/local/Cellar/python@2/2.7.15_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy.py", line 52, in <module>
import weakref
File "/usr/local/Cellar/python@2/2.7.15_1/Frameworks/Python.framework/Versions/2.7/lib/python2.7/weakref.py", line 14, in <module>
from _weakref import (
ImportError: cannot import name _remove_dead_weakref
5.4.0 - [Firebase/Analytics][I-ACS023007] Firebase Analytics v.50001000 started
5.4.0 - [Firebase/Analytics][I-ACS023008] To enable debug logging set the following application argument: -FIRAnalyticsDebugEnabled (see http://goo.gl/RfcP7r)
Error connecting to the service protocol: HttpException: Connection closed before full header was received, uri = http://127.0.0.1:8100/ws
</code></pre></div> | <p dir="auto">My app crashes on android right after it launches on the emulator.</p>
<h2 dir="auto">Code</h2>
<h3 dir="auto">build.grade</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:4.0.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}"><pre class="notranslate"><code class="notranslate">buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.google.gms:google-services:4.0.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "26.1.0"
}
}
}
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
</code></pre></div>
<h3 dir="auto">App-Level build.grade</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 27
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.bk1031.vcdeca"
minSdkVersion 16
targetSdkVersion 27
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true"><pre class="notranslate"><code class="notranslate">def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 27
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.bk1031.vcdeca"
minSdkVersion 16
targetSdkVersion 27
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
</code></pre></div>
<h2 dir="auto">Logs</h2>
<h3 dir="auto">flutter run --verbose</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +34 ms] executing: [/Users/bharat/Documents/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +35 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/bharat/Documents/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] executing: [/Users/bharat/Documents/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/bharat/Documents/flutter/] git log -n 1 --pretty=format:%H
[ +8 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f37c235c32fc15babe6dc7b7bc2ee4387e5ecf92
[ ] executing: [/Users/bharat/Documents/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 4 weeks ago
[ ] executing: [/Users/bharat/Documents/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +14 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.9.4-0-gf37c235c3
[ +284 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb devices -l
[ +9 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
emulator-5554 device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:2
[ +11 ms] executing: idevice_id -h
[ +45 ms] /usr/bin/xcrun simctl list --json devices
[ +366 ms] Found plugin device_info at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/device_info-0.2.1/
[ +3 ms] Found plugin firebase_auth at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ +2 ms] Found plugin firebase_core at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5+1/
[ +2 ms] Found plugin firebase_database at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_database-1.0.4/
[ +2 ms] Found plugin firebase_messaging at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-2.0.2/
[ +15 ms] Found plugin flutter_web_browser at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_web_browser-0.9.0+1/
[ +2 ms] Found plugin flutter_webview_plugin at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_webview_plugin-0.2.1+2/
[ +49 ms] Found plugin url_launcher at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-4.0.1/
[ +40 ms] Found plugin device_info at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/device_info-0.2.1/
[ +1 ms] Found plugin firebase_auth at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ +1 ms] Found plugin firebase_core at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5+1/
[ +1 ms] Found plugin firebase_database at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_database-1.0.4/
[ +1 ms] Found plugin firebase_messaging at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-2.0.2/
[ +7 ms] Found plugin flutter_web_browser at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_web_browser-0.9.0+1/
[ +3 ms] Found plugin flutter_webview_plugin at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_webview_plugin-0.2.1+2/
[ +37 ms] Found plugin url_launcher at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-4.0.1/
[ +49 ms] /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell getprop
[ +41 ms] ro.hardware = ranchu
[ +17 ms] Using hardware rendering with device Android SDK built for x86. If you get graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
[ +794 ms] Launching lib/main.dart on Android SDK built for x86 in debug mode...
[ +29 ms] Initializing gradle...
[ +9 ms] Using gradle from /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew.
[ +522 ms] executing: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +58 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.2
[ +94 ms] executing: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew -v
[ +860 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-b06)
OS: Mac OS X 10.14.1 x86_64
[ ] Initializing gradle... (completed)
[ ] Resolving dependencies...
[ ] executing: [/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/] /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew app:properties
[+1253 ms] Could not find google-services.json while looking in [src/nullnull/debug, src/debug/nullnull, src/nullnull, src/debug, src/nullnullDebug]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/dynamicProfile, src/dynamicProfile/nullnull, src/nullnull, src/dynamicProfile, src/nullnullDynamicProfile]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/release, src/release/nullnull, src/nullnull, src/release, src/nullnullRelease]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/profile, src/profile/nullnull, src/nullnull, src/profile, src/nullnullProfile]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/dynamicRelease, src/dynamicRelease/nullnull, src/nullnull, src/dynamicRelease, src/nullnullDynamicRelease]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
------------------------------------------------------------
Project :app
------------------------------------------------------------
allprojects: [project ':app']
android: com.android.build.gradle.AppExtension_Decorated@5d5dbd3d
androidDependencies: task ':app:androidDependencies'
ant: org.gradle.api.internal.project.DefaultAntBuilder@4142d5ad
antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@250d94cc
archivesBaseName: app
artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@10d75dbf
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'
assembleDynamicProfile: task ':app:assembleDynamicProfile'
assembleDynamicProfileUnitTest: task ':app:assembleDynamicProfileUnitTest'
assembleDynamicRelease: task ':app:assembleDynamicRelease'
assembleDynamicReleaseUnitTest: task ':app:assembleDynamicReleaseUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@2053becd
buildDependents: task ':app:buildDependents'
buildDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app
buildFile: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/app/build.gradle
buildNeeded: task ':app:buildNeeded'
buildOutputs: BaseVariantOutput container
buildPath: :
buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@77ebe8d7
buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@3e09b912
bundleAppClassesDebug: task ':app:bundleAppClassesDebug'
bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest'
bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest'
bundleAppClassesDynamicProfile: task ':app:bundleAppClassesDynamicProfile'
bundleAppClassesDynamicProfileUnitTest: task ':app:bundleAppClassesDynamicProfileUnitTest'
bundleAppClassesDynamicRelease: task ':app:bundleAppClassesDynamicRelease'
bundleAppClassesDynamicReleaseUnitTest: task ':app:bundleAppClassesDynamicReleaseUnitTest'
bundleAppClassesProfile: task ':app:bundleAppClassesProfile'
bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest'
bundleAppClassesRelease: task ':app:bundleAppClassesRelease'
bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest'
bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources'
bundleDebugResources: task ':app:bundleDebugResources'
bundleDynamicProfileResources: task ':app:bundleDynamicProfileResources'
bundleDynamicReleaseResources: task ':app:bundleDynamicReleaseResources'
bundleProfileResources: task ':app:bundleProfileResources'
bundleReleaseResources: task ':app:bundleReleaseResources'
check: task ':app:check'
checkDebugManifest: task ':app:checkDebugManifest'
checkDynamicProfileManifest: task ':app:checkDynamicProfileManifest'
checkDynamicReleaseManifest: task ':app:checkDynamicReleaseManifest'
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@149921c9
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'
compileDynamicProfileAidl: task ':app:compileDynamicProfileAidl'
compileDynamicProfileJavaWithJavac: task ':app:compileDynamicProfileJavaWithJavac'
compileDynamicProfileNdk: task ':app:compileDynamicProfileNdk'
compileDynamicProfileRenderscript: task ':app:compileDynamicProfileRenderscript'
compileDynamicProfileShaders: task ':app:compileDynamicProfileShaders'
compileDynamicProfileSources: task ':app:compileDynamicProfileSources'
compileDynamicProfileUnitTestJavaWithJavac: task ':app:compileDynamicProfileUnitTestJavaWithJavac'
compileDynamicProfileUnitTestSources: task ':app:compileDynamicProfileUnitTestSources'
compileDynamicReleaseAidl: task ':app:compileDynamicReleaseAidl'
compileDynamicReleaseJavaWithJavac: task ':app:compileDynamicReleaseJavaWithJavac'
compileDynamicReleaseNdk: task ':app:compileDynamicReleaseNdk'
compileDynamicReleaseRenderscript: task ':app:compileDynamicReleaseRenderscript'
compileDynamicReleaseShaders: task ':app:compileDynamicReleaseShaders'
compileDynamicReleaseSources: task ':app:compileDynamicReleaseSources'
compileDynamicReleaseUnitTestJavaWithJavac: task ':app:compileDynamicReleaseUnitTestJavaWithJavac'
compileDynamicReleaseUnitTestSources: task ':app:compileDynamicReleaseUnitTestSources'
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@29814041
configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@104b8f6
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@72b650ed
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsDynamicProfile: task ':app:copyFlutterAssetsDynamicProfile'
copyFlutterAssetsDynamicRelease: task ':app:copyFlutterAssetsDynamicRelease'
copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests'
createDynamicProfileCompatibleScreenManifests: task ':app:createDynamicProfileCompatibleScreenManifests'
createDynamicReleaseCompatibleScreenManifests: task ':app:createDynamicReleaseCompatibleScreenManifests'
createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests'
defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@2f7ca01b
defaultTasks: []
deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@cdc6efd
dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@283ba498
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/distributions
distsDirName: distributions
docsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/docs
docsDirName: docs
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@68caa84a
extensions: org.gradle.api.internal.plugins.DefaultConvention@72b650ed
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations: org.gradle.api.internal.file.DefaultFileOperations@227cb130
fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@4d389804
flutter: FlutterExtension_Decorated@38d2fa5f
flutterBuildDebug: task ':app:flutterBuildDebug'
flutterBuildDynamicProfile: task ':app:flutterBuildDynamicProfile'
flutterBuildDynamicRelease: task ':app:flutterBuildDynamicRelease'
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'
generateDynamicProfileAssets: task ':app:generateDynamicProfileAssets'
generateDynamicProfileBuildConfig: task ':app:generateDynamicProfileBuildConfig'
generateDynamicProfileResValues: task ':app:generateDynamicProfileResValues'
generateDynamicProfileResources: task ':app:generateDynamicProfileResources'
generateDynamicProfileSources: task ':app:generateDynamicProfileSources'
generateDynamicReleaseAssets: task ':app:generateDynamicReleaseAssets'
generateDynamicReleaseBuildConfig: task ':app:generateDynamicReleaseBuildConfig'
generateDynamicReleaseResValues: task ':app:generateDynamicReleaseResValues'
generateDynamicReleaseResources: task ':app:generateDynamicReleaseResources'
generateDynamicReleaseSources: task ':app:generateDynamicReleaseSources'
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'
googleServices: com.google.gms.googleservices.GoogleServicesPlugin$GoogleServicesPluginConfig_Decorated@5e78df7
gradle: build 'android'
group: android
identityPath: :app
inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@42d5594a
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installDynamicProfile: task ':app:installDynamicProfile'
installDynamicRelease: task ':app:installDynamicRelease'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest'
javaPreCompileDynamicProfile: task ':app:javaPreCompileDynamicProfile'
javaPreCompileDynamicProfileUnitTest: task ':app:javaPreCompileDynamicProfileUnitTest'
javaPreCompileDynamicRelease: task ':app:javaPreCompileDynamicRelease'
javaPreCompileDynamicReleaseUnitTest: task ':app:javaPreCompileDynamicReleaseUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest'
layout: org.gradle.api.internal.file.DefaultProjectLayout@4b2411ac
libsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintDynamicProfile: task ':app:lintDynamicProfile'
lintDynamicRelease: task ':app:lintDynamicRelease'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@702f85a
logging: org.gradle.internal.logging.services.DefaultLoggingManager@648b1a95
mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug'
mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest'
mainApkListPersistenceDynamicProfile: task ':app:mainApkListPersistenceDynamicProfile'
mainApkListPersistenceDynamicRelease: task ':app:mainApkListPersistenceDynamicRelease'
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'
mergeDynamicProfileAssets: task ':app:mergeDynamicProfileAssets'
mergeDynamicProfileJniLibFolders: task ':app:mergeDynamicProfileJniLibFolders'
mergeDynamicProfileResources: task ':app:mergeDynamicProfileResources'
mergeDynamicProfileShaders: task ':app:mergeDynamicProfileShaders'
mergeDynamicReleaseAssets: task ':app:mergeDynamicReleaseAssets'
mergeDynamicReleaseJniLibFolders: task ':app:mergeDynamicReleaseJniLibFolders'
mergeDynamicReleaseResources: task ':app:mergeDynamicReleaseResources'
mergeDynamicReleaseShaders: task ':app:mergeDynamicReleaseShaders'
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@5dbabbc6
modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@3f36c0a6
module: org.gradle.api.internal.artifacts.ProjectBackedModule@41ed7c27
name: app
normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@354da632
objects: org.gradle.api.internal.model.DefaultObjectFactory@5e8f6846
org.gradle.jvmargs: -Xmx1536M
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageDynamicProfile: task ':app:packageDynamicProfile'
packageDynamicRelease: task ':app:packageDynamicRelease'
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@626c9eb0
plugins: [org.gradle.api.plugins.HelpTasksPlugin@2a7028bb, com.android.build.gradle.api.AndroidBasePlugin@51b001fe, org.gradle.language.base.plugins.LifecycleBasePlugin@4900bf69, org.gradle.api.plugins.BasePlugin@6178598f, org.gradle.api.plugins.ReportingBasePlugin@ee6c392, org.gradle.platform.base.plugins.ComponentBasePlugin@659bf7a7, org.gradle.language.base.plugins.LanguageBasePlugin@5dd952d5, org.gradle.platform.base.plugins.BinaryBasePlugin@43222bb9, org.gradle.api.plugins.JavaBasePlugin@78ac61e7, com.android.build.gradle.AppPlugin@6e98908b, FlutterPlugin@5c7a8ca6, com.google.gms.googleservices.GoogleServicesPlugin@6c973864]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preDynamicProfileBuild: task ':app:preDynamicProfileBuild'
preDynamicProfileUnitTestBuild: task ':app:preDynamicProfileUnitTestBuild'
preDynamicReleaseBuild: task ':app:preDynamicReleaseBuild'
preDynamicReleaseUnitTestBuild: task ':app:preDynamicReleaseUnitTestBuild'
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_DEXDynamicProfileForPublishing: task ':app:preparePUBLISHED_DEXDynamicProfileForPublishing'
preparePUBLISHED_DEXDynamicReleaseForPublishing: task ':app:preparePUBLISHED_DEXDynamicReleaseForPublishing'
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_RESDynamicProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicProfileForPublishing'
preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing'
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_LIBSDynamicProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing'
preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing'
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'
processDebugGoogleServices: task ':app:processDebugGoogleServices'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task ':app:processDebugUnitTestJavaRes'
processDynamicProfileGoogleServices: task ':app:processDynamicProfileGoogleServices'
processDynamicProfileJavaRes: task ':app:processDynamicProfileJavaRes'
processDynamicProfileManifest: task ':app:processDynamicProfileManifest'
processDynamicProfileResources: task ':app:processDynamicProfileResources'
processDynamicProfileUnitTestJavaRes: task ':app:processDynamicProfileUnitTestJavaRes'
processDynamicReleaseGoogleServices: task ':app:processDynamicReleaseGoogleServices'
processDynamicReleaseJavaRes: task ':app:processDynamicReleaseJavaRes'
processDynamicReleaseManifest: task ':app:processDynamicReleaseManifest'
processDynamicReleaseResources: task ':app:processDynamicReleaseResources'
processDynamicReleaseUnitTestJavaRes: task ':app:processDynamicReleaseUnitTestJavaRes'
processOperations: org.gradle.api.internal.file.DefaultFileOperations@227cb130
processProfileGoogleServices: task ':app:processProfileGoogleServices'
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task ':app:processProfileUnitTestJavaRes'
processReleaseGoogleServices: task ':app:processReleaseGoogleServices'
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@6a807db0
projectDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/app
projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@32242ae4
projectPath: :app
projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@174cb9be
properties: {...}
providers: org.gradle.api.internal.provider.DefaultProviderFactory@150fad36
reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug'
reportBuildArtifactsDynamicProfile: task ':app:reportBuildArtifactsDynamicProfile'
reportBuildArtifactsDynamicRelease: task ':app:reportBuildArtifactsDynamicRelease'
reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile'
reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease'
reporting: org.gradle.api.reporting.ReportingExtension_Decorated@11d32cf9
reportsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@7857ae8e
resources: org.gradle.api.internal.resources.DefaultResourceHandler@6b37d86a
rootDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android
rootProject: root project 'android'
script: false
scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@19441dfb
scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@11f85ece
serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@541eb1a1
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskDynamicProfile: task ':app:splitsDiscoveryTaskDynamicProfile'
splitsDiscoveryTaskDynamicRelease: task ':app:splitsDiscoveryTaskDynamicRelease'
splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease'
standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@648b1a95
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testDynamicProfileUnitTest: task ':app:testDynamicProfileUnitTest'
testDynamicReleaseUnitTest: task ':app:testDynamicReleaseUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/reports/tests
testReportDirName: tests
testResultsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForDynamicProfile: task ':app:transformClassesWithDexBuilderForDynamicProfile'
transformClassesWithDexBuilderForDynamicRelease: task ':app:transformClassesWithDexBuilderForDynamicRelease'
transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile'
transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease'
transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForDynamicProfile: task ':app:transformDexArchiveWithDexMergerForDynamicProfile'
transformDexArchiveWithDexMergerForDynamicRelease: task ':app:transformDexArchiveWithDexMergerForDynamicRelease'
transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease'
transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'
transformDexArchiveWithExternalLibsDexMergerForDynamicProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicProfile'
transformDexArchiveWithExternalLibsDexMergerForDynamicRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicRelease'
transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile'
transformDexArchiveWithExternalLibsDexMergerForRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease'
transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest'
transformNativeLibsWithMergeJniLibsForDynamicProfile: task ':app:transformNativeLibsWithMergeJniLibsForDynamicProfile'
transformNativeLibsWithMergeJniLibsForDynamicRelease: task ':app:transformNativeLibsWithMergeJniLibsForDynamicRelease'
transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease'
transformNativeLibsWithStripDebugSymbolForDebug: task ':app:transformNativeLibsWithStripDebugSymbolForDebug'
transformNativeLibsWithStripDebugSymbolForDynamicProfile: task ':app:transformNativeLibsWithStripDebugSymbolForDynamicProfile'
transformNativeLibsWithStripDebugSymbolForDynamicRelease: task ':app:transformNativeLibsWithStripDebugSymbolForDynamicRelease'
transformNativeLibsWithStripDebugSymbolForProfile: task ':app:transformNativeLibsWithStripDebugSymbolForProfile'
transformNativeLibsWithStripDebugSymbolForRelease: task ':app:transformNativeLibsWithStripDebugSymbolForRelease'
transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForDynamicProfile: task ':app:transformResourcesWithMergeJavaResForDynamicProfile'
transformResourcesWithMergeJavaResForDynamicProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicProfileUnitTest'
transformResourcesWithMergeJavaResForDynamicRelease: task ':app:transformResourcesWithMergeJavaResForDynamicRelease'
transformResourcesWithMergeJavaResForDynamicReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicReleaseUnitTest'
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'
uninstallDynamicProfile: task ':app:uninstallDynamicProfile'
uninstallDynamicRelease: task ':app:uninstallDynamicRelease'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest'
validateSigningDynamicProfile: task ':app:validateSigningDynamicProfile'
validateSigningDynamicRelease: task ':app:validateSigningDynamicRelease'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeDynamicProfileApplicationId: task ':app:writeDynamicProfileApplicationId'
writeDynamicReleaseApplicationId: task ':app:writeDynamicReleaseApplicationId'
writeProfileApplicationId: task ':app:writeProfileApplicationId'
writeReleaseApplicationId: task ':app:writeReleaseApplicationId'
1 actionable task: 1 executed
[ +11 ms] Resolving dependencies... (completed)
[ +2 ms] executing: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +12 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ ] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
A: package="com.bk1031.vcdeca" (Raw: "com.bk1031.vcdeca")
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b
E: uses-permission (line=16)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: uses-permission (line=17)
A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
E: uses-permission (line=18)
A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
E: uses-permission (line=19)
A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
E: uses-permission (line=20)
A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
E: application (line=28)
A: android:label(0x01010001)="vc_deca" (Raw: "vc_deca")
A: android:icon(0x01010002)=@0x7f090000
A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
E: activity (line=33)
A: android:theme(0x01010000)=@0x7f0b0000
A: android:name(0x01010003)="com.example.vcdeca.MainActivity" (Raw: "com.example.vcdeca.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=47)
A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: intent-filter (line=51)
E: action (line=52)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=54)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: service (line=58)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService")
E: intent-filter (line=59)
E: action (line=60)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: service (line=63)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
E: intent-filter (line=64)
E: action (line=65)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=69)
A: android:theme(0x01010000)=@0x1030007
A: android:name(0x01010003)="io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=77)
A: android:name(0x01010003)="com.google.firebase.messaging.FirebaseMessagingService" (Raw: "com.google.firebase.messaging.FirebaseMessagingService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=80)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=81)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=85)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.firebase.auth.internal.FederatedSignInActivity" (Raw: "com.google.firebase.auth.internal.FederatedSignInActivity")
A: android:permission(0x01010006)="com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN" (Raw: "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
A: android:launchMode(0x0101001d)=(type 0x10)0x3
E: service (line=93)
A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=96)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=99)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=102)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=107)
A: android:name(0x01010003)="android.support.VERSION" (Raw: "android.support.VERSION")
A: android:value(0x01010024)="26.1.0" (Raw: "26.1.0")
E: receiver (line=111)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=116)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=121)
E: action (line=122)
A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
E: service (line=126)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=130)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=136)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=140)
E: action (line=141)
A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
E: service (line=148)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdService" (Raw: "com.google.firebase.iid.FirebaseInstanceIdService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=151)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=152)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: provider (line=156)
A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.bk1031.vcdeca.firebaseinitprovider" (Raw: "com.bk1031.vcdeca.firebaseinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
E: activity (line=162)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=167)
A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
A: android:value(0x01010024)=@0x7f070001
E: meta-data (line=170)
A: android:name(0x01010003)="android.arch.lifecycle.VERSION" (Raw: "android.arch.lifecycle.VERSION")
A: android:value(0x01010024)="27.0.0-SNAPSHOT" (Raw: "27.0.0-SNAPSHOT")
[ +17 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ +30 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ ] --------- beginning of main
10-25 17:36:34.175 I/DeviceStateChecker( 2424): DeviceStateChecker cancelled
[ +3 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time
[ +530 ms] DependencyChecker: nothing is modified after 2018-10-25 17:28:19.553.
[ +2 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb version
[ +15 ms] Android Debug Bridge version 1.0.40
Version 4986621
Installed as /Users/bharat/Library/Android/sdk/platform-tools/adb
[ +2 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb start-server
[ +39 ms] Building APK
[ +33 ms] Gradle task 'assembleDebug'...
[ +3 ms] executing: [/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/] /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew -Pverbose=true -Ptarget=/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/lib/main.dart -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+1234 ms] Could not find google-services.json while looking in [src/nullnull/debug, src/debug/nullnull, src/nullnull, src/debug, src/nullnullDebug]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/dynamicProfile, src/dynamicProfile/nullnull, src/nullnull, src/dynamicProfile, src/nullnullDynamicProfile]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/release, src/release/nullnull, src/nullnull, src/release, src/nullnullRelease]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/profile, src/profile/nullnull, src/nullnull, src/profile, src/nullnullProfile]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/dynamicRelease, src/dynamicRelease/nullnull, src/nullnull, src/dynamicRelease, src/nullnullDynamicRelease]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ +823 ms] Parsing json file: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/app/google-services.json
[ +494 ms] 240 actionable tasks: 4 executed, 236 up-to-date
[ +405 ms] Gradle task 'assembleDebug'... (completed)
[ +123 ms] calculateSha: LocalDirectory: '/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk'/app.apk
[ +563 ms] Built build/app/outputs/apk/debug/app-debug.apk.
[ +1 ms] executing: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +13 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ ] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
A: package="com.bk1031.vcdeca" (Raw: "com.bk1031.vcdeca")
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b
E: uses-permission (line=16)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: uses-permission (line=17)
A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
E: uses-permission (line=18)
A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
E: uses-permission (line=19)
A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
E: uses-permission (line=20)
A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
E: application (line=28)
A: android:label(0x01010001)="vc_deca" (Raw: "vc_deca")
A: android:icon(0x01010002)=@0x7f090000
A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
E: activity (line=33)
A: android:theme(0x01010000)=@0x7f0b0000
A: android:name(0x01010003)="com.example.vcdeca.MainActivity" (Raw: "com.example.vcdeca.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=47)
A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: intent-filter (line=51)
E: action (line=52)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=54)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: service (line=58)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService")
E: intent-filter (line=59)
E: action (line=60)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: service (line=63)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
E: intent-filter (line=64)
E: action (line=65)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=69)
A: android:theme(0x01010000)=@0x1030007
A: android:name(0x01010003)="io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=77)
A: android:name(0x01010003)="com.google.firebase.messaging.FirebaseMessagingService" (Raw: "com.google.firebase.messaging.FirebaseMessagingService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=80)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=81)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=85)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.firebase.auth.internal.FederatedSignInActivity" (Raw: "com.google.firebase.auth.internal.FederatedSignInActivity")
A: android:permission(0x01010006)="com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN" (Raw: "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
A: android:launchMode(0x0101001d)=(type 0x10)0x3
E: service (line=93)
A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=96)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=99)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=102)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=107)
A: android:name(0x01010003)="android.support.VERSION" (Raw: "android.support.VERSION")
A: android:value(0x01010024)="26.1.0" (Raw: "26.1.0")
E: receiver (line=111)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=116)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=121)
E: action (line=122)
A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
E: service (line=126)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=130)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=136)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=140)
E: action (line=141)
A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
E: service (line=148)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdService" (Raw: "com.google.firebase.iid.FirebaseInstanceIdService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=151)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=152)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: provider (line=156)
A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.bk1031.vcdeca.firebaseinitprovider" (Raw: "com.bk1031.vcdeca.firebaseinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
E: activity (line=162)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=167)
A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
A: android:value(0x01010024)=@0x7f070001
E: meta-data (line=170)
A: android:name(0x01010003)="android.arch.lifecycle.VERSION" (Raw: "android.arch.lifecycle.VERSION")
A: android:value(0x01010024)="27.0.0-SNAPSHOT" (Raw: "27.0.0-SNAPSHOT")
[ +4 ms] Stopping app 'app.apk' on Android SDK built for x86.
[ ] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am force-stop com.bk1031.vcdeca
[ +66 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell pm list packages com.bk1031.vcdeca
[ +43 ms] package:com.bk1031.vcdeca
[ +3 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.bk1031.vcdeca.sha1
[ +23 ms] afbdca0981fcc55812ae45be68709614133d72c7
[ +1 ms] Latest build already installed.
[ ] Android SDK built for x86 startApp
[ +1 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 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.bk1031.vcdeca/com.example.vcdeca.MainActivity
[ +62 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.bk1031.vcdeca/com.example.vcdeca.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[+3371 ms] Observatory URL on device: http://127.0.0.1:46199/
[ +1 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:46199
[ +15 ms] 60318
[ +1 ms] Forwarded host port 60318 to device port 46199 for Observatory
[ +9 ms] Connecting to service protocol: http://127.0.0.1:60318/
[ +583 ms] Successfully connected to service protocol: http://127.0.0.1:60318/
[ +3 ms] getVM: {}
[ +13 ms] getIsolate: {isolateId: isolates/107682283}
[ +4 ms] _flutter.listViews: {isolateId: isolates/107682283}
[ +87 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: VC-DECA-flutter}
[ +111 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.bk1031.vcdeca/cache/VC-DECA-flutterOSTPZM/VC-DECA-flutter/)
[ +1 ms] Updating assets
[ +414 ms] Syncing files to device Android SDK built for x86...
[ +2 ms] DevFS: Starting sync from LocalDirectory: '/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter'
[ ] Scanning project files
[ +14 ms] Scanning package files
[ +146 ms] Scanning asset files
[ +4 ms] Scanning for deleted files
[ +13 ms] Compiling dart to kernel with 491 updated files
[ +6 ms] /Users/bharat/Documents/flutter/bin/cache/dart-sdk/bin/dart /Users/bharat/Documents/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/bharat/Documents/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/.packages --filesystem-scheme org-dartlang-root
[ +1 ms] W/m.bk1031.vcdec(20655): Unsupported class loader
[ ] I/DynamiteModule(20655): Considering local module com.google.android.gms.firebase_database:4 and remote module com.google.android.gms.firebase_database:6
[ ] I/DynamiteModule(20655): Selected remote version of com.google.android.gms.firebase_database, version >= 6
[ ] W/DynamiteModule(20655): Dynamite loader version < 2, falling back to loadModule2
[ +8 ms] W/m.bk1031.vcdec(20655): Unsupported class loader
[ +27 ms] W/m.bk1031.vcdec(20655): Skipping duplicate class check due to unsupported classloader
[ +105 ms] I/m.bk1031.vcdec(20655): Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.flags.IFlagProvider$Stub>: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/internal/stable/zzb;
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ +8 ms] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ +3 ms] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ +3 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ +4 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ +1 ms] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.internal.stable.zzb" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.boot.jar", zip file "/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/lib/x86, /data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk!/lib/x86, /system/lib]]
[ +22 ms] I/m.bk1031.vcdec(20655): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:134)
[ +1 ms] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
[ ] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ +1 ms] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ +1 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655):
[ ] I/m.bk1031.vcdec(20655): Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.flags.IFlagProvider$Stub>: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/internal/stable/zzb;
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ +1 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ +4 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.internal.stable.zzb" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.boot.jar", zip file "/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/lib/x86, /data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk!/lib/x86, /system/lib]]
[ ] I/m.bk1031.vcdec(20655): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:134)
[ +1 ms] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
[ ] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ +2 ms] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655):
[ +41 ms] E/AndroidRuntime(20655): FATAL EXCEPTION: TokenRefresher
[ ] E/AndroidRuntime(20655): Process: com.bk1031.vcdeca, PID: 20655
[ ] E/AndroidRuntime(20655): java.lang.NoSuchFieldError: No field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk)
[ ] E/AndroidRuntime(20655): at com.google.android.gms.flags.FlagValueProvider.initialize(Unknown Source:7)
[ ] E/AndroidRuntime(20655): at com.google.android.gms.flags.FlagRegistry.initialize(Unknown Source:4)
[ ] E/AndroidRuntime(20655): at com.google.firebase.auth.internal.zzx.initialize(Unknown Source:3)
[ ] E/AndroidRuntime(20655): at com.google.firebase.auth.internal.zzt.run(Unknown Source:14)
[ ] E/AndroidRuntime(20655): at android.os.Handler.handleCallback(Handler.java:873)
[ ] E/AndroidRuntime(20655): at android.os.Handler.dispatchMessage(Handler.java:99)
[ ] E/AndroidRuntime(20655): at android.os.Looper.loop(Looper.java:193)
[ ] E/AndroidRuntime(20655): at android.os.HandlerThread.run(HandlerThread.java:65)
[ ] I/Process (20655): Sending signal. PID: 20655 SIG: 9
[ +175 ms] Service protocol connection closed.
[ ] Lost connection to device.
[+1749 ms] Updating files
[ +27 ms] DevFS sync failed. Lost connection to device: SocketException: Write failed (OS Error: Protocol wrong type for socket, errno = 41), address = 127.0.0.1, port = 60329
[ ] Syncing files to device Android SDK built for x86... (completed)
[ +11 ms] "flutter run" took 16,149ms.
#0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)
#1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:397:7)
<asynchronous suspension>
#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:372:18)
#3 _asyncThenWrapperHelper.<anonymous closure> (dart:async/runtime/libasync_patch.dart:77:64)
#4 _rootRunUnary (dart:async/zone.dart:1132:38)
#5 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
#6 _FutureListener.handleValue (dart:async/future_impl.dart:129:18)
#7 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45)
#8 Future._propagateToListeners (dart:async/future_impl.dart:671:32)
#9 Future._complete (dart:async/future_impl.dart:476:7)
#10 _SyncCompleter.complete (dart:async/future_impl.dart:51:12)
#11 _AsyncAwaitCompleter.complete (dart:async/runtime/libasync_patch.dart:28:18)
#12 _completeOnAsyncReturn (dart:async/runtime/libasync_patch.dart:295:13)
#13 RunCommand.usageValues (package:flutter_tools/src/commands/run.dart)
#14 _asyncThenWrapperHelper.<anonymous closure> (dart:async/runtime/libasync_patch.dart:77:64)
#15 _rootRunUnary (dart:async/zone.dart:1132:38)
#16 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
#17 _FutureListener.handleValue (dart:async/future_impl.dart:129:18)
#18 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45)
#19 Future._propagateToListeners (dart:async/future_impl.dart:671:32)
#20 Future._complete (dart:async/future_impl.dart:476:7)
#21 _SyncCompleter.complete (dart:async/future_impl.dart:51:12)
#22 _AsyncAwaitCompleter.complete.<anonymous closure> (dart:async/runtime/libasync_patch.dart:33:20)
#23 _rootRun (dart:async/zone.dart:1124:13)
#24 _CustomZone.run (dart:async/zone.dart:1021:19)
#25 _CustomZone.bindCallback.<anonymous closure> (dart:async/zone.dart:947:23)
#26 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
#27 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
#28 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13)
#29 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5)"><pre class="notranslate"><code class="notranslate">[ +34 ms] executing: [/Users/bharat/Documents/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +35 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] executing: [/Users/bharat/Documents/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] executing: [/Users/bharat/Documents/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/bharat/Documents/flutter/] git log -n 1 --pretty=format:%H
[ +8 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] f37c235c32fc15babe6dc7b7bc2ee4387e5ecf92
[ ] executing: [/Users/bharat/Documents/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 4 weeks ago
[ ] executing: [/Users/bharat/Documents/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +14 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.9.4-0-gf37c235c3
[ +284 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb devices -l
[ +9 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
emulator-5554 device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:2
[ +11 ms] executing: idevice_id -h
[ +45 ms] /usr/bin/xcrun simctl list --json devices
[ +366 ms] Found plugin device_info at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/device_info-0.2.1/
[ +3 ms] Found plugin firebase_auth at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ +2 ms] Found plugin firebase_core at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5+1/
[ +2 ms] Found plugin firebase_database at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_database-1.0.4/
[ +2 ms] Found plugin firebase_messaging at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-2.0.2/
[ +15 ms] Found plugin flutter_web_browser at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_web_browser-0.9.0+1/
[ +2 ms] Found plugin flutter_webview_plugin at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_webview_plugin-0.2.1+2/
[ +49 ms] Found plugin url_launcher at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-4.0.1/
[ +40 ms] Found plugin device_info at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/device_info-0.2.1/
[ +1 ms] Found plugin firebase_auth at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ +1 ms] Found plugin firebase_core at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5+1/
[ +1 ms] Found plugin firebase_database at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_database-1.0.4/
[ +1 ms] Found plugin firebase_messaging at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-2.0.2/
[ +7 ms] Found plugin flutter_web_browser at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_web_browser-0.9.0+1/
[ +3 ms] Found plugin flutter_webview_plugin at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_webview_plugin-0.2.1+2/
[ +37 ms] Found plugin url_launcher at /Users/bharat/Documents/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-4.0.1/
[ +49 ms] /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell getprop
[ +41 ms] ro.hardware = ranchu
[ +17 ms] Using hardware rendering with device Android SDK built for x86. If you get graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
[ +794 ms] Launching lib/main.dart on Android SDK built for x86 in debug mode...
[ +29 ms] Initializing gradle...
[ +9 ms] Using gradle from /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew.
[ +522 ms] executing: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +58 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.2
[ +94 ms] executing: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew -v
[ +860 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-b06)
OS: Mac OS X 10.14.1 x86_64
[ ] Initializing gradle... (completed)
[ ] Resolving dependencies...
[ ] executing: [/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/] /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew app:properties
[+1253 ms] Could not find google-services.json while looking in [src/nullnull/debug, src/debug/nullnull, src/nullnull, src/debug, src/nullnullDebug]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/dynamicProfile, src/dynamicProfile/nullnull, src/nullnull, src/dynamicProfile, src/nullnullDynamicProfile]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/release, src/release/nullnull, src/nullnull, src/release, src/nullnullRelease]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/profile, src/profile/nullnull, src/nullnull, src/profile, src/nullnullProfile]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
Could not find google-services.json while looking in [src/nullnull/dynamicRelease, src/dynamicRelease/nullnull, src/nullnull, src/dynamicRelease, src/nullnullDynamicRelease]
registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
------------------------------------------------------------
Project :app
------------------------------------------------------------
allprojects: [project ':app']
android: com.android.build.gradle.AppExtension_Decorated@5d5dbd3d
androidDependencies: task ':app:androidDependencies'
ant: org.gradle.api.internal.project.DefaultAntBuilder@4142d5ad
antBuilderFactory: org.gradle.api.internal.project.DefaultAntBuilderFactory@250d94cc
archivesBaseName: app
artifacts: org.gradle.api.internal.artifacts.dsl.DefaultArtifactHandler_Decorated@10d75dbf
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'
assembleDynamicProfile: task ':app:assembleDynamicProfile'
assembleDynamicProfileUnitTest: task ':app:assembleDynamicProfileUnitTest'
assembleDynamicRelease: task ':app:assembleDynamicRelease'
assembleDynamicReleaseUnitTest: task ':app:assembleDynamicReleaseUnitTest'
assembleProfile: task ':app:assembleProfile'
assembleProfileUnitTest: task ':app:assembleProfileUnitTest'
assembleRelease: task ':app:assembleRelease'
assembleReleaseUnitTest: task ':app:assembleReleaseUnitTest'
baseClassLoaderScope: org.gradle.api.internal.initialization.DefaultClassLoaderScope@2053becd
buildDependents: task ':app:buildDependents'
buildDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app
buildFile: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/app/build.gradle
buildNeeded: task ':app:buildNeeded'
buildOutputs: BaseVariantOutput container
buildPath: :
buildScriptSource: org.gradle.groovy.scripts.TextResourceScriptSource@77ebe8d7
buildscript: org.gradle.api.internal.initialization.DefaultScriptHandler@3e09b912
bundleAppClassesDebug: task ':app:bundleAppClassesDebug'
bundleAppClassesDebugAndroidTest: task ':app:bundleAppClassesDebugAndroidTest'
bundleAppClassesDebugUnitTest: task ':app:bundleAppClassesDebugUnitTest'
bundleAppClassesDynamicProfile: task ':app:bundleAppClassesDynamicProfile'
bundleAppClassesDynamicProfileUnitTest: task ':app:bundleAppClassesDynamicProfileUnitTest'
bundleAppClassesDynamicRelease: task ':app:bundleAppClassesDynamicRelease'
bundleAppClassesDynamicReleaseUnitTest: task ':app:bundleAppClassesDynamicReleaseUnitTest'
bundleAppClassesProfile: task ':app:bundleAppClassesProfile'
bundleAppClassesProfileUnitTest: task ':app:bundleAppClassesProfileUnitTest'
bundleAppClassesRelease: task ':app:bundleAppClassesRelease'
bundleAppClassesReleaseUnitTest: task ':app:bundleAppClassesReleaseUnitTest'
bundleDebugAndroidTestResources: task ':app:bundleDebugAndroidTestResources'
bundleDebugResources: task ':app:bundleDebugResources'
bundleDynamicProfileResources: task ':app:bundleDynamicProfileResources'
bundleDynamicReleaseResources: task ':app:bundleDynamicReleaseResources'
bundleProfileResources: task ':app:bundleProfileResources'
bundleReleaseResources: task ':app:bundleReleaseResources'
check: task ':app:check'
checkDebugManifest: task ':app:checkDebugManifest'
checkDynamicProfileManifest: task ':app:checkDynamicProfileManifest'
checkDynamicReleaseManifest: task ':app:checkDynamicReleaseManifest'
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@149921c9
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'
compileDynamicProfileAidl: task ':app:compileDynamicProfileAidl'
compileDynamicProfileJavaWithJavac: task ':app:compileDynamicProfileJavaWithJavac'
compileDynamicProfileNdk: task ':app:compileDynamicProfileNdk'
compileDynamicProfileRenderscript: task ':app:compileDynamicProfileRenderscript'
compileDynamicProfileShaders: task ':app:compileDynamicProfileShaders'
compileDynamicProfileSources: task ':app:compileDynamicProfileSources'
compileDynamicProfileUnitTestJavaWithJavac: task ':app:compileDynamicProfileUnitTestJavaWithJavac'
compileDynamicProfileUnitTestSources: task ':app:compileDynamicProfileUnitTestSources'
compileDynamicReleaseAidl: task ':app:compileDynamicReleaseAidl'
compileDynamicReleaseJavaWithJavac: task ':app:compileDynamicReleaseJavaWithJavac'
compileDynamicReleaseNdk: task ':app:compileDynamicReleaseNdk'
compileDynamicReleaseRenderscript: task ':app:compileDynamicReleaseRenderscript'
compileDynamicReleaseShaders: task ':app:compileDynamicReleaseShaders'
compileDynamicReleaseSources: task ':app:compileDynamicReleaseSources'
compileDynamicReleaseUnitTestJavaWithJavac: task ':app:compileDynamicReleaseUnitTestJavaWithJavac'
compileDynamicReleaseUnitTestSources: task ':app:compileDynamicReleaseUnitTestSources'
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@29814041
configurationTargetIdentifier: org.gradle.configuration.ConfigurationTargetIdentifier$1@104b8f6
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@72b650ed
copyFlutterAssetsDebug: task ':app:copyFlutterAssetsDebug'
copyFlutterAssetsDynamicProfile: task ':app:copyFlutterAssetsDynamicProfile'
copyFlutterAssetsDynamicRelease: task ':app:copyFlutterAssetsDynamicRelease'
copyFlutterAssetsProfile: task ':app:copyFlutterAssetsProfile'
copyFlutterAssetsRelease: task ':app:copyFlutterAssetsRelease'
createDebugCompatibleScreenManifests: task ':app:createDebugCompatibleScreenManifests'
createDynamicProfileCompatibleScreenManifests: task ':app:createDynamicProfileCompatibleScreenManifests'
createDynamicReleaseCompatibleScreenManifests: task ':app:createDynamicReleaseCompatibleScreenManifests'
createProfileCompatibleScreenManifests: task ':app:createProfileCompatibleScreenManifests'
createReleaseCompatibleScreenManifests: task ':app:createReleaseCompatibleScreenManifests'
defaultArtifacts: org.gradle.api.internal.plugins.DefaultArtifactPublicationSet_Decorated@2f7ca01b
defaultTasks: []
deferredProjectConfiguration: org.gradle.api.internal.project.DeferredProjectConfiguration@cdc6efd
dependencies: org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@283ba498
depth: 1
description: null
deviceAndroidTest: task ':app:deviceAndroidTest'
deviceCheck: task ':app:deviceCheck'
displayName: project ':app'
distsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/distributions
distsDirName: distributions
docsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/docs
docsDirName: docs
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@68caa84a
extensions: org.gradle.api.internal.plugins.DefaultConvention@72b650ed
extractProguardFiles: task ':app:extractProguardFiles'
fileOperations: org.gradle.api.internal.file.DefaultFileOperations@227cb130
fileResolver: org.gradle.api.internal.file.BaseDirFileResolver@4d389804
flutter: FlutterExtension_Decorated@38d2fa5f
flutterBuildDebug: task ':app:flutterBuildDebug'
flutterBuildDynamicProfile: task ':app:flutterBuildDynamicProfile'
flutterBuildDynamicRelease: task ':app:flutterBuildDynamicRelease'
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'
generateDynamicProfileAssets: task ':app:generateDynamicProfileAssets'
generateDynamicProfileBuildConfig: task ':app:generateDynamicProfileBuildConfig'
generateDynamicProfileResValues: task ':app:generateDynamicProfileResValues'
generateDynamicProfileResources: task ':app:generateDynamicProfileResources'
generateDynamicProfileSources: task ':app:generateDynamicProfileSources'
generateDynamicReleaseAssets: task ':app:generateDynamicReleaseAssets'
generateDynamicReleaseBuildConfig: task ':app:generateDynamicReleaseBuildConfig'
generateDynamicReleaseResValues: task ':app:generateDynamicReleaseResValues'
generateDynamicReleaseResources: task ':app:generateDynamicReleaseResources'
generateDynamicReleaseSources: task ':app:generateDynamicReleaseSources'
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'
googleServices: com.google.gms.googleservices.GoogleServicesPlugin$GoogleServicesPluginConfig_Decorated@5e78df7
gradle: build 'android'
group: android
identityPath: :app
inheritedScope: org.gradle.api.internal.ExtensibleDynamicObject$InheritedDynamicObject@42d5594a
installDebug: task ':app:installDebug'
installDebugAndroidTest: task ':app:installDebugAndroidTest'
installDynamicProfile: task ':app:installDynamicProfile'
installDynamicRelease: task ':app:installDynamicRelease'
installProfile: task ':app:installProfile'
installRelease: task ':app:installRelease'
javaPreCompileDebug: task ':app:javaPreCompileDebug'
javaPreCompileDebugAndroidTest: task ':app:javaPreCompileDebugAndroidTest'
javaPreCompileDebugUnitTest: task ':app:javaPreCompileDebugUnitTest'
javaPreCompileDynamicProfile: task ':app:javaPreCompileDynamicProfile'
javaPreCompileDynamicProfileUnitTest: task ':app:javaPreCompileDynamicProfileUnitTest'
javaPreCompileDynamicRelease: task ':app:javaPreCompileDynamicRelease'
javaPreCompileDynamicReleaseUnitTest: task ':app:javaPreCompileDynamicReleaseUnitTest'
javaPreCompileProfile: task ':app:javaPreCompileProfile'
javaPreCompileProfileUnitTest: task ':app:javaPreCompileProfileUnitTest'
javaPreCompileRelease: task ':app:javaPreCompileRelease'
javaPreCompileReleaseUnitTest: task ':app:javaPreCompileReleaseUnitTest'
layout: org.gradle.api.internal.file.DefaultProjectLayout@4b2411ac
libsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/libs
libsDirName: libs
lint: task ':app:lint'
lintDebug: task ':app:lintDebug'
lintDynamicProfile: task ':app:lintDynamicProfile'
lintDynamicRelease: task ':app:lintDynamicRelease'
lintProfile: task ':app:lintProfile'
lintRelease: task ':app:lintRelease'
lintVitalRelease: task ':app:lintVitalRelease'
logger: org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger@702f85a
logging: org.gradle.internal.logging.services.DefaultLoggingManager@648b1a95
mainApkListPersistenceDebug: task ':app:mainApkListPersistenceDebug'
mainApkListPersistenceDebugAndroidTest: task ':app:mainApkListPersistenceDebugAndroidTest'
mainApkListPersistenceDynamicProfile: task ':app:mainApkListPersistenceDynamicProfile'
mainApkListPersistenceDynamicRelease: task ':app:mainApkListPersistenceDynamicRelease'
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'
mergeDynamicProfileAssets: task ':app:mergeDynamicProfileAssets'
mergeDynamicProfileJniLibFolders: task ':app:mergeDynamicProfileJniLibFolders'
mergeDynamicProfileResources: task ':app:mergeDynamicProfileResources'
mergeDynamicProfileShaders: task ':app:mergeDynamicProfileShaders'
mergeDynamicReleaseAssets: task ':app:mergeDynamicReleaseAssets'
mergeDynamicReleaseJniLibFolders: task ':app:mergeDynamicReleaseJniLibFolders'
mergeDynamicReleaseResources: task ':app:mergeDynamicReleaseResources'
mergeDynamicReleaseShaders: task ':app:mergeDynamicReleaseShaders'
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@5dbabbc6
modelSchemaStore: org.gradle.model.internal.manage.schema.extract.DefaultModelSchemaStore@3f36c0a6
module: org.gradle.api.internal.artifacts.ProjectBackedModule@41ed7c27
name: app
normalization: org.gradle.normalization.internal.DefaultInputNormalizationHandler_Decorated@354da632
objects: org.gradle.api.internal.model.DefaultObjectFactory@5e8f6846
org.gradle.jvmargs: -Xmx1536M
packageDebug: task ':app:packageDebug'
packageDebugAndroidTest: task ':app:packageDebugAndroidTest'
packageDynamicProfile: task ':app:packageDynamicProfile'
packageDynamicRelease: task ':app:packageDynamicRelease'
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@626c9eb0
plugins: [org.gradle.api.plugins.HelpTasksPlugin@2a7028bb, com.android.build.gradle.api.AndroidBasePlugin@51b001fe, org.gradle.language.base.plugins.LifecycleBasePlugin@4900bf69, org.gradle.api.plugins.BasePlugin@6178598f, org.gradle.api.plugins.ReportingBasePlugin@ee6c392, org.gradle.platform.base.plugins.ComponentBasePlugin@659bf7a7, org.gradle.language.base.plugins.LanguageBasePlugin@5dd952d5, org.gradle.platform.base.plugins.BinaryBasePlugin@43222bb9, org.gradle.api.plugins.JavaBasePlugin@78ac61e7, com.android.build.gradle.AppPlugin@6e98908b, FlutterPlugin@5c7a8ca6, com.google.gms.googleservices.GoogleServicesPlugin@6c973864]
preBuild: task ':app:preBuild'
preDebugAndroidTestBuild: task ':app:preDebugAndroidTestBuild'
preDebugBuild: task ':app:preDebugBuild'
preDebugUnitTestBuild: task ':app:preDebugUnitTestBuild'
preDynamicProfileBuild: task ':app:preDynamicProfileBuild'
preDynamicProfileUnitTestBuild: task ':app:preDynamicProfileUnitTestBuild'
preDynamicReleaseBuild: task ':app:preDynamicReleaseBuild'
preDynamicReleaseUnitTestBuild: task ':app:preDynamicReleaseUnitTestBuild'
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_DEXDynamicProfileForPublishing: task ':app:preparePUBLISHED_DEXDynamicProfileForPublishing'
preparePUBLISHED_DEXDynamicReleaseForPublishing: task ':app:preparePUBLISHED_DEXDynamicReleaseForPublishing'
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_RESDynamicProfileForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicProfileForPublishing'
preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing: task ':app:preparePUBLISHED_JAVA_RESDynamicReleaseForPublishing'
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_LIBSDynamicProfileForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicProfileForPublishing'
preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing: task ':app:preparePUBLISHED_NATIVE_LIBSDynamicReleaseForPublishing'
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'
processDebugGoogleServices: task ':app:processDebugGoogleServices'
processDebugJavaRes: task ':app:processDebugJavaRes'
processDebugManifest: task ':app:processDebugManifest'
processDebugResources: task ':app:processDebugResources'
processDebugUnitTestJavaRes: task ':app:processDebugUnitTestJavaRes'
processDynamicProfileGoogleServices: task ':app:processDynamicProfileGoogleServices'
processDynamicProfileJavaRes: task ':app:processDynamicProfileJavaRes'
processDynamicProfileManifest: task ':app:processDynamicProfileManifest'
processDynamicProfileResources: task ':app:processDynamicProfileResources'
processDynamicProfileUnitTestJavaRes: task ':app:processDynamicProfileUnitTestJavaRes'
processDynamicReleaseGoogleServices: task ':app:processDynamicReleaseGoogleServices'
processDynamicReleaseJavaRes: task ':app:processDynamicReleaseJavaRes'
processDynamicReleaseManifest: task ':app:processDynamicReleaseManifest'
processDynamicReleaseResources: task ':app:processDynamicReleaseResources'
processDynamicReleaseUnitTestJavaRes: task ':app:processDynamicReleaseUnitTestJavaRes'
processOperations: org.gradle.api.internal.file.DefaultFileOperations@227cb130
processProfileGoogleServices: task ':app:processProfileGoogleServices'
processProfileJavaRes: task ':app:processProfileJavaRes'
processProfileManifest: task ':app:processProfileManifest'
processProfileResources: task ':app:processProfileResources'
processProfileUnitTestJavaRes: task ':app:processProfileUnitTestJavaRes'
processReleaseGoogleServices: task ':app:processReleaseGoogleServices'
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@6a807db0
projectDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/app
projectEvaluationBroadcaster: ProjectEvaluationListener broadcast
projectEvaluator: org.gradle.configuration.project.LifecycleProjectEvaluator@32242ae4
projectPath: :app
projectRegistry: org.gradle.api.internal.project.DefaultProjectRegistry@174cb9be
properties: {...}
providers: org.gradle.api.internal.provider.DefaultProviderFactory@150fad36
reportBuildArtifactsDebug: task ':app:reportBuildArtifactsDebug'
reportBuildArtifactsDynamicProfile: task ':app:reportBuildArtifactsDynamicProfile'
reportBuildArtifactsDynamicRelease: task ':app:reportBuildArtifactsDynamicRelease'
reportBuildArtifactsProfile: task ':app:reportBuildArtifactsProfile'
reportBuildArtifactsRelease: task ':app:reportBuildArtifactsRelease'
reporting: org.gradle.api.reporting.ReportingExtension_Decorated@11d32cf9
reportsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/reports
repositories: repository container
resolveConfigAttr: task ':app:resolveConfigAttr'
resourceLoader: org.gradle.internal.resource.transfer.DefaultUriTextResourceLoader@7857ae8e
resources: org.gradle.api.internal.resources.DefaultResourceHandler@6b37d86a
rootDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android
rootProject: root project 'android'
script: false
scriptHandlerFactory: org.gradle.api.internal.initialization.DefaultScriptHandlerFactory@19441dfb
scriptPluginFactory: org.gradle.configuration.ScriptPluginFactorySelector@11f85ece
serviceRegistryFactory: org.gradle.internal.service.scopes.ProjectScopeServices$4@541eb1a1
services: ProjectScopeServices
signingReport: task ':app:signingReport'
sourceCompatibility: 1.8
sourceSets: SourceSet container
splitsDiscoveryTaskDebug: task ':app:splitsDiscoveryTaskDebug'
splitsDiscoveryTaskDynamicProfile: task ':app:splitsDiscoveryTaskDynamicProfile'
splitsDiscoveryTaskDynamicRelease: task ':app:splitsDiscoveryTaskDynamicRelease'
splitsDiscoveryTaskProfile: task ':app:splitsDiscoveryTaskProfile'
splitsDiscoveryTaskRelease: task ':app:splitsDiscoveryTaskRelease'
standardOutputCapture: org.gradle.internal.logging.services.DefaultLoggingManager@648b1a95
state: project state 'EXECUTED'
status: integration
subprojects: []
targetCompatibility: 1.8
tasks: task set
test: task ':app:test'
testDebugUnitTest: task ':app:testDebugUnitTest'
testDynamicProfileUnitTest: task ':app:testDynamicProfileUnitTest'
testDynamicReleaseUnitTest: task ':app:testDynamicReleaseUnitTest'
testProfileUnitTest: task ':app:testProfileUnitTest'
testReleaseUnitTest: task ':app:testReleaseUnitTest'
testReportDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/reports/tests
testReportDirName: tests
testResultsDir: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/test-results
testResultsDirName: test-results
transformClassesWithDexBuilderForDebug: task ':app:transformClassesWithDexBuilderForDebug'
transformClassesWithDexBuilderForDebugAndroidTest: task ':app:transformClassesWithDexBuilderForDebugAndroidTest'
transformClassesWithDexBuilderForDynamicProfile: task ':app:transformClassesWithDexBuilderForDynamicProfile'
transformClassesWithDexBuilderForDynamicRelease: task ':app:transformClassesWithDexBuilderForDynamicRelease'
transformClassesWithDexBuilderForProfile: task ':app:transformClassesWithDexBuilderForProfile'
transformClassesWithDexBuilderForRelease: task ':app:transformClassesWithDexBuilderForRelease'
transformDexArchiveWithDexMergerForDebug: task ':app:transformDexArchiveWithDexMergerForDebug'
transformDexArchiveWithDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithDexMergerForDebugAndroidTest'
transformDexArchiveWithDexMergerForDynamicProfile: task ':app:transformDexArchiveWithDexMergerForDynamicProfile'
transformDexArchiveWithDexMergerForDynamicRelease: task ':app:transformDexArchiveWithDexMergerForDynamicRelease'
transformDexArchiveWithDexMergerForProfile: task ':app:transformDexArchiveWithDexMergerForProfile'
transformDexArchiveWithDexMergerForRelease: task ':app:transformDexArchiveWithDexMergerForRelease'
transformDexArchiveWithExternalLibsDexMergerForDebug: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'
transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest: task ':app:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'
transformDexArchiveWithExternalLibsDexMergerForDynamicProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicProfile'
transformDexArchiveWithExternalLibsDexMergerForDynamicRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForDynamicRelease'
transformDexArchiveWithExternalLibsDexMergerForProfile: task ':app:transformDexArchiveWithExternalLibsDexMergerForProfile'
transformDexArchiveWithExternalLibsDexMergerForRelease: task ':app:transformDexArchiveWithExternalLibsDexMergerForRelease'
transformNativeLibsWithMergeJniLibsForDebug: task ':app:transformNativeLibsWithMergeJniLibsForDebug'
transformNativeLibsWithMergeJniLibsForDebugAndroidTest: task ':app:transformNativeLibsWithMergeJniLibsForDebugAndroidTest'
transformNativeLibsWithMergeJniLibsForDynamicProfile: task ':app:transformNativeLibsWithMergeJniLibsForDynamicProfile'
transformNativeLibsWithMergeJniLibsForDynamicRelease: task ':app:transformNativeLibsWithMergeJniLibsForDynamicRelease'
transformNativeLibsWithMergeJniLibsForProfile: task ':app:transformNativeLibsWithMergeJniLibsForProfile'
transformNativeLibsWithMergeJniLibsForRelease: task ':app:transformNativeLibsWithMergeJniLibsForRelease'
transformNativeLibsWithStripDebugSymbolForDebug: task ':app:transformNativeLibsWithStripDebugSymbolForDebug'
transformNativeLibsWithStripDebugSymbolForDynamicProfile: task ':app:transformNativeLibsWithStripDebugSymbolForDynamicProfile'
transformNativeLibsWithStripDebugSymbolForDynamicRelease: task ':app:transformNativeLibsWithStripDebugSymbolForDynamicRelease'
transformNativeLibsWithStripDebugSymbolForProfile: task ':app:transformNativeLibsWithStripDebugSymbolForProfile'
transformNativeLibsWithStripDebugSymbolForRelease: task ':app:transformNativeLibsWithStripDebugSymbolForRelease'
transformResourcesWithMergeJavaResForDebug: task ':app:transformResourcesWithMergeJavaResForDebug'
transformResourcesWithMergeJavaResForDebugAndroidTest: task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'
transformResourcesWithMergeJavaResForDebugUnitTest: task ':app:transformResourcesWithMergeJavaResForDebugUnitTest'
transformResourcesWithMergeJavaResForDynamicProfile: task ':app:transformResourcesWithMergeJavaResForDynamicProfile'
transformResourcesWithMergeJavaResForDynamicProfileUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicProfileUnitTest'
transformResourcesWithMergeJavaResForDynamicRelease: task ':app:transformResourcesWithMergeJavaResForDynamicRelease'
transformResourcesWithMergeJavaResForDynamicReleaseUnitTest: task ':app:transformResourcesWithMergeJavaResForDynamicReleaseUnitTest'
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'
uninstallDynamicProfile: task ':app:uninstallDynamicProfile'
uninstallDynamicRelease: task ':app:uninstallDynamicRelease'
uninstallProfile: task ':app:uninstallProfile'
uninstallRelease: task ':app:uninstallRelease'
validateSigningDebug: task ':app:validateSigningDebug'
validateSigningDebugAndroidTest: task ':app:validateSigningDebugAndroidTest'
validateSigningDynamicProfile: task ':app:validateSigningDynamicProfile'
validateSigningDynamicRelease: task ':app:validateSigningDynamicRelease'
validateSigningProfile: task ':app:validateSigningProfile'
validateSigningRelease: task ':app:validateSigningRelease'
version: unspecified
writeDebugApplicationId: task ':app:writeDebugApplicationId'
writeDynamicProfileApplicationId: task ':app:writeDynamicProfileApplicationId'
writeDynamicReleaseApplicationId: task ':app:writeDynamicReleaseApplicationId'
writeProfileApplicationId: task ':app:writeProfileApplicationId'
writeReleaseApplicationId: task ':app:writeReleaseApplicationId'
1 actionable task: 1 executed
[ +11 ms] Resolving dependencies... (completed)
[ +2 ms] executing: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +12 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ ] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
A: package="com.bk1031.vcdeca" (Raw: "com.bk1031.vcdeca")
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b
E: uses-permission (line=16)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: uses-permission (line=17)
A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
E: uses-permission (line=18)
A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
E: uses-permission (line=19)
A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
E: uses-permission (line=20)
A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
E: application (line=28)
A: android:label(0x01010001)="vc_deca" (Raw: "vc_deca")
A: android:icon(0x01010002)=@0x7f090000
A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
E: activity (line=33)
A: android:theme(0x01010000)=@0x7f0b0000
A: android:name(0x01010003)="com.example.vcdeca.MainActivity" (Raw: "com.example.vcdeca.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=47)
A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: intent-filter (line=51)
E: action (line=52)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=54)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: service (line=58)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService")
E: intent-filter (line=59)
E: action (line=60)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: service (line=63)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
E: intent-filter (line=64)
E: action (line=65)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=69)
A: android:theme(0x01010000)=@0x1030007
A: android:name(0x01010003)="io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=77)
A: android:name(0x01010003)="com.google.firebase.messaging.FirebaseMessagingService" (Raw: "com.google.firebase.messaging.FirebaseMessagingService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=80)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=81)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=85)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.firebase.auth.internal.FederatedSignInActivity" (Raw: "com.google.firebase.auth.internal.FederatedSignInActivity")
A: android:permission(0x01010006)="com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN" (Raw: "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
A: android:launchMode(0x0101001d)=(type 0x10)0x3
E: service (line=93)
A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=96)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=99)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=102)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=107)
A: android:name(0x01010003)="android.support.VERSION" (Raw: "android.support.VERSION")
A: android:value(0x01010024)="26.1.0" (Raw: "26.1.0")
E: receiver (line=111)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=116)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=121)
E: action (line=122)
A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
E: service (line=126)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=130)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=136)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=140)
E: action (line=141)
A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
E: service (line=148)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdService" (Raw: "com.google.firebase.iid.FirebaseInstanceIdService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=151)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=152)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: provider (line=156)
A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.bk1031.vcdeca.firebaseinitprovider" (Raw: "com.bk1031.vcdeca.firebaseinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
E: activity (line=162)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=167)
A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
A: android:value(0x01010024)=@0x7f070001
E: meta-data (line=170)
A: android:name(0x01010003)="android.arch.lifecycle.VERSION" (Raw: "android.arch.lifecycle.VERSION")
A: android:value(0x01010024)="27.0.0-SNAPSHOT" (Raw: "27.0.0-SNAPSHOT")
[ +17 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ +30 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ ] --------- beginning of main
10-25 17:36:34.175 I/DeviceStateChecker( 2424): DeviceStateChecker cancelled
[ +3 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time
[ +530 ms] DependencyChecker: nothing is modified after 2018-10-25 17:28:19.553.
[ +2 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb version
[ +15 ms] Android Debug Bridge version 1.0.40
Version 4986621
Installed as /Users/bharat/Library/Android/sdk/platform-tools/adb
[ +2 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb start-server
[ +39 ms] Building APK
[ +33 ms] Gradle task 'assembleDebug'...
[ +3 ms] executing: [/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/] /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/gradlew -Pverbose=true -Ptarget=/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/lib/main.dart -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+1234 ms] Could not find google-services.json while looking in [src/nullnull/debug, src/debug/nullnull, src/nullnull, src/debug, src/nullnullDebug]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/dynamicProfile, src/dynamicProfile/nullnull, src/nullnull, src/dynamicProfile, src/nullnullDynamicProfile]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/release, src/release/nullnull, src/nullnull, src/release, src/nullnullRelease]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/profile, src/profile/nullnull, src/nullnull, src/profile, src/nullnullProfile]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ ] Could not find google-services.json while looking in [src/nullnull/dynamicRelease, src/dynamicRelease/nullnull, src/nullnull, src/dynamicRelease, src/nullnullDynamicRelease]
[ ] registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
[ +823 ms] Parsing json file: /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/android/app/google-services.json
[ +494 ms] 240 actionable tasks: 4 executed, 236 up-to-date
[ +405 ms] Gradle task 'assembleDebug'... (completed)
[ +123 ms] calculateSha: LocalDirectory: '/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk'/app.apk
[ +563 ms] Built build/app/outputs/apk/debug/app-debug.apk.
[ +1 ms] executing: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ +13 ms] Exit code 0 from: /Users/bharat/Library/Android/sdk/build-tools/28.0.2/aapt dump xmltree /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/build/app/outputs/apk/app.apk AndroidManifest.xml
[ ] N: android=http://schemas.android.com/apk/res/android
E: manifest (line=2)
A: android:versionCode(0x0101021b)=(type 0x10)0x1
A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
A: package="com.bk1031.vcdeca" (Raw: "com.bk1031.vcdeca")
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1b
E: uses-permission (line=16)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: uses-permission (line=17)
A: android:name(0x01010003)="android.permission.ACCESS_NETWORK_STATE" (Raw: "android.permission.ACCESS_NETWORK_STATE")
E: uses-permission (line=18)
A: android:name(0x01010003)="android.permission.WAKE_LOCK" (Raw: "android.permission.WAKE_LOCK")
E: uses-permission (line=19)
A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
E: uses-permission (line=20)
A: android:name(0x01010003)="com.google.android.c2dm.permission.RECEIVE" (Raw: "com.google.android.c2dm.permission.RECEIVE")
E: application (line=28)
A: android:label(0x01010001)="vc_deca" (Raw: "vc_deca")
A: android:icon(0x01010002)=@0x7f090000
A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
E: activity (line=33)
A: android:theme(0x01010000)=@0x7f0b0000
A: android:name(0x01010003)="com.example.vcdeca.MainActivity" (Raw: "com.example.vcdeca.MainActivity")
A: android:launchMode(0x0101001d)=(type 0x10)0x1
A: android:configChanges(0x0101001f)=(type 0x11)0x400035b4
A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
E: meta-data (line=47)
A: android:name(0x01010003)="io.flutter.app.android.SplashScreenUntilFirstFrame" (Raw: "io.flutter.app.android.SplashScreenUntilFirstFrame")
A: android:value(0x01010024)=(type 0x12)0xffffffff
E: intent-filter (line=51)
E: action (line=52)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=54)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: service (line=58)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseInstanceIDService")
E: intent-filter (line=59)
E: action (line=60)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: service (line=63)
A: android:name(0x01010003)="io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService" (Raw: "io.flutter.plugins.firebasemessaging.FlutterFirebaseMessagingService")
E: intent-filter (line=64)
E: action (line=65)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=69)
A: android:theme(0x01010000)=@0x1030007
A: android:name(0x01010003)="io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.UrlLauncherPlugin$WebViewActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=77)
A: android:name(0x01010003)="com.google.firebase.messaging.FirebaseMessagingService" (Raw: "com.google.firebase.messaging.FirebaseMessagingService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=80)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=81)
A: android:name(0x01010003)="com.google.firebase.MESSAGING_EVENT" (Raw: "com.google.firebase.MESSAGING_EVENT")
E: activity (line=85)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.firebase.auth.internal.FederatedSignInActivity" (Raw: "com.google.firebase.auth.internal.FederatedSignInActivity")
A: android:permission(0x01010006)="com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN" (Raw: "com.google.firebase.auth.api.gms.permission.LAUNCH_FEDERATED_SIGN_IN")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
A: android:excludeFromRecents(0x01010017)=(type 0x12)0xffffffff
A: android:launchMode(0x0101001d)=(type 0x10)0x3
E: service (line=93)
A: android:name(0x01010003)="com.google.firebase.components.ComponentDiscoveryService" (Raw: "com.google.firebase.components.ComponentDiscoveryService")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=96)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=99)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar" (Raw: "com.google.firebase.components:com.google.firebase.analytics.connector.internal.AnalyticsConnectorRegistrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=102)
A: android:name(0x01010003)="com.google.firebase.components:com.google.firebase.iid.Registrar" (Raw: "com.google.firebase.components:com.google.firebase.iid.Registrar")
A: android:value(0x01010024)="com.google.firebase.components.ComponentRegistrar" (Raw: "com.google.firebase.components.ComponentRegistrar")
E: meta-data (line=107)
A: android:name(0x01010003)="android.support.VERSION" (Raw: "android.support.VERSION")
A: android:value(0x01010024)="26.1.0" (Raw: "26.1.0")
E: receiver (line=111)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementReceiver")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=116)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" (Raw: "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver")
A: android:permission(0x01010006)="android.permission.INSTALL_PACKAGES" (Raw: "android.permission.INSTALL_PACKAGES")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=121)
E: action (line=122)
A: android:name(0x01010003)="com.android.vending.INSTALL_REFERRER" (Raw: "com.android.vending.INSTALL_REFERRER")
E: service (line=126)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementService" (Raw: "com.google.android.gms.measurement.AppMeasurementService")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: service (line=130)
A: android:name(0x01010003)="com.google.android.gms.measurement.AppMeasurementJobService" (Raw: "com.google.android.gms.measurement.AppMeasurementJobService")
A: android:permission(0x01010006)="android.permission.BIND_JOB_SERVICE" (Raw: "android.permission.BIND_JOB_SERVICE")
A: android:enabled(0x0101000e)=(type 0x12)0xffffffff
A: android:exported(0x01010010)=(type 0x12)0x0
E: receiver (line=136)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdReceiver" (Raw: "com.google.firebase.iid.FirebaseInstanceIdReceiver")
A: android:permission(0x01010006)="com.google.android.c2dm.permission.SEND" (Raw: "com.google.android.c2dm.permission.SEND")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=140)
E: action (line=141)
A: android:name(0x01010003)="com.google.android.c2dm.intent.RECEIVE" (Raw: "com.google.android.c2dm.intent.RECEIVE")
E: service (line=148)
A: android:name(0x01010003)="com.google.firebase.iid.FirebaseInstanceIdService" (Raw: "com.google.firebase.iid.FirebaseInstanceIdService")
A: android:exported(0x01010010)=(type 0x12)0xffffffff
E: intent-filter (line=151)
A: android:priority(0x0101001c)=(type 0x10)0xfffffe0c
E: action (line=152)
A: android:name(0x01010003)="com.google.firebase.INSTANCE_ID_EVENT" (Raw: "com.google.firebase.INSTANCE_ID_EVENT")
E: provider (line=156)
A: android:name(0x01010003)="com.google.firebase.provider.FirebaseInitProvider" (Raw: "com.google.firebase.provider.FirebaseInitProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.bk1031.vcdeca.firebaseinitprovider" (Raw: "com.bk1031.vcdeca.firebaseinitprovider")
A: android:initOrder(0x0101001a)=(type 0x10)0x64
E: activity (line=162)
A: android:theme(0x01010000)=@0x1030010
A: android:name(0x01010003)="com.google.android.gms.common.api.GoogleApiActivity" (Raw: "com.google.android.gms.common.api.GoogleApiActivity")
A: android:exported(0x01010010)=(type 0x12)0x0
E: meta-data (line=167)
A: android:name(0x01010003)="com.google.android.gms.version" (Raw: "com.google.android.gms.version")
A: android:value(0x01010024)=@0x7f070001
E: meta-data (line=170)
A: android:name(0x01010003)="android.arch.lifecycle.VERSION" (Raw: "android.arch.lifecycle.VERSION")
A: android:value(0x01010024)="27.0.0-SNAPSHOT" (Raw: "27.0.0-SNAPSHOT")
[ +4 ms] Stopping app 'app.apk' on Android SDK built for x86.
[ ] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am force-stop com.bk1031.vcdeca
[ +66 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell pm list packages com.bk1031.vcdeca
[ +43 ms] package:com.bk1031.vcdeca
[ +3 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.bk1031.vcdeca.sha1
[ +23 ms] afbdca0981fcc55812ae45be68709614133d72c7
[ +1 ms] Latest build already installed.
[ ] Android SDK built for x86 startApp
[ +1 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 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.bk1031.vcdeca/com.example.vcdeca.MainActivity
[ +62 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.bk1031.vcdeca/com.example.vcdeca.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[+3371 ms] Observatory URL on device: http://127.0.0.1:46199/
[ +1 ms] executing: /Users/bharat/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:46199
[ +15 ms] 60318
[ +1 ms] Forwarded host port 60318 to device port 46199 for Observatory
[ +9 ms] Connecting to service protocol: http://127.0.0.1:60318/
[ +583 ms] Successfully connected to service protocol: http://127.0.0.1:60318/
[ +3 ms] getVM: {}
[ +13 ms] getIsolate: {isolateId: isolates/107682283}
[ +4 ms] _flutter.listViews: {isolateId: isolates/107682283}
[ +87 ms] DevFS: Creating new filesystem on the device (null)
[ ] _createDevFS: {fsName: VC-DECA-flutter}
[ +111 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.bk1031.vcdeca/cache/VC-DECA-flutterOSTPZM/VC-DECA-flutter/)
[ +1 ms] Updating assets
[ +414 ms] Syncing files to device Android SDK built for x86...
[ +2 ms] DevFS: Starting sync from LocalDirectory: '/Users/bharat/Documents/Flutter Apps/VC-DECA-flutter'
[ ] Scanning project files
[ +14 ms] Scanning package files
[ +146 ms] Scanning asset files
[ +4 ms] Scanning for deleted files
[ +13 ms] Compiling dart to kernel with 491 updated files
[ +6 ms] /Users/bharat/Documents/flutter/bin/cache/dart-sdk/bin/dart /Users/bharat/Documents/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/bharat/Documents/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/bharat/Documents/Flutter Apps/VC-DECA-flutter/.packages --filesystem-scheme org-dartlang-root
[ +1 ms] W/m.bk1031.vcdec(20655): Unsupported class loader
[ ] I/DynamiteModule(20655): Considering local module com.google.android.gms.firebase_database:4 and remote module com.google.android.gms.firebase_database:6
[ ] I/DynamiteModule(20655): Selected remote version of com.google.android.gms.firebase_database, version >= 6
[ ] W/DynamiteModule(20655): Dynamite loader version < 2, falling back to loadModule2
[ +8 ms] W/m.bk1031.vcdec(20655): Unsupported class loader
[ +27 ms] W/m.bk1031.vcdec(20655): Skipping duplicate class check due to unsupported classloader
[ +105 ms] I/m.bk1031.vcdec(20655): Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.flags.IFlagProvider$Stub>: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/internal/stable/zzb;
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ +8 ms] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ +3 ms] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ +3 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ +4 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ +1 ms] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.internal.stable.zzb" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.boot.jar", zip file "/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/lib/x86, /data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk!/lib/x86, /system/lib]]
[ +22 ms] I/m.bk1031.vcdec(20655): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:134)
[ +1 ms] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
[ ] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ +1 ms] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ +1 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655):
[ ] I/m.bk1031.vcdec(20655): Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.flags.IFlagProvider$Stub>: java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/internal/stable/zzb;
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ +1 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ +4 ms] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.internal.stable.zzb" on path: DexPathList[[zip file "/system/framework/org.apache.http.legacy.boot.jar", zip file "/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk"],nativeLibraryDirectories=[/data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/lib/x86, /data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk!/lib/x86, /system/lib]]
[ ] I/m.bk1031.vcdec(20655): at java.lang.Class dalvik.system.BaseDexClassLoader.findClass(java.lang.String) (BaseDexClassLoader.java:134)
[ +1 ms] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String, boolean) (ClassLoader.java:379)
[ ] I/m.bk1031.vcdec(20655): at java.lang.Class java.lang.ClassLoader.loadClass(java.lang.String) (ClassLoader.java:312)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<init>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Singletons.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.FlagRegistry com.google.android.gms.flags.Singletons.flagRegistry() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag.<init>(int, java.lang.String, java.lang.Object, com.google.android.gms.flags.zza) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.android.gms.flags.Flag$BooleanFlag.<init>(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ +2 ms] I/m.bk1031.vcdec(20655): at com.google.android.gms.flags.Flag$BooleanFlag com.google.android.gms.flags.Flag.define(int, java.lang.String, java.lang.Boolean) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.<clinit>() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzx.initialize(android.content.Context) ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void com.google.firebase.auth.internal.zzt.run() ((null):-1)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Handler.handleCallback(android.os.Message) (Handler.java:873)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:99)
[ ] I/m.bk1031.vcdec(20655): at void android.os.Looper.loop() (Looper.java:193)
[ ] I/m.bk1031.vcdec(20655): at void android.os.HandlerThread.run() (HandlerThread.java:65)
[ ] I/m.bk1031.vcdec(20655):
[ +41 ms] E/AndroidRuntime(20655): FATAL EXCEPTION: TokenRefresher
[ ] E/AndroidRuntime(20655): Process: com.bk1031.vcdeca, PID: 20655
[ ] E/AndroidRuntime(20655): java.lang.NoSuchFieldError: No field PREFER_HIGHEST_OR_REMOTE_VERSION_NO_FORCE_STAGING of type Lcom/google/android/gms/dynamite/DynamiteModule$VersionPolicy; in class Lcom/google/android/gms/dynamite/DynamiteModule; or its superclasses (declaration of 'com.google.android.gms.dynamite.DynamiteModule' appears in /data/app/com.bk1031.vcdeca-1WnISDPTW-EeqwoLodLbeQ==/base.apk)
[ ] E/AndroidRuntime(20655): at com.google.android.gms.flags.FlagValueProvider.initialize(Unknown Source:7)
[ ] E/AndroidRuntime(20655): at com.google.android.gms.flags.FlagRegistry.initialize(Unknown Source:4)
[ ] E/AndroidRuntime(20655): at com.google.firebase.auth.internal.zzx.initialize(Unknown Source:3)
[ ] E/AndroidRuntime(20655): at com.google.firebase.auth.internal.zzt.run(Unknown Source:14)
[ ] E/AndroidRuntime(20655): at android.os.Handler.handleCallback(Handler.java:873)
[ ] E/AndroidRuntime(20655): at android.os.Handler.dispatchMessage(Handler.java:99)
[ ] E/AndroidRuntime(20655): at android.os.Looper.loop(Looper.java:193)
[ ] E/AndroidRuntime(20655): at android.os.HandlerThread.run(HandlerThread.java:65)
[ ] I/Process (20655): Sending signal. PID: 20655 SIG: 9
[ +175 ms] Service protocol connection closed.
[ ] Lost connection to device.
[+1749 ms] Updating files
[ +27 ms] DevFS sync failed. Lost connection to device: SocketException: Write failed (OS Error: Protocol wrong type for socket, errno = 41), address = 127.0.0.1, port = 60329
[ ] Syncing files to device Android SDK built for x86... (completed)
[ +11 ms] "flutter run" took 16,149ms.
#0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3)
#1 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:397:7)
<asynchronous suspension>
#2 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:372:18)
#3 _asyncThenWrapperHelper.<anonymous closure> (dart:async/runtime/libasync_patch.dart:77:64)
#4 _rootRunUnary (dart:async/zone.dart:1132:38)
#5 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
#6 _FutureListener.handleValue (dart:async/future_impl.dart:129:18)
#7 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45)
#8 Future._propagateToListeners (dart:async/future_impl.dart:671:32)
#9 Future._complete (dart:async/future_impl.dart:476:7)
#10 _SyncCompleter.complete (dart:async/future_impl.dart:51:12)
#11 _AsyncAwaitCompleter.complete (dart:async/runtime/libasync_patch.dart:28:18)
#12 _completeOnAsyncReturn (dart:async/runtime/libasync_patch.dart:295:13)
#13 RunCommand.usageValues (package:flutter_tools/src/commands/run.dart)
#14 _asyncThenWrapperHelper.<anonymous closure> (dart:async/runtime/libasync_patch.dart:77:64)
#15 _rootRunUnary (dart:async/zone.dart:1132:38)
#16 _CustomZone.runUnary (dart:async/zone.dart:1029:19)
#17 _FutureListener.handleValue (dart:async/future_impl.dart:129:18)
#18 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45)
#19 Future._propagateToListeners (dart:async/future_impl.dart:671:32)
#20 Future._complete (dart:async/future_impl.dart:476:7)
#21 _SyncCompleter.complete (dart:async/future_impl.dart:51:12)
#22 _AsyncAwaitCompleter.complete.<anonymous closure> (dart:async/runtime/libasync_patch.dart:33:20)
#23 _rootRun (dart:async/zone.dart:1124:13)
#24 _CustomZone.run (dart:async/zone.dart:1021:19)
#25 _CustomZone.bindCallback.<anonymous closure> (dart:async/zone.dart:947:23)
#26 _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
#27 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
#28 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13)
#29 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5)
</code></pre></div>
<h3 dir="auto">flutter analyze</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing VC-DECA-flutter...
info โข Unused import: 'package:flutter/scheduler.dart' โข lib/chaperone_chat.dart:3:8 โข unused_import
info โข Unused import: 'package:flutter/scheduler.dart' โข lib/global_chat.dart:3:8 โข unused_import
info โข Unused import: 'dart:async' โข lib/main.dart:1:8 โข unused_import
info โข Unused import: 'dart:io' โข lib/main.dart:2:8 โข unused_import
info โข Unused import: 'package:firebase_core/firebase_core.dart' โข lib/main.dart:3:8 โข unused_import
info โข Unused import: 'package:flutter/scheduler.dart' โข lib/officer_chat.dart:3:8 โข unused_import
info โข Unused import: 'package:firebase_database/firebase_database.dart' โข lib/setting_page.dart:3:8 โข unused_import
info โข Unused import: 'package:firebase_auth/firebase_auth.dart' โข lib/setting_page.dart:4:8 โข unused_import
info โข Unused import: 'dart:async' โข lib/tab_bar_controller.dart:1:8 โข unused_import
info โข Unused import: 'package:firebase_auth/firebase_auth.dart' โข lib/tab_bar_controller.dart:9:8 โข unused_import
info โข Unused import: 'package:vc_deca/main.dart' โข lib/user_drawer.dart:4:8 โข unused_import
11 issues found. (ran in 2.2s)"><pre class="notranslate"><code class="notranslate">Analyzing VC-DECA-flutter...
info โข Unused import: 'package:flutter/scheduler.dart' โข lib/chaperone_chat.dart:3:8 โข unused_import
info โข Unused import: 'package:flutter/scheduler.dart' โข lib/global_chat.dart:3:8 โข unused_import
info โข Unused import: 'dart:async' โข lib/main.dart:1:8 โข unused_import
info โข Unused import: 'dart:io' โข lib/main.dart:2:8 โข unused_import
info โข Unused import: 'package:firebase_core/firebase_core.dart' โข lib/main.dart:3:8 โข unused_import
info โข Unused import: 'package:flutter/scheduler.dart' โข lib/officer_chat.dart:3:8 โข unused_import
info โข Unused import: 'package:firebase_database/firebase_database.dart' โข lib/setting_page.dart:3:8 โข unused_import
info โข Unused import: 'package:firebase_auth/firebase_auth.dart' โข lib/setting_page.dart:4:8 โข unused_import
info โข Unused import: 'dart:async' โข lib/tab_bar_controller.dart:1:8 โข unused_import
info โข Unused import: 'package:firebase_auth/firebase_auth.dart' โข lib/tab_bar_controller.dart:9:8 โข unused_import
info โข Unused import: 'package:vc_deca/main.dart' โข lib/user_drawer.dart:4:8 โข unused_import
11 issues found. (ran in 2.2s)
</code></pre></div>
<h3 dir="auto">flutter doctor -v</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[โ] Flutter (Channel beta, v0.9.4, on Mac OS X 10.14.1 18B57c, locale en-US)
โข Flutter version 0.9.4 at /Users/bharat/Documents/flutter
โข Framework revision f37c235c32 (4 weeks ago), 2018-09-25 17:45:40 -0400
โข Engine revision 74625aed32
โข Dart version 2.1.0-dev.5.0.flutter-a2eb050044
[โ] Android toolchain - develop for Android devices (Android SDK 28.0.2)
โข Android SDK at /Users/bharat/Library/Android/sdk
โข Android NDK at /Users/bharat/Library/Android/sdk/ndk-bundle
โข Platform android-28, build-tools 28.0.2
โข Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
โข All Android licenses accepted.
[โ] iOS toolchain - develop for iOS devices (Xcode 10.0)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 10.0, Build version 10A255
โข ios-deploy 1.9.2
โข CocoaPods version 1.5.3
[โ] Android Studio (version 3.2)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 29.0.2
โข Dart plugin version 181.5540.11
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[โ] IntelliJ IDEA Ultimate Edition (version 2018.2.5)
โข IntelliJ at /Users/bharat/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app
โข Flutter plugin version 29.1.3
โข Dart plugin version 182.4999
[โ] VS Code (version 1.28.1)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Flutter extension version 2.19.0
[โ] Connected devices (1 available)
โข Android SDK built for x86 โข emulator-5554 โข android-x86 โข Android 9 (API 28) (emulator)
โข No issues found!"><pre class="notranslate"><code class="notranslate">[โ] Flutter (Channel beta, v0.9.4, on Mac OS X 10.14.1 18B57c, locale en-US)
โข Flutter version 0.9.4 at /Users/bharat/Documents/flutter
โข Framework revision f37c235c32 (4 weeks ago), 2018-09-25 17:45:40 -0400
โข Engine revision 74625aed32
โข Dart version 2.1.0-dev.5.0.flutter-a2eb050044
[โ] Android toolchain - develop for Android devices (Android SDK 28.0.2)
โข Android SDK at /Users/bharat/Library/Android/sdk
โข Android NDK at /Users/bharat/Library/Android/sdk/ndk-bundle
โข Platform android-28, build-tools 28.0.2
โข Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
โข All Android licenses accepted.
[โ] iOS toolchain - develop for iOS devices (Xcode 10.0)
โข Xcode at /Applications/Xcode.app/Contents/Developer
โข Xcode 10.0, Build version 10A255
โข ios-deploy 1.9.2
โข CocoaPods version 1.5.3
[โ] Android Studio (version 3.2)
โข Android Studio at /Applications/Android Studio.app/Contents
โข Flutter plugin version 29.0.2
โข Dart plugin version 181.5540.11
โข Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[โ] IntelliJ IDEA Ultimate Edition (version 2018.2.5)
โข IntelliJ at /Users/bharat/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app
โข Flutter plugin version 29.1.3
โข Dart plugin version 182.4999
[โ] VS Code (version 1.28.1)
โข VS Code at /Applications/Visual Studio Code.app/Contents
โข Flutter extension version 2.19.0
[โ] Connected devices (1 available)
โข Android SDK built for x86 โข emulator-5554 โข android-x86 โข Android 9 (API 28) (emulator)
โข No issues found!
</code></pre></div> | 0 |
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: Custom</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Windows 10</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: Binary</li>
<li><strong>TensorFlow version (use command below)</strong>: 1.9-rc0</li>
<li><strong>Python version</strong>: 3.6</li>
<li><strong>Bazel version (if compiling from source)</strong>: NA</li>
<li><strong>GCC/Compiler version (if compiling from source)</strong>: NA</li>
<li><strong>CUDA/cuDNN version</strong>: NA</li>
<li><strong>GPU model and memory</strong>: NA</li>
<li><strong>Exact command to reproduce</strong>: <code class="notranslate">model.fit(get_iterator,steps_per_epoch=2,batch_size=2,epochs=2,shuffle =True,verbose=1)</code><br>
and<br>
<code class="notranslate">model.fit(get_iterator,get_iterator,steps_per_epoch=2,batch_size=2,epochs=2,shuffle =True,verbose=1)</code></li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">When I pass one dataset iterator to <code class="notranslate">fit</code> method, I get:</p>
<blockquote>
<p dir="auto">Please provide data as a list or tuple of 2 elements - input and target pair. Received Tensor("IteratorGetNext_4:0", shape=(2, ?), dtype=float32)</p>
</blockquote>
<p dir="auto">When I pass two iterators I get the error:</p>
<blockquote>
<p dir="auto">ValueError: You passed a dataset or dataset iterator (<tensorflow.python.data.ops.iterator_ops.Iterator object at 0x000001FEABE88748>) as input <code class="notranslate">x</code> to your model. In that case, you should not specify a target (<code class="notranslate">y</code>) argument, since the dataset or dataset iterator generates both input data and target data. Received: <tensorflow.python.data.ops.iterator_ops.Iterator object at 0x000001FEABE88748></p>
</blockquote>
<p dir="auto">When I create a new dataset after zipping the original x and y data set and pass that to <code class="notranslate">fit </code>I get the error described in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="331304024" data-permission-text="Title is private" data-url="https://github.com/tensorflow/tensorflow/issues/19912" data-hovercard-type="issue" data-hovercard-url="/tensorflow/tensorflow/issues/19912/hovercard" href="https://github.com/tensorflow/tensorflow/issues/19912">#19912</a></p>
<p dir="auto">According to 1.9-rc0 method release notes iterators should be usable with keras training methods. Please provide a solution or provide clarification in the documentation.</p>
<h3 dir="auto">Source code / logs</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="dataset= tf.contrib.data.make_csv_dataset(file_name,48,select_columns= ['Load_residential_multi_0','Load_residential_multi_1'],shuffle=False)
dataset = dataset.map(lambda x: tf.stack(list(x.values())))
get_iterator = dataset.make_one_shot_iterator()
get_batch = get_iterator.get_next()
#Building and training a single layer model using Keras (Available within TensorFlow)
model = Sequential()
#Input Layer
model.add(InputLayer(input_shape=(48,),name='InputLayer'))#,input_tensor =dataset
#model.add(BatchNormalization(axis=1)) #Normalizing values
#Layer1
model.add(Dense(units=5,activation='relu',name='FeedForward1')) #Add a feed forward layer
#Layer2
model.add(Dense(units=5,activation='relu',name='FeedForward2')) #Add a feed forward layer
#Output layer
model.add(Dense(units=48,name='OutputLayer'))
#Specify los function and optimizer
model.compile(loss='mse',optimizer='adam',metrics=['mae'])
#Summarize model
model.summary()
#Train the model
model.fit(get_iterator,steps_per_epoch=2,batch_size=2,epochs=2,shuffle =True,verbose=1)
#model.fit(get_iterator,get_iterator,steps_per_epoch=2,batch_size=2,epochs=2,shuffle =True,verbose=1)"><pre class="notranslate"><code class="notranslate">dataset= tf.contrib.data.make_csv_dataset(file_name,48,select_columns= ['Load_residential_multi_0','Load_residential_multi_1'],shuffle=False)
dataset = dataset.map(lambda x: tf.stack(list(x.values())))
get_iterator = dataset.make_one_shot_iterator()
get_batch = get_iterator.get_next()
#Building and training a single layer model using Keras (Available within TensorFlow)
model = Sequential()
#Input Layer
model.add(InputLayer(input_shape=(48,),name='InputLayer'))#,input_tensor =dataset
#model.add(BatchNormalization(axis=1)) #Normalizing values
#Layer1
model.add(Dense(units=5,activation='relu',name='FeedForward1')) #Add a feed forward layer
#Layer2
model.add(Dense(units=5,activation='relu',name='FeedForward2')) #Add a feed forward layer
#Output layer
model.add(Dense(units=48,name='OutputLayer'))
#Specify los function and optimizer
model.compile(loss='mse',optimizer='adam',metrics=['mae'])
#Summarize model
model.summary()
#Train the model
model.fit(get_iterator,steps_per_epoch=2,batch_size=2,epochs=2,shuffle =True,verbose=1)
#model.fit(get_iterator,get_iterator,steps_per_epoch=2,batch_size=2,epochs=2,shuffle =True,verbose=1)
</code></pre></div> | <p dir="auto">Hi,</p>
<p dir="auto">I ran into this performance issue while trying to upgrade tensorflow from version 0.12.1 to 1.X.</p>
<p dir="auto">We ran a network with large embedding lookup tables:</p>
<ul dir="auto">
<li>100K X 32 (for example, word embedding - with 100K unique words)</li>
<li>300K X 128 (for example, categorical feature with cardinality of 300K unique items)</li>
</ul>
<p dir="auto">After upgrading TF version to 1.0.1, GPU usage dropped in from 60% to 30%.<br>
Training time went up in 50%-200% (depends on how big is the embedding lookup table).</p>
<p dir="auto">This is the commit that caused the performance degradation:<br>
<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/tensorflow/tensorflow/commit/f9f56f9dc7fe41ef1128290a77ac88e889ea5229/hovercard" href="https://github.com/tensorflow/tensorflow/commit/f9f56f9dc7fe41ef1128290a77ac88e889ea5229"><tt>f9f56f9</tt></a></p>
<p dir="auto">The handling of unique indexes is very slow and does not run in parallel with others operations.<br>
Please note the big unique blocks in the middle.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/8734262/26542969/ab0f3740-4464-11e7-9dcb-f3ccd58dfc8a.png"><img src="https://cloud.githubusercontent.com/assets/8734262/26542969/ab0f3740-4464-11e7-9dcb-f3ccd58dfc8a.png" alt="trace_unique" style="max-width: 100%;"></a></p>
<p dir="auto">Here is a work around (not handling unique indexes ):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class MyOptimizer(tf.train.AdamOptimizer):
def __init__(self, learning_rate=0.001, beta1=0.9, beta2=0.999, epsilon=1e-8,
use_locking=False, name="Adam"):
super(MyOptimizer,self).__init__(learning_rate,beta1, beta2, epsilon, use_locking,name)
def _apply_sparse_duplicate_indices(self, grad, var):
return self._apply_sparse(grad, var)"><pre class="notranslate"><code class="notranslate">class MyOptimizer(tf.train.AdamOptimizer):
def __init__(self, learning_rate=0.001, beta1=0.9, beta2=0.999, epsilon=1e-8,
use_locking=False, name="Adam"):
super(MyOptimizer,self).__init__(learning_rate,beta1, beta2, epsilon, use_locking,name)
def _apply_sparse_duplicate_indices(self, grad, var):
return self._apply_sparse(grad, var)
</code></pre></div>
<p dir="auto">Thanks,<br>
Erez</p> | 0 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18363.815]
PowerToys version: v0.17.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Settings"><pre class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18363.815]
PowerToys version: v0.17.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Settings
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Install a previous version (I had v0.16.1)<br>
Enable "Always run as administrator"<br>
Update PowerToys</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">In version 0.16.1 my PC would boot and PowerToys would load in the background</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Every time I boot my PC I get a UAC promt asking me if I'll grant PowerToys admin privileges</p> | <p dir="auto">When PowerToys is started on windows startup an uac dialog is popping up.<br>
I checked the wiki (<a href="https://github.com/microsoft/PowerToys/wiki/Release-check-list">https://github.com/microsoft/PowerToys/wiki/Release-check-list</a>) this should not be the case.<br>
UAC level on my machine is default.<br>
PowerToys is running as admin.<br>
Always run as admin is on.</p>
<p dir="auto">Windows build number: 10.0.18363.720<br>
PowerToys version: 0.16.1</p> | 1 |
<p dir="auto">Deno lint in 1.4.0 is flagging this piece of code unreachable.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" switch (token) {
case "auto":
return i + "width: auto;" + nl;
case "full":
return i + "width: 100%;" + nl;
case "screen":
return i + "width: 100vw;" + nl;
case "min-content":
return i + "width: -webkit-min-content;" + nl +
i + "width: -moz-min-content;" + nl +
i + "width: min-content;" + nl;
case "max-content":
return i + "width: -webkit-max-content;" + nl +
i + "width: -moz-max-content;" + nl +
i + "width: max-content;" + nl;
}
return i + "width: " + calcUnit(token) + ";" + nl;"><pre class="notranslate"><code class="notranslate"> switch (token) {
case "auto":
return i + "width: auto;" + nl;
case "full":
return i + "width: 100%;" + nl;
case "screen":
return i + "width: 100vw;" + nl;
case "min-content":
return i + "width: -webkit-min-content;" + nl +
i + "width: -moz-min-content;" + nl +
i + "width: min-content;" + nl;
case "max-content":
return i + "width: -webkit-max-content;" + nl +
i + "width: -moz-max-content;" + nl +
i + "width: max-content;" + nl;
}
return i + "width: " + calcUnit(token) + ";" + nl;
</code></pre></div>
<p dir="auto">Specifically the last line. As a switch without a default, it would fall through the switch to the bottom return statement.</p>
<p dir="auto">This get's flagged as part of <code class="notranslate">no-unreachable</code> rule.</p> | <p dir="auto">Previous related issues:</p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="647534313" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/6559" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/6559/hovercard" href="https://github.com/denoland/deno/issues/6559">#6559</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="705744529" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/7615" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/7615/hovercard" href="https://github.com/denoland/deno/issues/7615">#7615</a> (marked as duplicate of 6559)</li>
</ul>
<p dir="auto">These seem to be considered resolved via the <code class="notranslate">-j</code> flag implemented by <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="833904902" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/9815" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/9815/hovercard" href="https://github.com/denoland/deno/pull/9815">#9815</a>.</p>
<p dir="auto"><code class="notranslate">-j</code> is definitely a welcome improvement. However, it's only enabling separate test files to run parallel. I believe instead the expectation is that parallelism be supported <em>within the same file</em>. In any case, I would like to request this feature.</p>
<p dir="auto">For example:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// test/blah.ts
Deno.test("foo", async () => {
console.log("start foo");
await new Promise((resolve) => setTimeout(resolve, 1000));
console.log("end foo");
});
Deno.test("bar", async () => {
console.log("start bar");
await new Promise((resolve) => setTimeout(resolve, 1000));
console.log("end bar");
});"><pre class="notranslate"><span class="pl-c">// test/blah.ts</span>
<span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">"foo"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"start foo"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-smi">Promise</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-en">setTimeout</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-c1">1000</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"end foo"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">"bar"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"start bar"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-smi">Promise</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-en">setTimeout</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-c1">1000</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"end bar"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Running with <code class="notranslate">-j4</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ deno test -j4 test/blah.test.ts
running 2 tests from file:///home/voltrevo/workspaces/ethf/aggregator/test/blah.test.ts
start foo
end foo
test foo ... ok (1008ms)
start bar
end bar
test bar ... ok (1006ms)
test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out (2031ms)"><pre class="notranslate"><code class="notranslate">$ deno test -j4 test/blah.test.ts
running 2 tests from file:///home/voltrevo/workspaces/ethf/aggregator/test/blah.test.ts
start foo
end foo
test foo ... ok (1008ms)
start bar
end bar
test bar ... ok (1006ms)
test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out (2031ms)
</code></pre></div>
<p dir="auto">If parallelism was enabled between these tests, we should expect output more like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="running 2 tests from file:///home/voltrevo/workspaces/ethf/aggregator/test/blah.test.ts
start foo
start bar
end foo
test foo ... ok (1008ms)
end bar
test bar ... ok (1006ms)
test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out (1031ms)"><pre class="notranslate"><code class="notranslate">running 2 tests from file:///home/voltrevo/workspaces/ethf/aggregator/test/blah.test.ts
start foo
start bar
end foo
test foo ... ok (1008ms)
end bar
test bar ... ok (1006ms)
test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out (1031ms)
</code></pre></div>
<p dir="auto">(Implementing this might be considered a breaking change, requiring a new flag, perhaps <code class="notranslate">-jj</code>.)</p>
<p dir="auto">Can you confirm that this kind of parallelism is not yet supported or advise how to enable it?</p>
<p dir="auto">If it's not supported, are there any intentions to implement this?</p>
<p dir="auto">(It's also possible to enable this kind of concurrency for synchronous tests, by running a first pass to identify test names and then running separate processes with different filters. Can this also be considered?)</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="var z = () => {};
new z;"><pre class="notranslate"><code class="notranslate">var z = () => {};
new z;
</code></pre></div>
<p dir="auto">This code should throw per spec, but results in creating instance of z.function.</p> | <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let hello = () => "Yo!";
let greet = new hello();"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-en">hello</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-s">"Yo!"</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">greet</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-en">hello</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">^ must throw <code class="notranslate">TypeError: hello is not a constructor</code> but it does not. <a href="http://6to5.org/repl/#?experimental=true&playground=true&evaluate=true&loose=false&code=let%20hello%20%3D%20%28%29%20%3D%3E%20%22Yo!%22%3B%0A%0Alet%20greet%20%3D%20new%20hello%28%29%3B%0A" rel="nofollow">Same code</a></p> | 1 |
<p dir="auto">I'm trying to upgrade from legacy version 2.0.3 -> <code class="notranslate">Sharding-JDBC 4.0.0-RC1</code>, here I have many compatibility issue, such as:</p>
<ul dir="auto">
<li>FORCE INDEX will cause BAD SQL.</li>
<li>LIMIT NOT WORKING with sum etc.</li>
</ul>
<p dir="auto">so I am wondering how much SQL test case is included in this project?</p> | <p dir="auto">version: sharding proxy 5.0.0</p>
<p dir="auto">yml:</p>
<p dir="auto">schemaName: sharding_db</p>
<p dir="auto">dataSourceCommon:<br>
username: root<br>
password: 123456<br>
connectionTimeoutMilliseconds: 30000<br>
idleTimeoutMilliseconds: 60000<br>
maxLifetimeMilliseconds: 1800000<br>
maxPoolSize: 50<br>
minPoolSize: 1<br>
maintenanceIntervalMilliseconds: 30000</p>
<p dir="auto">dataSources:<br>
ds1:<br>
url: jdbc:mysql://192.168.255.115/testdb1?serverTimezone=UTC&useSSL=false&characterEncoding=utf8<br>
ds1_slave:<br>
url: jdbc:mysql://192.168.255.116/testdb1?serverTimezone=UTC&useSSL=false&characterEncoding=utf8<br>
ds2:<br>
url: jdbc:mysql://192.168.255.115/testdb2?serverTimezone=UTC&useSSL=false&characterEncoding=utf8<br>
ds2_slave:<br>
url: jdbc:mysql://192.168.255.116/testdb2?serverTimezone=UTC&useSSL=false&characterEncoding=utf8</p>
<p dir="auto">rules:</p>
<ul dir="auto">
<li>
<p dir="auto">!SHARDING<br>
tables:<br>
t_order:<br>
actualDataNodes: ms_ds${1..2}.t_order${1..2}<br>
databaseStrategy:<br>
standard:<br>
shardingColumn: uid<br>
shardingAlgorithmName: database_inline<br>
tableStrategy:<br>
standard:<br>
shardingColumn: id<br>
shardingAlgorithmName: t_order_inline<br>
keyGenerateStrategy:<br>
column: id<br>
keyGeneratorName: snowflake<br>
bindingTables:</p>
<ul dir="auto">
<li>t_order<br>
broadcastTables:</li>
<li>t_user</li>
<li>t_org<br>
defaultDatabaseStrategy:<br>
none:<br>
defaultTableStrategy:<br>
none:</li>
</ul>
<p dir="auto">shardingAlgorithms:<br>
database_inline:<br>
type: INLINE<br>
props:<br>
algorithm-expression: ms_ds${uid % 2+1}<br>
t_order_inline:<br>
type: INLINE<br>
props:<br>
algorithm-expression: t_order${order_id % 2+1}</p>
<p dir="auto">keyGenerators:<br>
snowflake:<br>
type: SNOWFLAKE<br>
props:<br>
worker-id: 123</p>
</li>
<li>
<p dir="auto">!REPLICA_QUERY<br>
dataSources:<br>
ms_ds1:<br>
primaryDataSourceName: ds1<br>
replicaDataSourceNames:<br>
- ds1_slave<br>
loadBalancerName: ROUND_ROBIN<br>
ms_ds2:<br>
primaryDataSourceName: ds2<br>
replicaDataSourceNames:<br>
- ds2_slave<br>
loadBalancerName: ROUND_ROBIN</p>
</li>
</ul>
<p dir="auto">##############################################<br>
*** when I try to connect the proxy db it misreport:<br>
10002 _ 2Unknown exception [Can not route tables for '[ENGINES]', please make sure the tables are in same schema.]</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/64132316/106251017-6ae0fc00-624f-11eb-8acc-32972478eae0.png"><img src="https://user-images.githubusercontent.com/64132316/106251017-6ae0fc00-624f-11eb-8acc-32972478eae0.png" alt="image" style="max-width: 100%;"></a></p> | 0 |
<ul dir="auto">
<li>Electron version: 1.2.5</li>
<li>Operating system: Windows 10</li>
</ul>
<p dir="auto">My application has a custom "res://" protocol. It appears to register correctly (no errors or anything) but as you can see from the picture I'm getting the error <strong>net::ERR_UNKNOWN_URL_SCHEME</strong>. This is working in version 1.2.4.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4183007/16391832/d5fa3c80-3c76-11e6-9f7a-c7d746149f25.png"><img src="https://cloud.githubusercontent.com/assets/4183007/16391832/d5fa3c80-3c76-11e6-9f7a-c7d746149f25.png" alt="image" style="max-width: 100%;"></a></p> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong><br>
9.1.0</li>
<li><strong>Operating System:</strong><br>
Win10 x64</li>
<li><strong>Last Known Working Electron version:</strong><br>
8.4.0</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Redux DevTools should find the store, which exists.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Redux tab is added to Chome devtools, but clicking on the tab displays the message <code class="notranslate">No store found. Make sure to follow the instructions.</code>. Running the exact same minimal app in Electron 8.4.0 does show the store.</p>
<p dir="auto">This has been mentioned at electron-devtools-installer <a href="https://github.com/MarshallOfSound/electron-devtools-installer/issues/130" data-hovercard-type="issue" data-hovercard-url="/MarshallOfSound/electron-devtools-installer/issues/130/hovercard">here</a> and now is indicated as an Electron issue.</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">electron package.json</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"name": "electron_3",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"install": "electron-rebuild",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^9.1.0",
"electron-devtools-installer": "^3.0.0"
}
}"><pre class="notranslate"><code class="notranslate">{
"name": "electron_3",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start": "electron .",
"install": "electron-rebuild",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^9.1.0",
"electron-devtools-installer": "^3.0.0"
}
}
</code></pre></div>
<p dir="auto">Ng package.json</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"name": "test",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.11",
"@angular/common": "~9.1.11",
"@angular/compiler": "~9.1.11",
"@angular/core": "~9.1.11",
"@angular/forms": "~9.1.11",
"@angular/platform-browser": "~9.1.11",
"@angular/platform-browser-dynamic": "~9.1.11",
"@angular/router": "~9.1.11",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2",
"ngx-electron": "^2.2.0",
"@ngrx/effects": "^9.2.0",
"@ngrx/store": "^9.2.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.8",
"@angular/cli": "~9.1.8",
"@angular/compiler-cli": "~9.1.11",
"@types/node": "^12.11.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.8.3",
"@ngrx/schematics": "^9.2.0",
"@ngrx/store-devtools": "^9.2.0"
}
}"><pre class="notranslate"><code class="notranslate">{
"name": "test",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.11",
"@angular/common": "~9.1.11",
"@angular/compiler": "~9.1.11",
"@angular/core": "~9.1.11",
"@angular/forms": "~9.1.11",
"@angular/platform-browser": "~9.1.11",
"@angular/platform-browser-dynamic": "~9.1.11",
"@angular/router": "~9.1.11",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2",
"ngx-electron": "^2.2.0",
"@ngrx/effects": "^9.2.0",
"@ngrx/store": "^9.2.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.8",
"@angular/cli": "~9.1.8",
"@angular/compiler-cli": "~9.1.11",
"@types/node": "^12.11.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "^5.1.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.8.3",
"@ngrx/schematics": "^9.2.0",
"@ngrx/store-devtools": "^9.2.0"
}
}
</code></pre></div>
<p dir="auto">Create a minimal store in Ng project. Then open Electron app. In Electron 8.4.0 you'll see the Store interface in the Redux tab in DevTools, in Electron 9.x you'll see the above message. see pics below.</p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><strong>Electron 8.4.0</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/67035258/87865177-da804100-c926-11ea-9f9f-4d90119fc29c.png"><img src="https://user-images.githubusercontent.com/67035258/87865177-da804100-c926-11ea-9f9f-4d90119fc29c.png" alt="redux_8 4 0" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Electron 9.1.0</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/67035258/87865132-30a0b480-c926-11ea-9411-efecfb979699.png"><img src="https://user-images.githubusercontent.com/67035258/87865132-30a0b480-c926-11ea-9411-efecfb979699.png" alt="redux_9 1 0" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">After following the directions in the guide, I am unable to hit breakpoints in Code for the React application. I've found no way, using Next 8, to get source maps emitted, and I think that is likely related. As it stands when I launch Chrome from Code, nothing happens. Also when launching from Code, you don't get all of your Chrome plugins, so I have tried using an attach process and starting Chrome with CLI parameters for debugging, and that does not work either.</p>
<p dir="auto">Any input would be appreciated - I think the docs need to be updated to better reflect the complete set of requirements around debugging.</p> | <p dir="auto">Hi Kenneth from VS Code here. We are getting reports that Script debugging no longer works in VS Code, after our users have upgraded to <code class="notranslate">Next.js 6.0+</code>. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="323916501" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode-recipes/issues/103" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode-recipes/issues/103/hovercard" href="https://github.com/microsoft/vscode-recipes/issues/103">microsoft/vscode-recipes#103</a></p>
<p dir="auto">I just validated this myself with both VS Code and Chrome DevTools, and the issue seems to be that app components no longer are getting exposed by the debugger, which means that Chrome DevTools doesn't list the files under Sources, and VS Code can't map the loaded scripts to the files open inside VS Code.</p>
<p dir="auto">I'm wondering if internals of next.js have changed so you load app scripts in a different way in relation to the main Node process which debuggers attaches to after next have been started with <code class="notranslate">next --inspect</code>?</p>
<p dir="auto"><strong>Demo app:</strong><br>
<a href="https://github.com/now-examples/nextgram">https://github.com/now-examples/nextgram</a></p>
<p dir="auto"><strong>Chrome DevTools:</strong><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/173559/41174876-28ea1932-6b10-11e8-89bb-50c061647aac.png"><img width="974" alt="screen shot 2018-06-08 at 11 31 49 am" src="https://user-images.githubusercontent.com/173559/41174876-28ea1932-6b10-11e8-89bb-50c061647aac.png" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>VS Code</strong><br>
Loaded script observed by our debugger:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=".scripts
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/code-frame/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/caching.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/config-chain.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/config-descriptors.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/files/configuration.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/files/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/files/plugins.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/full.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/helpers/config-api.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/helpers/environment.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/item.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/partial.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/option-assertions.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/options.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/plugins.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/removed.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/parse.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/tools/build-external-helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-ast-sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-ast.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-file-sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-file.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/file/file.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/file/generate.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/normalize-file.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/normalize-opts.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/plugin-pass.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/util/missing-plugin-helper.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/babylon/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/buffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/base.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/classes.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/expressions.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/flow.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/jsx.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/methods.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/modules.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/statements.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/template-literals.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/types.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/typescript.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/node/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/node/parentheses.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/node/whitespace.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/printer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-function-name/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-get-function-arity/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-plugin-utils/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-split-export-declaration/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helpers/lib/helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helpers/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/ansi-styles/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/chalk/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/chalk/templates.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/supports-color/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/array/from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/get-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/is-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/json/stringify.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/define-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/entries.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/get-own-property-descriptor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/get-own-property-symbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/get-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/set-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/set.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/symbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/symbol/iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/arrayWithHoles.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/assertThisInitialized.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/asyncToGenerator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/classCallCheck.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/createClass.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/defineProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/interopRequireDefault.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/interopRequireWildcard.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/iterableToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/nonIterableRest.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/nonIterableSpread.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/objectSpread.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/slicedToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/toConsumableArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/typeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/array/from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/get-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/is-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/json/stringify.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/define-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/entries.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/get-own-property-descriptor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/get-own-property-symbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/get-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/set-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/set.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/symbol/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/symbol/iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_a-function.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_add-to-unscopables.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_an-instance.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_an-object.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-from-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-includes.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-methods.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-species-constructor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-species-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_classof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_cof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_collection-strong.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_collection-to-json.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_collection.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_core.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_create-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_ctx.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_defined.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_descriptors.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_dom-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_enum-bug-keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_enum-keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_export.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_fails.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_for-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_global.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_has.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_hide.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_html.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_ie8-dom-define.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_invoke.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iobject.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_is-array-iter.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_is-array.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_is-object.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-call.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-define.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-detect.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-step.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iterators.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_library.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_meta.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_microtask.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_new-promise-capability.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-dp.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-dps.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gopd.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gopn-ext.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gopn.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gops.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gpo.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-keys-internal.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-pie.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-sap.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-to-array.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_perform.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_promise-resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_property-desc.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_redefine-all.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_redefine.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-collection-from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-collection-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-proto.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-species.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-to-string-tag.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_shared-key.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_shared.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_species-constructor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_string-at.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_task.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-absolute-index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-integer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-iobject.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-length.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-object.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-primitive.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_uid.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_user-agent.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_validate-collection.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_wks-define.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_wks-ext.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_wks.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/core.get-iterator-method.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/core.get-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/core.is-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.array.from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.array.iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.define-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.get-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.set-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.to-string.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.set.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.string.iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.symbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.map.from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.map.of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.map.to-json.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.object.entries.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.promise.finally.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.promise.try.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.set.from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.set.of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.set.to-json.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.symbol.async-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.symbol.observable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/web.dom.iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime-module.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/regenerator/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/builder.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/formatters.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/literal.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/options.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/parse.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/populate.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/string.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/node_modules/babylon/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/context.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/hub.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/ancestry.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/comments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/context.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/conversion.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/evaluation.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/family.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/inference/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/inference/inferers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/introspection.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/lib/hoister.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/lib/virtual-types.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/modification.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/removal.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/replacement.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/scope/binding.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/scope/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/scope/lib/renamer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/visitors.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/babylon/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/globals/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/asserts/assertNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/asserts/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/builder.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/flow/createUnionTypeAnnotation.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/react/buildChildren.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/clone.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/cloneDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/cloneNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/addComment.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/addComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritInnerComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritLeadingComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritTrailingComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritsComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/removeComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/constants/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/constants/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/ensureBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toComputedKey.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toIdentifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toKeyAlias.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toSequenceExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toStatement.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/valueToNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/core.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/es2015.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/experimental.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/flow.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/jsx.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/misc.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/typescript.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/removeProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/traverse/traverse.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/traverse/traverseFast.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/utils/inherit.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/utils/shallowEqual.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/is.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isBinding.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isBlockScoped.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isImmutable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isLet.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isNodesEquivalent.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isReferenced.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isScope.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isSpecifierDefault.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isType.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isValidES3Identifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isValidIdentifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isVar.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/matchesPattern.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/react/isCompatTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/react/isReactComponent.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/validate.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/node_modules/to-fast-properties/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/acorn-dynamic-import/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/acorn-dynamic-import/lib/inject.js
โบ /Users/auchenberg/development/nextgram/node_modules/acorn-dynamic-import/node_modules/acorn/dist/acorn.js
โบ /Users/auchenberg/development/nextgram/node_modules/ansi-html/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ansi-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ansi-styles/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/arr-diff/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/braces.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/extglob.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/fill-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/fill-range/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-number/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/arr-diff/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/arr-flatten/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/arr-union/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/array-union/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/array-uniq/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/assign-symbols/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/async-each/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/async/dist/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/atob/node-atob.js
โบ /Users/auchenberg/development/nextgram/node_modules/balanced-match/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/any.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/bind.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/bluebird.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/call_get.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/cancel.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/catch_filter.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/context.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/debuggability.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/direct_resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/each.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/errors.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/es5.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/filter.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/finally.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/generators.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/join.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/method.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/nodeback.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/nodeify.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/promise_array.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/promisify.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/props.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/queue.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/race.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/reduce.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/schedule.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/settle.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/some.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/synchronous_inspection.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/thenables.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/timers.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/using.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/brace-expansion/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/braces/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/get.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/path.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/read.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/rm.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/write.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/entry-index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/memoization.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/fix-owner.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/hash-to-segments.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/move-file.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/tmp.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/y.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/verify.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/locales/en.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/ls.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/glob/common.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/glob/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/rimraf/rimraf.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/put.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/rm.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/verify.js
โบ /Users/auchenberg/development/nextgram/node_modules/cache-base/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cache-base/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/case-sensitive-paths-webpack-plugin/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chalk/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/lib/fsevents-handler.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/lib/nodefs-handler.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/braces.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/fill-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/glob-parent/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/is-extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/is-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chownr/chownr.js
โบ /Users/auchenberg/development/nextgram/node_modules/class-utils/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/class-utils/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/class-utils/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/co/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/collection-visit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-convert/conversions.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-convert/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-convert/route.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-name/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/commondir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/component-emitter/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/concat-map/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/concat-stream/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/convert-source-map/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/copy-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/core-util-is/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/cyclist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/decode-uri-component/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/depd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/depd/lib/compat/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/destroy/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/duplexify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ee-first/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/encodeurl/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/end-of-stream/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/AliasFieldPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/AliasPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/AppendPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ConcordExtensionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ConcordMainPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ConcordModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/DescriptionFilePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/DescriptionFileUtils.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/DirectoryExistsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/FileExistsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/FileKindPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/JoinRequestPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/MainFieldPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModuleAppendPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModuleKindPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModulesInHierachicDirectoriesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModulesInRootPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/NextPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/NodeJsInputFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ParsePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/Resolver.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ResolverFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ResultPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/SymlinkPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/SyncAsyncFileSystemDecorator.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/TryNextPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/UnsafeCachePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/UseFilePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/concord.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/createInnerCallback.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/forEachBail.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/getInnerRequest.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/getPaths.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/globToRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/errno/custom.js
โบ /Users/auchenberg/development/nextgram/node_modules/errno/errno.js
โบ /Users/auchenberg/development/nextgram/node_modules/error-stack-parser/error-stack-parser.js
โบ /Users/auchenberg/development/nextgram/node_modules/escape-html/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/escape-string-regexp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/ast.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/code.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/keyword.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/etag/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/expand-brackets/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/expand-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/extend-shallow/node_modules/is-extendable/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fast-deep-equal/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fast-json-stable-stringify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/camelize.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/camelizeStyleName.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/emptyFunction.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/emptyObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/hyphenate.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/hyphenateStyleName.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/invariant.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/memoizeStringOnly.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/warning.js
โบ /Users/auchenberg/development/nextgram/node_modules/filename-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/filesize/lib/filesize.js
โบ /Users/auchenberg/development/nextgram/node_modules/fill-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/find-cache-dir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/find-up/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/flush-write-stream/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/for-in/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/for-own/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fragment-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fresh/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/core/extractWebpackError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/core/formatErrors.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/core/transformErrors.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/formatters/defaultError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/formatters/eslintError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/formatters/moduleNotFound.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/friendly-errors-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/output.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/transformers/babelSyntax.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/transformers/esLintError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/transformers/moduleNotFound.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/utils/colors.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/utils/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/from2/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fs.realpath/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fs.realpath/old.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/fsevents.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/abbrev/abbrev.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/ansi-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/aproba/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker-base.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker-group.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker-stream.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/brace-expansion/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/code-point-at/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/console-control-strings/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/core-util-is/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/delegates/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/fs.realpath/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/fs.realpath/old.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/base-theme.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/error.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/has-color.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/plumbing.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/process.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/progress-bar.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/render-template.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/set-immediate.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/set-interval.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/spin.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/template-item.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/theme-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/themes.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/wide-truncate.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/has-unicode/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/inherits/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/is-fullwidth-code-point/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/isarray/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/minimatch/minimatch.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/node-pre-gyp/lib/node-pre-gyp.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/napi.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/nopt/lib/nopt.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/npmlog/log.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/number-is-nan/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/object-assign/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/os-homedir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/os-tmpdir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/osenv/osenv.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/process-nextick-args/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_duplex.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_passthrough.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_writable.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/BufferList.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/destroy.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/stream.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/rimraf/rimraf.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/safe-buffer/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/set-blocking/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/signal-exit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/signal-exit/signals.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/string-width/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/strip-ansi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/util-deprecate/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/wide-align/align.js
โบ /Users/auchenberg/development/nextgram/node_modules/get-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob-base/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob-parent/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob/common.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/fs.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/graceful-fs.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/legacy-streams.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/polyfills.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-ansi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-flag/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-value/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/node_modules/is-number/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/hoist-non-react-statics/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/http-errors/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/imurmurhash/imurmurhash.js
โบ /Users/auchenberg/development/nextgram/node_modules/inflight/inflight.js
โบ /Users/auchenberg/development/nextgram/node_modules/inherits/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/invariant/invariant.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-binary-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-buffer/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-descriptor/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-dotfile/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-equal-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-extendable/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-odd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-odd/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-path-cwd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-path-in-cwd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-path-inside/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-plain-object/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-plain-object/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-posix-bracket/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-primitive/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-windows/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/isarray/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/js-tokens/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/jsesc/jsesc.js
โบ /Users/auchenberg/development/nextgram/node_modules/json-schema-traverse/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/json5/lib/json5.js
โบ /Users/auchenberg/development/nextgram/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/loader-runner/lib/LoaderRunner.js
โบ /Users/auchenberg/development/nextgram/node_modules/loader-runner/lib/loadLoader.js
โบ /Users/auchenberg/development/nextgram/node_modules/locate-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_DataView.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Hash.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_ListCache.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Map.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_MapCache.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Set.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_SetCache.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Stack.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Symbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Uint8Array.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_WeakMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_addMapEntry.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_addSetEntry.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_apply.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayEach.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayFilter.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayIncludes.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayIncludesWith.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayLikeKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayPush.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayReduce.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arraySome.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_assignValue.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_assocIndexOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseAssign.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseAssignIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseAssignValue.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseClone.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseCreate.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseEach.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseFindIndex.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseFlatten.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseFor.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseForOwn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseGetAllKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseGetTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseHasIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIndexOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsArguments.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsEqual.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsEqualDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsMatch.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsNaN.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsNative.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsTypedArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIteratee.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseKeysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseMatches.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseMatchesProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseOrderBy.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_basePropertyDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseRepeat.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseRest.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseSetToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseSortBy.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseTimes.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseUnary.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseUniq.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseValues.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_castPath.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneArrayBuffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneBuffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneDataView.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneSymbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneTypedArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_compareAscending.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_compareMultiple.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copyArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copyObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copySymbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copySymbolsIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_coreJsData.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createAssigner.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createBaseEach.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createBaseFor.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_customDefaultsAssignIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_defineProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_equalArrays.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_equalByTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_equalObjects.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_freeGlobal.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getAllKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getAllKeysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getMapData.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getMatchData.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getNative.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getPrototype.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getRawTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getSymbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getSymbolsIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getValue.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hasPath.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_initCloneArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_initCloneByTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_initCloneObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isFlattenable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isIndex.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isIterateeCall.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isKey.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isKeyable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isMasked.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isPrototype.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isStrictComparable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_matchesStrictComparable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_memoizeCapped.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nativeCreate.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nativeKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nativeKeysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nodeUtil.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_objectToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_overArg.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_overRest.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_root.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setCacheAdd.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setCacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_shortOut.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_strictIndexOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stringToPath.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_toKey.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_toSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/assignInWith.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/clone.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/constant.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/defaults.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/eq.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/get.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/hasIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/identity.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/includes.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isArguments.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isArrayLike.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isBuffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isFunction.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isInteger.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isLength.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isObjectLike.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isPlainObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isSymbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isTypedArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/keysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/lodash.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/memoize.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/noop.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/property.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/repeat.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/sortBy.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/stubArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/stubFalse.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toFinite.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toInteger.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toNumber.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/uniq.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/values.js
โบ /Users/auchenberg/development/nextgram/node_modules/lru-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/make-dir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/make-dir/node_modules/pify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/map-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/map-visit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/math-random/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/memory-fs/lib/MemoryFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/memory-fs/lib/join.js
โบ /Users/auchenberg/development/nextgram/node_modules/memory-fs/lib/normalize.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/chars.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/expand.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/mime/mime.js
โบ /Users/auchenberg/development/nextgram/node_modules/minimatch/minimatch.js
โบ /Users/auchenberg/development/nextgram/node_modules/minimist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mississippi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mixin-deep/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mixin-deep/node_modules/is-extendable/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mkdirp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/moment/moment.js
โบ /Users/auchenberg/development/nextgram/node_modules/ms/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/node_modules/arr-diff/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/neo-async/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/bin/next-dev
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/client/source-map-support.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/EventEmitter.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/asset.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/constants.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/dynamic.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/error-debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/head.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/p-queue.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/router/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/router/router.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/router/with-router.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/runtime-config.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/shallow-equals.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/side-effect.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/babel/preset.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/build-manifest-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/dynamic-chunks-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/nextjs-ssr-import.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/pages-manifest-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/pages-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/unlink-file-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/webpack.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/webpack/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/config.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/hot-reloader.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/is-async-supported.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/path-match.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/promisify.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/source-map-support.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/on-demand-entry-handler.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/render.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/require.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/router.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/del/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/glob/common.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/glob/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/globby/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/globby/node_modules/pify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/pify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/node-libs-browser/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/normalize-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-assign/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-copy/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-copy/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-visit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-visit/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object.omit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object.pick/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object.pick/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/on-finished/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/once/once.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-limit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-locate/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-map/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-try/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/parallel-transform/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/parse-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pascalcase/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-dirname/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-exists/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-is-absolute/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-is-inside/lib/path-is-inside.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-to-regexp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pinkie-promise/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pkg-dir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/posix-character-classes/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/preserve/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/process-nextick-args/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/promise-inflight/inflight.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/checkPropTypes.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/factoryWithTypeCheckers.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/lib/ReactPropTypesSecret.js
โบ /Users/auchenberg/development/nextgram/node_modules/prr/prr.js
โบ /Users/auchenberg/development/nextgram/node_modules/pseudomap/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/pump/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pumpify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/randomatic/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/randomatic/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/randomatic/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/range-parser/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-dom/cjs/react-dom-server.node.development.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-dom/server.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-dom/server.node.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-hot-loader/babel.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-hot-loader/dist/babel.development.js
โบ /Users/auchenberg/development/nextgram/node_modules/react/cjs/react.development.js
โบ /Users/auchenberg/development/nextgram/node_modules/react/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_duplex.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_passthrough.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_writable.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/internal/streams/BufferList.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/internal/streams/destroy.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/internal/streams/stream.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/node_modules/isarray/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/readdirp/readdirp.js
โบ /Users/auchenberg/development/nextgram/node_modules/regex-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/regex-not/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/registry-url/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/remove-trailing-separator/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/repeat-element/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/repeat-string/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/caller.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/core.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/node-modules-paths.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/positions.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/sets.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/types.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/rimraf/rimraf.js
โบ /Users/auchenberg/development/nextgram/node_modules/safe-buffer/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/safe-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/ValidationError.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/cjs.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/validateOptions.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/_formatLimit.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/_util.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/deepProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/deepRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/dynamicDefaults.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/formatMaximum.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/formatMinimum.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/instanceof.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/patternRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/prohibited.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/range.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/regexp.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/select.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/switch.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/typeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/uniqueItemProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/ajv.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/error_classes.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/formats.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/rules.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/schema_obj.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/ucs2length.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/data.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limit.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limitItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limitLength.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limitProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/allOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/anyOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/comment.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/const.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/contains.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/custom.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/dependencies.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/enum.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/format.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/if.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/items.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/multipleOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/not.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/oneOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/pattern.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/properties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/propertyNames.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/ref.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/required.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/uniqueItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/validate.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/keyword.js
โบ /Users/auchenberg/development/nextgram/node_modules/semver/semver.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/statuses/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/serialize-javascript/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/set-immediate-shim/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/set-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/set-value/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/setprototypeof/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-util/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/compiler.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/parser.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/position.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/CodeNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/MappingsContext.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/SingleLineNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/SourceListMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/SourceNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/fromStringWithSourceMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-resolve/lib/decode-uri-component.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-resolve/lib/resolve-url.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-resolve/lib/source-map-resolve-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-url/source-map-url.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/split-string/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ssri/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/stackframe/stackframe.js
โบ /Users/auchenberg/development/nextgram/node_modules/static-extend/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/static-extend/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/statuses/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/stream-each/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/stream-shift/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/string-length/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/strip-ansi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/supports-color/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/tapable/lib/Tapable.js
โบ /Users/auchenberg/development/nextgram/node_modules/through2/through2.js
โบ /Users/auchenberg/development/nextgram/node_modules/time-stamp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-object-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-regex-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-regex-range/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/touch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/trim-right/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/tools/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/cjs.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/uglify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/uglify/minify.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/uglify/versions.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/unfetch/dist/unfetch.js
- ../src/index.js (/Users/auchenberg/development/nextgram/node_modules/unfetch/src/index.js)
โบ /Users/auchenberg/development/nextgram/node_modules/union-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/union-value/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/union-value/node_modules/set-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unique-filename/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unique-slug/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/has-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/has-value/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/has-values/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/upath/build/code/upath.js
โบ /Users/auchenberg/development/nextgram/node_modules/update-check/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uri-js/dist/es5/uri.all.js
- ../../src/util.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/util.ts)
- ../../src/regexps-uri.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/regexps-uri.ts)
- ../../src/regexps-iri.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/regexps-iri.ts)
- ../../node_modules/punycode/punycode.es6.js (/Users/auchenberg/development/nextgram/node_modules/uri-js/node_modules/punycode/punycode.es6.js)
- ../../src/uri.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/uri.ts)
- ../../src/schemes/http.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/http.ts)
- ../../src/schemes/https.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/https.ts)
- ../../src/schemes/mailto.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/mailto.ts)
- ../../src/schemes/urn.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/urn.ts)
- ../../src/schemes/urn-uuid.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/urn-uuid.ts)
- ../../src/index.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/index.ts)
โบ /Users/auchenberg/development/nextgram/node_modules/urix/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/use/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/use/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/util-deprecate/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/lib/bytesToUuid.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/lib/rng.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/v1.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/v4.js
โบ /Users/auchenberg/development/nextgram/node_modules/watchpack/lib/DirectoryWatcher.js
โบ /Users/auchenberg/development/nextgram/node_modules/watchpack/lib/watcherManager.js
โบ /Users/auchenberg/development/nextgram/node_modules/watchpack/lib/watchpack.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/lib/GetFilenameFromUrl.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/lib/PathJoin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/lib/Shared.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/middleware.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-hot-middleware/helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-hot-middleware/middleware.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/CachedSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/ConcatSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/LineToLineMappedSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/OriginalSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/PrefixSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/RawSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/ReplaceSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/Source.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/SourceAndMapMixin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/SourceMapSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/APIPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/AsyncDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/AsyncDependencyToInitialChunkWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/BasicEvaluatedExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/CachePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/CaseSensitiveModulesWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Chunk.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ChunkRenderError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ChunkTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/CompatibilityPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Compilation.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Compiler.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ConstPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ContextModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ContextModuleFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DefinePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DependenciesBlockVariable.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Dependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DynamicEntryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EntryModuleNotFoundError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EntryOptionPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Entrypoint.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ErrorHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalDevToolModulePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalDevToolModuleTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalSourceMapDevToolPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ExternalModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ExternalModuleFactoryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ExternalsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FlagDependencyExportsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FlagDependencyUsagePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FunctionModulePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FunctionModuleTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/HotModuleReplacement.runtime.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/HotModuleReplacementPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/HotUpdateChunkTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/IgnorePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpHotUpdateChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpMainTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/LibraryTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/LoaderOptionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/LoaderTargetPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MainTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Module.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleBuildError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleDependencyError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleDependencyWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleFilenameHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleNotFoundError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleParseError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleReason.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiCompiler.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiEntryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiModuleFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiStats.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiWatching.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NamedModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NoEmitOnErrorsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NodeStuffPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NormalModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NormalModuleFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NullFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/OptionsApply.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/OptionsDefaulter.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Parser.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ParserHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RawModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RecordIdsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RequestShortener.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RequireJsStuffPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RuleSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SetVarMainTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SingleEntryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SizeFormatHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SourceMapDevToolModuleOptionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SourceMapDevToolPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Stats.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Template.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/TemplatedPathPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/UnsupportedFeatureWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/UseStrictPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WarnCaseSensitiveModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackOptionsApply.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackOptionsDefaulter.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackOptionsValidationError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/compareLocations.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDDefineDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireArrayDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireItemDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsRequireContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsRequireDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ConstDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependencyHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsId.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextElementDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CriticalDependencyWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/DepBlockHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyAcceptDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyAcceptImportDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyCompatibilityDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyDetectionParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportExpressionDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportHeaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportSpecifierDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyImportDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyImportSpecifierDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyModulesHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportEagerContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportEagerDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportLazyContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportLazyOnceContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportWeakContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportWeakDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LoaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LoaderPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LocalModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LocalModuleDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LocalModulesHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsId.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleHotAcceptDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleHotDeclineDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/MultiEntryDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/NullDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireContextDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireContextPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureItemDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsurePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireHeaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireIncludeDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireIncludePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveHeaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/SingleEntryDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/SystemPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/UnsupportedDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/WebpackMissingModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/getFunctionExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/formatLocation.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeEnvironmentPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeHotUpdateChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeMainTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeOutputFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeSourcePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeTargetPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeWatchFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/CommonsChunkPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/EnsureChunkConditionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/FlagIncludedChunksPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/MergeDuplicateChunksPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/OccurrenceOrderPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/RemoveEmptyChunksPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/RemoveParentModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/AssetsOverSizeLimitWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/NoAsyncChunksWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/SizeLimitsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/Queue.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/Semaphore.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/SortableSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/identifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/validateSchema.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/webpack.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/_formatLimit.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/_util.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/deepProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/deepRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/dynamicDefaults.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/formatMaximum.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/formatMinimum.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/if.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/instanceof.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/patternRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/prohibited.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/range.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/regexp.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/select.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/switch.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/typeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/uniqueItemProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/$data.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/ajv.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/_rules.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/error_classes.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/formats.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/rules.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/schema_obj.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/ucs2length.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limit.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limitItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limitLength.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limitProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/allOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/anyOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/const.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/contains.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/custom.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/dependencies.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/enum.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/format.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/items.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/multipleOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/not.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/oneOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/pattern.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/properties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/propertyNames.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/ref.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/required.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/uniqueItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/validate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/keyword.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/patternGroups.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/fast-deep-equal/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/schemas/ajv.absolutePath.js
โบ /Users/auchenberg/development/nextgram/node_modules/worker-farm/lib/farm.js
โบ /Users/auchenberg/development/nextgram/node_modules/worker-farm/lib/fork.js
โบ /Users/auchenberg/development/nextgram/node_modules/worker-farm/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/wrappy/wrappy.js
โบ /Users/auchenberg/development/nextgram/node_modules/write-file-webpack-plugin/dist/index.js
- ../src/index.js (/Users/auchenberg/development/nextgram/node_modules/write-file-webpack-plugin/src/index.js)
โบ /Users/auchenberg/development/nextgram/node_modules/xtend/immutable.js
โบ /Users/auchenberg/development/nextgram/node_modules/y18n/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/yallist/yallist.js
โบ VM1000
โบ VM1001
โบ VM1002
โบ VM1003
โบ VM1004
โบ VM1005
โบ VM1006
โบ VM1007
โบ VM1008
โบ VM1009
โบ VM1010
โบ VM1011
โบ VM1012
โบ VM1013
โบ VM1014
โบ VM1015
โบ VM1016
โบ VM1017
โบ VM1018
โบ VM1019
โบ VM1020
โบ VM1021
โบ VM1022
โบ VM1023
โบ VM1024
โบ VM1025
โบ VM1026
โบ VM1027
โบ VM1028
โบ VM1029
โบ VM1030
โบ VM1031
โบ VM1032
โบ VM1033
โบ VM1034
โบ VM1035
โบ VM1036
โบ VM1037
โบ VM1038
โบ VM1039
โบ VM1040
โบ VM1041
โบ VM1042
โบ VM1043
โบ VM1044
โบ VM1045
โบ VM1046
โบ VM1047
โบ VM1048
โบ VM1049
โบ VM1050
โบ VM1051
โบ VM1052
โบ VM1053
โบ VM1054
โบ VM1055
โบ VM1056
โบ VM1057
โบ VM1058
โบ VM1059
โบ VM1060
โบ VM1061
โบ VM1062
โบ VM1063
โบ VM1064
โบ VM1065
โบ VM1066
โบ VM1070
โบ VM1071
โบ VM1072
โบ VM1077
โบ VM1081
โบ VM1083
โบ VM1085
โบ VM1088
โบ VM1089
โบ VM1090
โบ VM1092
โบ VM1107
โบ VM1119
โบ VM1120
โบ VM1121
โบ VM1122
โบ VM1123
โบ VM1124
โบ VM1125
โบ VM1126
โบ VM1127
โบ VM1128
โบ VM1129
โบ VM1130
โบ VM1131
โบ VM1132
โบ VM1133
โบ VM1134
โบ VM1135
โบ VM1136
โบ VM1137
โบ VM1138
โบ VM1139
โบ VM1140
โบ VM1141
โบ VM1142
โบ VM1143
โบ VM1144
โบ VM1145
โบ VM1146
โบ VM1147
โบ VM1148
โบ VM1149
โบ VM1150
โบ VM1151
โบ VM1152
โบ VM1153
โบ VM1154
โบ VM1155
โบ VM1156
โบ VM1157
โบ VM1158
โบ VM1159
โบ VM1160
โบ VM1161
โบ VM1162
โบ VM1163
โบ VM1164
โบ VM1165
โบ VM1166
โบ VM1167
โบ VM1168
โบ VM1169
โบ VM1170
โบ VM1171
โบ VM1172
โบ VM1173
โบ VM1174
โบ VM1175
โบ VM1176
โบ VM1177
โบ VM1178
โบ VM1179
โบ VM1180
โบ VM1181
โบ VM1182
โบ VM1183
โบ VM1184
โบ VM1185
โบ VM1186
โบ VM1187
โบ VM1188
โบ VM1189
โบ VM1190
โบ VM1191
โบ VM1192
โบ VM1193
โบ VM1194
โบ VM1195
โบ VM1196
โบ VM1197
โบ VM1198
โบ VM1199
โบ VM1200
โบ VM1201
โบ VM1202
โบ VM1203
โบ VM1204
โบ VM1205
โบ VM1206
โบ VM1207
โบ VM1208
โบ VM1209
โบ VM1210
โบ VM1211
โบ VM1212
โบ VM1213
โบ VM1214
โบ VM1215
โบ VM1216
โบ VM1217
โบ VM1218
โบ VM1219
โบ VM1220
โบ VM1221
โบ VM1222
โบ VM1223
โบ VM1224
โบ VM1225
โบ VM1226
โบ VM1227
โบ VM1228
โบ VM1229
โบ VM1230
โบ VM1231
โบ VM1232
โบ VM1233
โบ VM1234
โบ VM1235
โบ VM1236
โบ VM1237
โบ VM1238
โบ VM1239
โบ VM1240
โบ VM1241
โบ VM1242
โบ VM1243
โบ VM1244
โบ VM1245
โบ VM1246
โบ VM1247
โบ VM1248
โบ VM1249
โบ VM1250
โบ VM1251
โบ VM1252
โบ VM1253
โบ VM1254
โบ VM1255
โบ VM1256
โบ VM1257
โบ VM1258
โบ VM1259
โบ VM1260
โบ VM1261
โบ VM1262
โบ VM1263
โบ VM1264
โบ VM1265
โบ VM1266
โบ VM1267
โบ VM1268
โบ VM1269
โบ VM1270
โบ VM1271
โบ VM1272
โบ VM1273
โบ VM1274
โบ VM1275
โบ VM1276
โบ VM1277
โบ VM1278
โบ VM1279
โบ VM1280
โบ VM1281
โบ VM1282
โบ VM1283
โบ VM1284
โบ VM1285
โบ VM1286
โบ VM1287
โบ VM1288
โบ VM1289
โบ VM1290
โบ VM1291
โบ VM1292
โบ VM1293
โบ VM1294
โบ VM1295
โบ VM1296
โบ VM1297
โบ VM1298
โบ VM1299
โบ VM1300
โบ VM1301
โบ VM1302
โบ VM1303
โบ VM1304
โบ VM1305
โบ VM1306
โบ VM1307
โบ VM1308
โบ VM1309
โบ VM1310
โบ VM1311
โบ VM1312
โบ VM1313
โบ VM1314
โบ VM1315
โบ VM1316
โบ VM1317
โบ VM1318
โบ VM1822
โบ VM1823
โบ VM1824
โบ VM1825
โบ VM1826
โบ VM1827
โบ VM1828
โบ VM1829
โบ VM1830
โบ VM1831
โบ VM1832
โบ VM1833
โบ VM1834
โบ VM250
โบ VM267
โบ VM268
โบ VM269
โบ VM270
โบ VM271
โบ VM272
โบ VM730
โบ VM731
โบ VM732
โบ VM733
โบ VM82
โบ VM820
โบ VM821
โบ VM822
โบ VM823
โบ VM824
โบ VM854
โบ VM855
โบ VM856
โบ VM857
โบ VM858
โบ VM859
โบ VM860
โบ VM861
โบ VM862
โบ VM863
โบ VM864
โบ VM865
โบ VM866
โบ VM867
โบ VM868
โบ VM869
โบ VM870
โบ VM871
โบ VM872
โบ VM873
โบ VM874
โบ VM875
โบ VM876
โบ VM877
โบ VM898
โบ VM899
โบ VM90
โบ VM918
โบ VM919
โบ VM920
โบ VM927
โบ VM928
โบ VM929
โบ VM930
โบ VM931
โบ VM932
โบ VM933
โบ VM934
โบ VM935
โบ VM936
โบ VM937
โบ VM938
โบ VM939
โบ VM940
โบ VM941
โบ VM942
โบ VM943
โบ VM944
โบ VM945
โบ VM946
โบ VM947
โบ VM948
โบ VM949
โบ VM950
โบ VM951
โบ VM952
โบ VM953
โบ VM954
โบ VM955
โบ VM956
โบ VM957
โบ VM958
โบ VM959
โบ VM960
โบ VM961
โบ VM962
โบ VM963
โบ VM964
โบ VM965
โบ VM966
โบ VM967
โบ VM968
โบ VM969
โบ VM970
โบ VM971
โบ VM972
โบ VM973
โบ VM974
โบ VM975
โบ VM976
โบ VM977
โบ VM978
โบ VM979
โบ VM980
โบ VM981
โบ VM982
โบ VM983
โบ VM984
โบ VM985
โบ VM986
โบ VM987
โบ VM988
โบ VM989
โบ VM990
โบ VM991
โบ VM992
โบ VM993
โบ VM994
โบ VM995
โบ VM996
โบ VM997
โบ VM998
โบ VM999
โบ _http_agent.js
โบ _http_client.js
โบ _http_common.js
โบ _http_incoming.js
โบ _http_outgoing.js
โบ _http_server.js
โบ _stream_duplex.js
โบ _stream_passthrough.js
โบ _stream_readable.js
โบ _stream_transform.js
โบ _stream_writable.js
โบ assert.js
โบ async_hooks.js
โบ bootstrap_node.js
โบ buffer.js
โบ child_process.js
โบ console.js
โบ constants.js
โบ crypto.js
โบ dgram.js
โบ dns.js
โบ evalmachine.<anonymous>
โบ events.js
โบ fs.js
โบ http.js
โบ internal/buffer.js
โบ internal/child_process.js
โบ internal/encoding.js
โบ internal/errors.js
โบ internal/freelist.js
โบ internal/fs.js
โบ internal/http.js
โบ internal/inspector_async_hook.js
โบ internal/linkedlist.js
โบ internal/loader/Loader.js
โบ internal/loader/ModuleJob.js
โบ internal/loader/ModuleMap.js
โบ internal/loader/ModuleRequest.js
โบ internal/loader/ModuleWrap.js
โบ internal/loader/search.js
โบ internal/module.js
โบ internal/net.js
โบ internal/os.js
โบ internal/process.js
โบ internal/process/next_tick.js
โบ internal/process/promises.js
โบ internal/process/stdio.js
โบ internal/process/warning.js
โบ internal/readline.js
โบ internal/safe_globals.js
โบ internal/socket_list.js
โบ internal/streams/BufferList.js
โบ internal/streams/destroy.js
โบ internal/streams/lazy_transform.js
โบ internal/streams/legacy.js
โบ internal/url.js
โบ internal/util.js
โบ internal/util/types.js
โบ module.js
โบ net.js
โบ os.js
โบ path.js
โบ perf_hooks.js
โบ querystring.js
โบ readline.js
โบ stream.js
โบ string_decoder.js
โบ timers.js
โบ tty.js
โบ url.js
โบ util.js
โบ vm.js"><pre class="notranslate"><code class="notranslate">.scripts
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/code-frame/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/caching.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/config-chain.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/config-descriptors.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/files/configuration.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/files/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/files/plugins.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/full.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/helpers/config-api.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/helpers/environment.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/item.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/partial.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/option-assertions.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/options.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/plugins.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/config/validation/removed.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/parse.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/tools/build-external-helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-ast-sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-ast.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-file-sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-file.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform-sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/file/file.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/file/generate.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/normalize-file.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/normalize-opts.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/plugin-pass.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/lib/transformation/util/missing-plugin-helper.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/babylon/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/core/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/buffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/base.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/classes.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/expressions.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/flow.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/jsx.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/methods.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/modules.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/statements.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/template-literals.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/types.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/generators/typescript.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/node/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/node/parentheses.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/node/whitespace.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/printer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/generator/lib/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-function-name/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-get-function-arity/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-plugin-utils/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helper-split-export-declaration/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helpers/lib/helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/helpers/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/ansi-styles/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/chalk/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/chalk/templates.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/highlight/node_modules/supports-color/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/array/from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/get-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/is-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/json/stringify.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/define-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/entries.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/get-own-property-descriptor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/get-own-property-symbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/get-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/object/set-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/set.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/symbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/core-js/symbol/iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/arrayWithHoles.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/assertThisInitialized.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/asyncToGenerator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/classCallCheck.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/createClass.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/defineProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/interopRequireDefault.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/interopRequireWildcard.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/iterableToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/nonIterableRest.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/nonIterableSpread.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/objectSpread.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/slicedToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/toConsumableArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/helpers/typeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/array/from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/get-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/is-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/json/stringify.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/define-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/entries.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/get-own-property-descriptor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/get-own-property-symbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/get-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/object/set-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/set.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/symbol/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/fn/symbol/iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_a-function.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_add-to-unscopables.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_an-instance.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_an-object.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-from-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-includes.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-methods.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-species-constructor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_array-species-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_classof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_cof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_collection-strong.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_collection-to-json.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_collection.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_core.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_create-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_ctx.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_defined.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_descriptors.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_dom-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_enum-bug-keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_enum-keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_export.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_fails.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_for-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_global.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_has.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_hide.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_html.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_ie8-dom-define.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_invoke.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iobject.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_is-array-iter.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_is-array.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_is-object.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-call.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-define.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-detect.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iter-step.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_iterators.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_library.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_meta.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_microtask.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_new-promise-capability.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-dp.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-dps.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gopd.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gopn-ext.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gopn.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gops.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-gpo.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-keys-internal.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-pie.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-sap.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_object-to-array.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_perform.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_promise-resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_property-desc.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_redefine-all.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_redefine.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-collection-from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-collection-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-proto.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-species.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_set-to-string-tag.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_shared-key.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_shared.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_species-constructor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_string-at.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_task.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-absolute-index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-integer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-iobject.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-length.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-object.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_to-primitive.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_uid.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_user-agent.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_validate-collection.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_wks-define.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_wks-ext.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/_wks.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/core.get-iterator-method.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/core.get-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/core.is-iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.array.from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.array.iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.map.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.assign.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.create.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.define-property.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.get-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.set-prototype-of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.object.to-string.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.set.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.string.iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es6.symbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.map.from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.map.of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.map.to-json.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.object.entries.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.promise.finally.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.promise.try.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.set.from.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.set.of.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.set.to-json.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.symbol.async-iterator.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/es7.symbol.observable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/core-js/library/modules/web.dom.iterable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime-module.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/runtime/regenerator/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/builder.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/formatters.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/literal.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/options.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/parse.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/populate.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/lib/string.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/template/node_modules/babylon/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/context.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/hub.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/ancestry.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/comments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/context.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/conversion.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/evaluation.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/family.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/inference/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/inference/inferers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/introspection.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/lib/hoister.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/lib/virtual-types.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/modification.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/removal.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/path/replacement.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/scope/binding.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/scope/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/scope/lib/renamer.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/lib/visitors.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/babylon/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/traverse/node_modules/globals/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/asserts/assertNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/asserts/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/builder.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/flow/createUnionTypeAnnotation.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/builders/react/buildChildren.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/clone.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/cloneDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/cloneNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/addComment.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/addComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritInnerComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritLeadingComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritTrailingComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/inheritsComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/comments/removeComments.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/constants/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/constants/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/ensureBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toComputedKey.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toIdentifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toKeyAlias.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toSequenceExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/toStatement.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/converters/valueToNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/core.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/es2015.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/experimental.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/flow.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/jsx.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/misc.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/typescript.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/definitions/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/removeProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/traverse/traverse.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/traverse/traverseFast.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/utils/inherit.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/utils/shallowEqual.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/generated/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/is.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isBinding.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isBlockScoped.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isImmutable.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isLet.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isNodesEquivalent.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isReferenced.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isScope.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isSpecifierDefault.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isType.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isValidES3Identifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isValidIdentifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/isVar.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/matchesPattern.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/react/isCompatTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/react/isReactComponent.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/lib/validators/validate.js
โบ /Users/auchenberg/development/nextgram/node_modules/@babel/types/node_modules/to-fast-properties/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/acorn-dynamic-import/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/acorn-dynamic-import/lib/inject.js
โบ /Users/auchenberg/development/nextgram/node_modules/acorn-dynamic-import/node_modules/acorn/dist/acorn.js
โบ /Users/auchenberg/development/nextgram/node_modules/ansi-html/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ansi-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ansi-styles/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/arr-diff/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/braces.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/braces/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/expand-brackets/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/extglob.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/extglob/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/fill-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/fill-range/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/is-number/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/anymatch/node_modules/micromatch/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/arr-diff/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/arr-flatten/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/arr-union/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/array-union/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/array-uniq/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/assign-symbols/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/async-each/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/async/dist/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/atob/node-atob.js
โบ /Users/auchenberg/development/nextgram/node_modules/balanced-match/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/base/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/any.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/bind.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/bluebird.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/call_get.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/cancel.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/catch_filter.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/context.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/debuggability.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/direct_resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/each.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/errors.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/es5.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/filter.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/finally.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/generators.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/join.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/method.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/nodeback.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/nodeify.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/promise_array.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/promisify.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/props.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/queue.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/race.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/reduce.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/schedule.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/settle.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/some.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/synchronous_inspection.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/thenables.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/timers.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/using.js
โบ /Users/auchenberg/development/nextgram/node_modules/bluebird/js/release/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/brace-expansion/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/braces/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/get.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/path.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/read.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/rm.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/content/write.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/entry-index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/memoization.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/fix-owner.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/hash-to-segments.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/move-file.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/tmp.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/util/y.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/lib/verify.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/locales/en.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/ls.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/glob/common.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/glob/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/node_modules/rimraf/rimraf.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/put.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/rm.js
โบ /Users/auchenberg/development/nextgram/node_modules/cacache/verify.js
โบ /Users/auchenberg/development/nextgram/node_modules/cache-base/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/cache-base/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/case-sensitive-paths-webpack-plugin/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chalk/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/lib/fsevents-handler.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/lib/nodefs-handler.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/braces.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/braces/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/fill-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/glob-parent/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/is-extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/is-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chokidar/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/chownr/chownr.js
โบ /Users/auchenberg/development/nextgram/node_modules/class-utils/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/class-utils/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/class-utils/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/co/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/collection-visit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-convert/conversions.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-convert/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-convert/route.js
โบ /Users/auchenberg/development/nextgram/node_modules/color-name/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/commondir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/component-emitter/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/concat-map/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/concat-stream/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/convert-source-map/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/copy-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/core-util-is/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/cyclist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/decode-uri-component/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/define-property/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/depd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/depd/lib/compat/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/destroy/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/duplexify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ee-first/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/encodeurl/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/end-of-stream/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/AliasFieldPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/AliasPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/AppendPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ConcordExtensionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ConcordMainPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ConcordModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/DescriptionFilePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/DescriptionFileUtils.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/DirectoryExistsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/FileExistsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/FileKindPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/JoinRequestPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/MainFieldPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModuleAppendPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModuleKindPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModulesInHierachicDirectoriesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ModulesInRootPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/NextPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/NodeJsInputFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ParsePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/Resolver.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ResolverFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/ResultPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/SymlinkPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/SyncAsyncFileSystemDecorator.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/TryNextPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/UnsafeCachePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/UseFilePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/concord.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/createInnerCallback.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/forEachBail.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/getInnerRequest.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/getPaths.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/globToRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/enhanced-resolve/lib/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/errno/custom.js
โบ /Users/auchenberg/development/nextgram/node_modules/errno/errno.js
โบ /Users/auchenberg/development/nextgram/node_modules/error-stack-parser/error-stack-parser.js
โบ /Users/auchenberg/development/nextgram/node_modules/escape-html/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/escape-string-regexp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/ast.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/code.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/keyword.js
โบ /Users/auchenberg/development/nextgram/node_modules/esutils/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/etag/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/expand-brackets/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/expand-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/extend-shallow/node_modules/is-extendable/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fast-deep-equal/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fast-json-stable-stringify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/camelize.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/camelizeStyleName.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/emptyFunction.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/emptyObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/hyphenate.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/hyphenateStyleName.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/invariant.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/memoizeStringOnly.js
โบ /Users/auchenberg/development/nextgram/node_modules/fbjs/lib/warning.js
โบ /Users/auchenberg/development/nextgram/node_modules/filename-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/filesize/lib/filesize.js
โบ /Users/auchenberg/development/nextgram/node_modules/fill-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/find-cache-dir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/find-up/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/flush-write-stream/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/for-in/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/for-own/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fragment-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fresh/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/core/extractWebpackError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/core/formatErrors.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/core/transformErrors.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/formatters/defaultError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/formatters/eslintError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/formatters/moduleNotFound.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/friendly-errors-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/output.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/transformers/babelSyntax.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/transformers/esLintError.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/transformers/moduleNotFound.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/utils/colors.js
โบ /Users/auchenberg/development/nextgram/node_modules/friendly-errors-webpack-plugin/src/utils/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/from2/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fs.realpath/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fs.realpath/old.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/fsevents.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/abbrev/abbrev.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/ansi-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/aproba/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker-base.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker-group.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker-stream.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/are-we-there-yet/tracker.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/brace-expansion/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/code-point-at/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/console-control-strings/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/core-util-is/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/delegates/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/fs.realpath/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/fs.realpath/old.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/base-theme.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/error.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/has-color.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/plumbing.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/process.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/progress-bar.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/render-template.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/set-immediate.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/set-interval.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/spin.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/template-item.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/theme-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/themes.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/gauge/wide-truncate.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/has-unicode/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/inherits/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/is-fullwidth-code-point/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/isarray/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/minimatch/minimatch.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/node-pre-gyp/lib/node-pre-gyp.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/node-pre-gyp/lib/util/napi.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/nopt/lib/nopt.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/npmlog/log.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/number-is-nan/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/object-assign/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/os-homedir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/os-tmpdir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/osenv/osenv.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/process-nextick-args/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_duplex.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_passthrough.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/_stream_writable.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/BufferList.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/destroy.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/lib/internal/streams/stream.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/readable-stream/readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/rimraf/rimraf.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/safe-buffer/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/set-blocking/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/signal-exit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/signal-exit/signals.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/string-width/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/strip-ansi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/util-deprecate/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/fsevents/node_modules/wide-align/align.js
โบ /Users/auchenberg/development/nextgram/node_modules/get-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob-base/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob-parent/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob/common.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/glob/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/fs.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/graceful-fs.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/legacy-streams.js
โบ /Users/auchenberg/development/nextgram/node_modules/graceful-fs/polyfills.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-ansi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-flag/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-value/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/node_modules/is-number/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/has-values/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/hoist-non-react-statics/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/http-errors/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/imurmurhash/imurmurhash.js
โบ /Users/auchenberg/development/nextgram/node_modules/inflight/inflight.js
โบ /Users/auchenberg/development/nextgram/node_modules/inherits/inherits.js
โบ /Users/auchenberg/development/nextgram/node_modules/invariant/invariant.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-binary-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-buffer/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-descriptor/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-dotfile/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-equal-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-extendable/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-extglob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-odd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-odd/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-path-cwd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-path-in-cwd/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-path-inside/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-plain-object/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-plain-object/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-posix-bracket/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-primitive/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/is-windows/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/isarray/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/js-tokens/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/jsesc/jsesc.js
โบ /Users/auchenberg/development/nextgram/node_modules/json-schema-traverse/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/json5/lib/json5.js
โบ /Users/auchenberg/development/nextgram/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/loader-runner/lib/LoaderRunner.js
โบ /Users/auchenberg/development/nextgram/node_modules/loader-runner/lib/loadLoader.js
โบ /Users/auchenberg/development/nextgram/node_modules/locate-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_DataView.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Hash.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_ListCache.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Map.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_MapCache.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Promise.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Set.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_SetCache.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Stack.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Symbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_Uint8Array.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_WeakMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_addMapEntry.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_addSetEntry.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_apply.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayEach.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayFilter.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayIncludes.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayIncludesWith.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayLikeKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayPush.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arrayReduce.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_arraySome.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_assignValue.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_assocIndexOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseAssign.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseAssignIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseAssignValue.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseClone.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseCreate.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseEach.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseFindIndex.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseFlatten.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseFor.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseForOwn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseGetAllKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseGetTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseHasIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIndexOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsArguments.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsEqual.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsEqualDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsMatch.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsNaN.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsNative.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIsTypedArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseIteratee.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseKeysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseMatches.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseMatchesProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseOrderBy.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_basePropertyDeep.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseRepeat.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseRest.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseSetToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseSortBy.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseTimes.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseUnary.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseUniq.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_baseValues.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_castPath.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneArrayBuffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneBuffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneDataView.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneSymbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_cloneTypedArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_compareAscending.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_compareMultiple.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copyArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copyObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copySymbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_copySymbolsIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_coreJsData.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createAssigner.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createBaseEach.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createBaseFor.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_createSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_customDefaultsAssignIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_defineProperty.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_equalArrays.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_equalByTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_equalObjects.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_freeGlobal.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getAllKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getAllKeysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getMapData.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getMatchData.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getNative.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getPrototype.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getRawTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getSymbols.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getSymbolsIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_getValue.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hasPath.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_hashSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_initCloneArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_initCloneByTag.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_initCloneObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isFlattenable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isIndex.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isIterateeCall.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isKey.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isKeyable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isMasked.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isPrototype.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_isStrictComparable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_listCacheSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapCacheSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_mapToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_matchesStrictComparable.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_memoizeCapped.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nativeCreate.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nativeKeys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nativeKeysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_nodeUtil.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_objectToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_overArg.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_overRest.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_root.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setCacheAdd.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setCacheHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setToArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_setToString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_shortOut.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackClear.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackDelete.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackGet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackHas.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stackSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_strictIndexOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_stringToPath.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_toKey.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/_toSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/assignInWith.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/clone.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/constant.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/defaults.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/eq.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/get.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/hasIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/identity.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/includes.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isArguments.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isArrayLike.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isBuffer.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isFunction.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isInteger.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isLength.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isObjectLike.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isPlainObject.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isRegExp.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isSymbol.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/isTypedArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/keys.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/keysIn.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/lodash.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/memoize.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/noop.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/property.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/repeat.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/sortBy.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/stubArray.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/stubFalse.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toFinite.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toInteger.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toNumber.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/toString.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/uniq.js
โบ /Users/auchenberg/development/nextgram/node_modules/lodash/values.js
โบ /Users/auchenberg/development/nextgram/node_modules/lru-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/make-dir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/make-dir/node_modules/pify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/map-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/map-visit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/math-random/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/memory-fs/lib/MemoryFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/memory-fs/lib/join.js
โบ /Users/auchenberg/development/nextgram/node_modules/memory-fs/lib/normalize.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/chars.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/expand.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/micromatch/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/mime/mime.js
โบ /Users/auchenberg/development/nextgram/node_modules/minimatch/minimatch.js
โบ /Users/auchenberg/development/nextgram/node_modules/minimist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mississippi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mixin-deep/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mixin-deep/node_modules/is-extendable/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/mkdirp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/moment/moment.js
โบ /Users/auchenberg/development/nextgram/node_modules/ms/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/compilers.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/parsers.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/node_modules/arr-diff/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/node_modules/array-unique/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/nanomatch/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/neo-async/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/bin/next-dev
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/client/source-map-support.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/EventEmitter.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/asset.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/constants.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/dynamic.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/error-debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/head.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/p-queue.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/router/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/router/router.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/router/with-router.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/runtime-config.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/shallow-equals.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/side-effect.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/babel/preset.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/build-manifest-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/dynamic-chunks-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/nextjs-ssr-import.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/pages-manifest-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/pages-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/plugins/unlink-file-plugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/webpack.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/build/webpack/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/config.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/hot-reloader.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/is-async-supported.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/path-match.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/promisify.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/lib/source-map-support.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/on-demand-entry-handler.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/render.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/require.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/router.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/dist/server/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/del/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/glob/common.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/glob/glob.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/glob/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/globby/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/globby/node_modules/pify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/next/node_modules/pify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/node-libs-browser/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/normalize-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-assign/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-copy/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-copy/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-visit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object-visit/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object.omit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object.pick/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/object.pick/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/on-finished/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/once/once.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-limit/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-locate/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-map/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/p-try/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/parallel-transform/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/parse-glob/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pascalcase/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-dirname/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-exists/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-is-absolute/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-is-inside/lib/path-is-inside.js
โบ /Users/auchenberg/development/nextgram/node_modules/path-to-regexp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pinkie-promise/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pkg-dir/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/posix-character-classes/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/preserve/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/process-nextick-args/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/promise-inflight/inflight.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/checkPropTypes.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/factoryWithTypeCheckers.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/prop-types/lib/ReactPropTypesSecret.js
โบ /Users/auchenberg/development/nextgram/node_modules/prr/prr.js
โบ /Users/auchenberg/development/nextgram/node_modules/pseudomap/map.js
โบ /Users/auchenberg/development/nextgram/node_modules/pump/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/pumpify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/randomatic/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/randomatic/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/randomatic/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/range-parser/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-dom/cjs/react-dom-server.node.development.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-dom/server.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-dom/server.node.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-hot-loader/babel.js
โบ /Users/auchenberg/development/nextgram/node_modules/react-hot-loader/dist/babel.development.js
โบ /Users/auchenberg/development/nextgram/node_modules/react/cjs/react.development.js
โบ /Users/auchenberg/development/nextgram/node_modules/react/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_duplex.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_passthrough.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/_stream_writable.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/internal/streams/BufferList.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/internal/streams/destroy.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/lib/internal/streams/stream.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/node_modules/isarray/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/readable.js
โบ /Users/auchenberg/development/nextgram/node_modules/readable-stream/transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/readdirp/readdirp.js
โบ /Users/auchenberg/development/nextgram/node_modules/regex-cache/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/regex-not/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/registry-url/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/remove-trailing-separator/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/repeat-element/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/repeat-string/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/caller.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/core.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/node-modules-paths.js
โบ /Users/auchenberg/development/nextgram/node_modules/resolve/lib/sync.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/positions.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/sets.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/types.js
โบ /Users/auchenberg/development/nextgram/node_modules/ret/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/rimraf/rimraf.js
โบ /Users/auchenberg/development/nextgram/node_modules/safe-buffer/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/safe-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/ValidationError.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/cjs.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/dist/validateOptions.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/_formatLimit.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/_util.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/deepProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/deepRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/dynamicDefaults.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/formatMaximum.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/formatMinimum.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/instanceof.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/patternRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/prohibited.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/range.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/regexp.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/select.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/switch.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/transform.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/typeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv-keywords/keywords/uniqueItemProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/ajv.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/error_classes.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/formats.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/rules.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/schema_obj.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/ucs2length.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/compile/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/data.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limit.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limitItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limitLength.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/_limitProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/allOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/anyOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/comment.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/const.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/contains.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/custom.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/dependencies.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/enum.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/format.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/if.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/items.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/multipleOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/not.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/oneOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/pattern.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/properties.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/propertyNames.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/ref.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/required.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/uniqueItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/dotjs/validate.js
โบ /Users/auchenberg/development/nextgram/node_modules/schema-utils/node_modules/ajv/lib/keyword.js
โบ /Users/auchenberg/development/nextgram/node_modules/semver/semver.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/debug/src/debug.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/debug/src/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/debug/src/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/send/node_modules/statuses/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/serialize-javascript/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/set-immediate-shim/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/set-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/set-value/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/setprototypeof/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/is-data-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/is-descriptor/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-node/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon-util/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/compiler.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/parser.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/position.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/lib/utils.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/snapdragon/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/CodeNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/MappingsContext.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/SingleLineNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/SourceListMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/SourceNode.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/fromStringWithSourceMap.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-list-map/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-resolve/lib/decode-uri-component.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-resolve/lib/resolve-url.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-resolve/lib/source-map-resolve-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map-url/source-map-url.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/split-string/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/ssri/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/stackframe/stackframe.js
โบ /Users/auchenberg/development/nextgram/node_modules/static-extend/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/static-extend/node_modules/define-property/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/statuses/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/stream-each/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/stream-shift/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/string-length/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/strip-ansi/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/supports-color/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/tapable/lib/Tapable.js
โบ /Users/auchenberg/development/nextgram/node_modules/through2/through2.js
โบ /Users/auchenberg/development/nextgram/node_modules/time-stamp/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-object-path/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-regex-range/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-regex-range/node_modules/is-number/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/to-regex/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/touch/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/trim-right/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglify-es/tools/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/cjs.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/uglify/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/uglify/minify.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/dist/uglify/versions.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/uglifyjs-webpack-plugin/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/unfetch/dist/unfetch.js
- ../src/index.js (/Users/auchenberg/development/nextgram/node_modules/unfetch/src/index.js)
โบ /Users/auchenberg/development/nextgram/node_modules/union-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/union-value/node_modules/extend-shallow/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/union-value/node_modules/set-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unique-filename/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unique-slug/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/has-value/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/has-value/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/has-values/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/unset-value/node_modules/isobject/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/upath/build/code/upath.js
โบ /Users/auchenberg/development/nextgram/node_modules/update-check/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uri-js/dist/es5/uri.all.js
- ../../src/util.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/util.ts)
- ../../src/regexps-uri.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/regexps-uri.ts)
- ../../src/regexps-iri.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/regexps-iri.ts)
- ../../node_modules/punycode/punycode.es6.js (/Users/auchenberg/development/nextgram/node_modules/uri-js/node_modules/punycode/punycode.es6.js)
- ../../src/uri.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/uri.ts)
- ../../src/schemes/http.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/http.ts)
- ../../src/schemes/https.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/https.ts)
- ../../src/schemes/mailto.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/mailto.ts)
- ../../src/schemes/urn.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/urn.ts)
- ../../src/schemes/urn-uuid.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/schemes/urn-uuid.ts)
- ../../src/index.ts (/Users/auchenberg/development/nextgram/node_modules/uri-js/src/index.ts)
โบ /Users/auchenberg/development/nextgram/node_modules/urix/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/use/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/use/node_modules/kind-of/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/util-deprecate/node.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/lib/bytesToUuid.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/lib/rng.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/v1.js
โบ /Users/auchenberg/development/nextgram/node_modules/uuid/v4.js
โบ /Users/auchenberg/development/nextgram/node_modules/watchpack/lib/DirectoryWatcher.js
โบ /Users/auchenberg/development/nextgram/node_modules/watchpack/lib/watcherManager.js
โบ /Users/auchenberg/development/nextgram/node_modules/watchpack/lib/watchpack.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/lib/GetFilenameFromUrl.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/lib/PathJoin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/lib/Shared.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-dev-middleware/middleware.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-hot-middleware/helpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-hot-middleware/middleware.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/CachedSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/ConcatSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/LineToLineMappedSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/OriginalSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/PrefixSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/RawSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/ReplaceSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/Source.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/SourceAndMapMixin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/SourceMapSource.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/array-set.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/base64-vlq.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/base64.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/binary-search.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/mapping-list.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/quick-sort.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/source-map-consumer.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/source-map-generator.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/source-node.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/lib/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack-sources/node_modules/source-map/source-map.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/APIPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/AsyncDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/AsyncDependencyToInitialChunkWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/BasicEvaluatedExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/CachePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/CaseSensitiveModulesWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Chunk.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ChunkRenderError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ChunkTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/CompatibilityPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Compilation.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Compiler.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ConstPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ContextModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ContextModuleFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DefinePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DependenciesBlockVariable.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Dependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/DynamicEntryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EntryModuleNotFoundError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EntryOptionPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Entrypoint.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ErrorHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalDevToolModulePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalDevToolModuleTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/EvalSourceMapDevToolPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ExternalModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ExternalModuleFactoryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ExternalsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FlagDependencyExportsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FlagDependencyUsagePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FunctionModulePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/FunctionModuleTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/HotModuleReplacement.runtime.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/HotModuleReplacementPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/HotUpdateChunkTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/IgnorePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpHotUpdateChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpMainTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/JsonpTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/LibraryTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/LoaderOptionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/LoaderTargetPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MainTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Module.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleBuildError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleDependencyError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleDependencyWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleFilenameHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleNotFoundError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleParseError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleReason.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleTemplate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ModuleWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiCompiler.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiEntryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiModuleFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiStats.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/MultiWatching.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NamedModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NoEmitOnErrorsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NodeStuffPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NormalModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NormalModuleFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/NullFactory.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/OptionsApply.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/OptionsDefaulter.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Parser.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/ParserHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RawModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RecordIdsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RequestShortener.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RequireJsStuffPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/RuleSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SetVarMainTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SingleEntryPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SizeFormatHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SourceMapDevToolModuleOptionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/SourceMapDevToolPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Stats.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/Template.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/TemplatedPathPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/UnsupportedFeatureWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/UseStrictPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WarnCaseSensitiveModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackOptionsApply.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackOptionsDefaulter.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/WebpackOptionsValidationError.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/compareLocations.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDDefineDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireArrayDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/AMDRequireItemDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsRequireContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsRequireDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ConstDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependencyHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsId.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ContextElementDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/CriticalDependencyWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/DepBlockHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyAcceptDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyAcceptImportDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyCompatibilityDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyDetectionParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportExpressionDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportHeaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyExportSpecifierDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyImportDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyImportSpecifierDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyModulesHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/HarmonyModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportEagerContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportEagerDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportLazyContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportLazyOnceContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportWeakContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ImportWeakDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LoaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LoaderPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LocalModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LocalModuleDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/LocalModulesHelpers.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsId.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleHotAcceptDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/ModuleHotDeclineDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/MultiEntryDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/NullDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireContextDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireContextPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlock.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsureItemDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireEnsurePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireHeaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireIncludeDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireIncludePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveContextDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveDependencyParserPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/RequireResolveHeaderDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/SingleEntryDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/SystemPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/UnsupportedDependency.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/WebpackMissingModule.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/dependencies/getFunctionExpression.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/formatLocation.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeEnvironmentPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeHotUpdateChunkTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeMainTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeOutputFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeSourcePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeTargetPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeTemplatePlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/node/NodeWatchFileSystem.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/CommonsChunkPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/EnsureChunkConditionsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/FlagIncludedChunksPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/MergeDuplicateChunksPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/OccurrenceOrderPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/RemoveEmptyChunksPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/optimize/RemoveParentModulesPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/AssetsOverSizeLimitWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/EntrypointsOverSizeLimitWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/NoAsyncChunksWarning.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/performance/SizeLimitsPlugin.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/Queue.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/Semaphore.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/SortableSet.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/util/identifier.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/validateSchema.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/lib/webpack.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/_formatLimit.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/_util.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/deepProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/deepRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/dynamicDefaults.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/formatMaximum.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/formatMinimum.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/if.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/instanceof.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/patternRequired.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/prohibited.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/range.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/regexp.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/select.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/switch.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/typeof.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv-keywords/keywords/uniqueItemProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/$data.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/ajv.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/cache.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/_rules.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/async.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/error_classes.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/formats.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/resolve.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/rules.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/schema_obj.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/ucs2length.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/compile/util.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limit.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limitItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limitLength.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/_limitProperties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/allOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/anyOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/const.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/contains.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/custom.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/dependencies.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/enum.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/format.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/items.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/multipleOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/not.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/oneOf.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/pattern.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/properties.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/propertyNames.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/ref.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/required.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/uniqueItems.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/dotjs/validate.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/keyword.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/ajv/lib/patternGroups.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/node_modules/fast-deep-equal/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/webpack/schemas/ajv.absolutePath.js
โบ /Users/auchenberg/development/nextgram/node_modules/worker-farm/lib/farm.js
โบ /Users/auchenberg/development/nextgram/node_modules/worker-farm/lib/fork.js
โบ /Users/auchenberg/development/nextgram/node_modules/worker-farm/lib/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/wrappy/wrappy.js
โบ /Users/auchenberg/development/nextgram/node_modules/write-file-webpack-plugin/dist/index.js
- ../src/index.js (/Users/auchenberg/development/nextgram/node_modules/write-file-webpack-plugin/src/index.js)
โบ /Users/auchenberg/development/nextgram/node_modules/xtend/immutable.js
โบ /Users/auchenberg/development/nextgram/node_modules/y18n/index.js
โบ /Users/auchenberg/development/nextgram/node_modules/yallist/yallist.js
โบ VM1000
โบ VM1001
โบ VM1002
โบ VM1003
โบ VM1004
โบ VM1005
โบ VM1006
โบ VM1007
โบ VM1008
โบ VM1009
โบ VM1010
โบ VM1011
โบ VM1012
โบ VM1013
โบ VM1014
โบ VM1015
โบ VM1016
โบ VM1017
โบ VM1018
โบ VM1019
โบ VM1020
โบ VM1021
โบ VM1022
โบ VM1023
โบ VM1024
โบ VM1025
โบ VM1026
โบ VM1027
โบ VM1028
โบ VM1029
โบ VM1030
โบ VM1031
โบ VM1032
โบ VM1033
โบ VM1034
โบ VM1035
โบ VM1036
โบ VM1037
โบ VM1038
โบ VM1039
โบ VM1040
โบ VM1041
โบ VM1042
โบ VM1043
โบ VM1044
โบ VM1045
โบ VM1046
โบ VM1047
โบ VM1048
โบ VM1049
โบ VM1050
โบ VM1051
โบ VM1052
โบ VM1053
โบ VM1054
โบ VM1055
โบ VM1056
โบ VM1057
โบ VM1058
โบ VM1059
โบ VM1060
โบ VM1061
โบ VM1062
โบ VM1063
โบ VM1064
โบ VM1065
โบ VM1066
โบ VM1070
โบ VM1071
โบ VM1072
โบ VM1077
โบ VM1081
โบ VM1083
โบ VM1085
โบ VM1088
โบ VM1089
โบ VM1090
โบ VM1092
โบ VM1107
โบ VM1119
โบ VM1120
โบ VM1121
โบ VM1122
โบ VM1123
โบ VM1124
โบ VM1125
โบ VM1126
โบ VM1127
โบ VM1128
โบ VM1129
โบ VM1130
โบ VM1131
โบ VM1132
โบ VM1133
โบ VM1134
โบ VM1135
โบ VM1136
โบ VM1137
โบ VM1138
โบ VM1139
โบ VM1140
โบ VM1141
โบ VM1142
โบ VM1143
โบ VM1144
โบ VM1145
โบ VM1146
โบ VM1147
โบ VM1148
โบ VM1149
โบ VM1150
โบ VM1151
โบ VM1152
โบ VM1153
โบ VM1154
โบ VM1155
โบ VM1156
โบ VM1157
โบ VM1158
โบ VM1159
โบ VM1160
โบ VM1161
โบ VM1162
โบ VM1163
โบ VM1164
โบ VM1165
โบ VM1166
โบ VM1167
โบ VM1168
โบ VM1169
โบ VM1170
โบ VM1171
โบ VM1172
โบ VM1173
โบ VM1174
โบ VM1175
โบ VM1176
โบ VM1177
โบ VM1178
โบ VM1179
โบ VM1180
โบ VM1181
โบ VM1182
โบ VM1183
โบ VM1184
โบ VM1185
โบ VM1186
โบ VM1187
โบ VM1188
โบ VM1189
โบ VM1190
โบ VM1191
โบ VM1192
โบ VM1193
โบ VM1194
โบ VM1195
โบ VM1196
โบ VM1197
โบ VM1198
โบ VM1199
โบ VM1200
โบ VM1201
โบ VM1202
โบ VM1203
โบ VM1204
โบ VM1205
โบ VM1206
โบ VM1207
โบ VM1208
โบ VM1209
โบ VM1210
โบ VM1211
โบ VM1212
โบ VM1213
โบ VM1214
โบ VM1215
โบ VM1216
โบ VM1217
โบ VM1218
โบ VM1219
โบ VM1220
โบ VM1221
โบ VM1222
โบ VM1223
โบ VM1224
โบ VM1225
โบ VM1226
โบ VM1227
โบ VM1228
โบ VM1229
โบ VM1230
โบ VM1231
โบ VM1232
โบ VM1233
โบ VM1234
โบ VM1235
โบ VM1236
โบ VM1237
โบ VM1238
โบ VM1239
โบ VM1240
โบ VM1241
โบ VM1242
โบ VM1243
โบ VM1244
โบ VM1245
โบ VM1246
โบ VM1247
โบ VM1248
โบ VM1249
โบ VM1250
โบ VM1251
โบ VM1252
โบ VM1253
โบ VM1254
โบ VM1255
โบ VM1256
โบ VM1257
โบ VM1258
โบ VM1259
โบ VM1260
โบ VM1261
โบ VM1262
โบ VM1263
โบ VM1264
โบ VM1265
โบ VM1266
โบ VM1267
โบ VM1268
โบ VM1269
โบ VM1270
โบ VM1271
โบ VM1272
โบ VM1273
โบ VM1274
โบ VM1275
โบ VM1276
โบ VM1277
โบ VM1278
โบ VM1279
โบ VM1280
โบ VM1281
โบ VM1282
โบ VM1283
โบ VM1284
โบ VM1285
โบ VM1286
โบ VM1287
โบ VM1288
โบ VM1289
โบ VM1290
โบ VM1291
โบ VM1292
โบ VM1293
โบ VM1294
โบ VM1295
โบ VM1296
โบ VM1297
โบ VM1298
โบ VM1299
โบ VM1300
โบ VM1301
โบ VM1302
โบ VM1303
โบ VM1304
โบ VM1305
โบ VM1306
โบ VM1307
โบ VM1308
โบ VM1309
โบ VM1310
โบ VM1311
โบ VM1312
โบ VM1313
โบ VM1314
โบ VM1315
โบ VM1316
โบ VM1317
โบ VM1318
โบ VM1822
โบ VM1823
โบ VM1824
โบ VM1825
โบ VM1826
โบ VM1827
โบ VM1828
โบ VM1829
โบ VM1830
โบ VM1831
โบ VM1832
โบ VM1833
โบ VM1834
โบ VM250
โบ VM267
โบ VM268
โบ VM269
โบ VM270
โบ VM271
โบ VM272
โบ VM730
โบ VM731
โบ VM732
โบ VM733
โบ VM82
โบ VM820
โบ VM821
โบ VM822
โบ VM823
โบ VM824
โบ VM854
โบ VM855
โบ VM856
โบ VM857
โบ VM858
โบ VM859
โบ VM860
โบ VM861
โบ VM862
โบ VM863
โบ VM864
โบ VM865
โบ VM866
โบ VM867
โบ VM868
โบ VM869
โบ VM870
โบ VM871
โบ VM872
โบ VM873
โบ VM874
โบ VM875
โบ VM876
โบ VM877
โบ VM898
โบ VM899
โบ VM90
โบ VM918
โบ VM919
โบ VM920
โบ VM927
โบ VM928
โบ VM929
โบ VM930
โบ VM931
โบ VM932
โบ VM933
โบ VM934
โบ VM935
โบ VM936
โบ VM937
โบ VM938
โบ VM939
โบ VM940
โบ VM941
โบ VM942
โบ VM943
โบ VM944
โบ VM945
โบ VM946
โบ VM947
โบ VM948
โบ VM949
โบ VM950
โบ VM951
โบ VM952
โบ VM953
โบ VM954
โบ VM955
โบ VM956
โบ VM957
โบ VM958
โบ VM959
โบ VM960
โบ VM961
โบ VM962
โบ VM963
โบ VM964
โบ VM965
โบ VM966
โบ VM967
โบ VM968
โบ VM969
โบ VM970
โบ VM971
โบ VM972
โบ VM973
โบ VM974
โบ VM975
โบ VM976
โบ VM977
โบ VM978
โบ VM979
โบ VM980
โบ VM981
โบ VM982
โบ VM983
โบ VM984
โบ VM985
โบ VM986
โบ VM987
โบ VM988
โบ VM989
โบ VM990
โบ VM991
โบ VM992
โบ VM993
โบ VM994
โบ VM995
โบ VM996
โบ VM997
โบ VM998
โบ VM999
โบ _http_agent.js
โบ _http_client.js
โบ _http_common.js
โบ _http_incoming.js
โบ _http_outgoing.js
โบ _http_server.js
โบ _stream_duplex.js
โบ _stream_passthrough.js
โบ _stream_readable.js
โบ _stream_transform.js
โบ _stream_writable.js
โบ assert.js
โบ async_hooks.js
โบ bootstrap_node.js
โบ buffer.js
โบ child_process.js
โบ console.js
โบ constants.js
โบ crypto.js
โบ dgram.js
โบ dns.js
โบ evalmachine.<anonymous>
โบ events.js
โบ fs.js
โบ http.js
โบ internal/buffer.js
โบ internal/child_process.js
โบ internal/encoding.js
โบ internal/errors.js
โบ internal/freelist.js
โบ internal/fs.js
โบ internal/http.js
โบ internal/inspector_async_hook.js
โบ internal/linkedlist.js
โบ internal/loader/Loader.js
โบ internal/loader/ModuleJob.js
โบ internal/loader/ModuleMap.js
โบ internal/loader/ModuleRequest.js
โบ internal/loader/ModuleWrap.js
โบ internal/loader/search.js
โบ internal/module.js
โบ internal/net.js
โบ internal/os.js
โบ internal/process.js
โบ internal/process/next_tick.js
โบ internal/process/promises.js
โบ internal/process/stdio.js
โบ internal/process/warning.js
โบ internal/readline.js
โบ internal/safe_globals.js
โบ internal/socket_list.js
โบ internal/streams/BufferList.js
โบ internal/streams/destroy.js
โบ internal/streams/lazy_transform.js
โบ internal/streams/legacy.js
โบ internal/url.js
โบ internal/util.js
โบ internal/util/types.js
โบ module.js
โบ net.js
โบ os.js
โบ path.js
โบ perf_hooks.js
โบ querystring.js
โบ readline.js
โบ stream.js
โบ string_decoder.js
โบ timers.js
โบ tty.js
โบ url.js
โบ util.js
โบ vm.js
</code></pre></div> | 1 |
<p dir="auto">I opened a large project with a lot of Java + bash files and CTRL+P takes forever to find and list a file. Same project gets file list indexed almost immediately when I open it in sublime text and CTRL+P file search works smooth as butter. VSCode needs to improve performance of file search.</p> | <p dir="auto">I have the following code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" getExistingThing({
id,
spaceId
}: {
id: string,
spaceId: string
}): IThingInfo {
// Use the params object here with destructuring...
}"><pre class="notranslate"><code class="notranslate"> getExistingThing({
id,
spaceId
}: {
id: string,
spaceId: string
}): IThingInfo {
// Use the params object here with destructuring...
}
</code></pre></div>
<p dir="auto">When I tried to refactor <code class="notranslate">id</code> to <code class="notranslate">thingId</code>, it renamed it correctly in the parameter object variable and the symbols in the function body, but it did not rename it in the "shape" of the parameter object (I don't know what else to call it).</p>
<p dir="auto">Expected:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" getExistingThing({
thingId,
spaceId
}: {
thingId: string, <<< should change here
spaceId: string
}): IThingInfo {"><pre class="notranslate"><code class="notranslate"> getExistingThing({
thingId,
spaceId
}: {
thingId: string, <<< should change here
spaceId: string
}): IThingInfo {
</code></pre></div>
<p dir="auto">Got:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" getExistingThing({
thingId,
spaceId
}: {
id: string, <<< doesn't change though
spaceId: string
}): IThingInfo {"><pre class="notranslate"><code class="notranslate"> getExistingThing({
thingId,
spaceId
}: {
id: string, <<< doesn't change though
spaceId: string
}): IThingInfo {
</code></pre></div>
<p dir="auto">I would also love it if someone could tell me what the various parts of this kind of function declaration is called. I use it for named arguments which I love, but I just don't know what the various pieces are called. I just know it's awesomeness.</p>
<p dir="auto">(VS Code version 0.10.8)</p> | 0 |
<p dir="auto">Expected behavior, to be able to call something like:</p>
<p dir="auto"><code class="notranslate">console.log(arg1, arg2, arg3)</code> and see the output in stdout separated by commas.</p>
<p dir="auto">Actual behavior is that only the first argument is output.</p> | <p dir="auto">It appears as though if I run <code class="notranslate">console.log(err, result);</code> only <code class="notranslate">err</code> will get logged to the terminal and never <code class="notranslate">result</code>. It should log all arguments passed in as strings separated by commas.</p> | 1 |
<h3 dir="auto">Current Behavior:</h3>
<p dir="auto">When using npm@7, if the folder name in which the project is being built <em>matches</em> the name of the project in <code class="notranslate">package.json</code>, a <code class="notranslate">name</code> property is actively removed (or never set) from package-lock.json.</p>
<p dir="auto">If the project folder does <em>not</em> match the name in <code class="notranslate">package.json</code> then the property is actively set.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2965467/109031460-c194f680-7692-11eb-9d0b-fcc8d35ed52c.jpg"><img src="https://user-images.githubusercontent.com/2965467/109031460-c194f680-7692-11eb-9d0b-fcc8d35ed52c.jpg" alt="d219a7b5-b720-4017-9ab9-8c527b1e52b5" style="max-width: 100%;"></a></p>
<p dir="auto">This is a change controlled file by definition. At the very least, this can cause thrashing of <code class="notranslate">package-lock.json</code> if multiple developers are working on the same project and their working copies are in different folders.</p>
<h3 dir="auto">Expected Behavior:</h3>
<p dir="auto">The folder in which a project is checked out on the local file system should have <em>zero</em> bearing on the content of <code class="notranslate">package-lock.json</code>.</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<ol dir="auto">
<li>Check out a project into a folder with a name that matches the name of the package.</li>
<li>Do an <code class="notranslate">npm install</code></li>
<li>Check the content of <code class="notranslate">package-lock.json</code> and confirm that odd <code class="notranslate">name</code> property <em>does not</em> exist.</li>
<li>Rename the project folder to something that does <em>not</em> match the name of the package.</li>
<li>Do an <code class="notranslate">npm install</code></li>
<li>Note that `package-lock.json" changes.</li>
<li>Open <code class="notranslate">package-lock.json</code> and confirm that odd <code class="notranslate">name</code> property <em>does</em> exist.</li>
</ol>
<h3 dir="auto">Environment:</h3> | <h3 dir="auto">Current Behavior:</h3>
<p dir="auto">package-lock.json changes depending on name of local copy of git repo, e.g. if i have two copies of the same repo locally one which matches the name in package.json and one which doesn't i get two different package-lock files, one specifies the name of the package in the inner packages list and one doesn't.</p>
<h3 dir="auto">Expected Behavior:</h3>
<p dir="auto">package-lock.json should be independent of top level directory name, when working in a team there shouldn't be unnecessary changes to package-lock file due to a team member having a different local name of their git repository.</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<ol dir="auto">
<li>clone a repository twice one in the default named directory and one into a name that differs from the repo name.</li>
<li>run <code class="notranslate">npm install</code></li>
<li>two different package-lock files will be generated.</li>
</ol>
<h3 dir="auto">Environment:</h3>
<ul dir="auto">
<li>OS: Ubuntu 20.04</li>
<li>Node: 15.3.0</li>
<li>npm: 7.0.14</li>
</ul> | 1 |
<p dir="auto">Hello, I canโt remap any key to the <em>play/pause</em> key. Every other key combo works, including other media keys, but nothing works to create a play/pause key (my current keyboard is lacking media keys). Even using the option to type the key Iโm choosing, and using a spare keyboard with media keys, so I know Iโm picking the right option - doesn't work.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/36809865/89898083-c4456800-dbe8-11ea-834a-c34918b648bc.png"><img src="https://user-images.githubusercontent.com/36809865/89898083-c4456800-dbe8-11ea-834a-c34918b648bc.png" alt="11 08 2020_15 36_540" style="max-width: 100%;"></a></p>
<p dir="auto">I've tried another utility called uncap, to run this change as well, but it didn't work either: <code class="notranslate">uncap 0x6A:0xB3</code> should map the multiply * on the numpad to the play/pause key.<br>
I know that it is possible, because using sharpkeys it did work<br>
.<br>
Windows 10 Pro 64-bit [Version 10.0.18363.959]<br>
Intel i5-3470<br>
12 GB RAM</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: `10.0.19041.264`
PowerToys version: `0.18.0`
PowerToy module for which you are reporting the bug (if applicable): `Keyboard Manager`"><pre class="notranslate"><code class="notranslate">Windows build number: `10.0.19041.264`
PowerToys version: `0.18.0`
PowerToy module for which you are reporting the bug (if applicable): `Keyboard Manager`
</code></pre></div>
<p dir="auto">Tested using a Surface Pro 6 type cover (Australian model) and a Microsoft Sculptโข Comfort Keyboard</p>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Attempt to map <kbd>Play/Pause Media</kbd> to any other key (e.g. <kbd>End</kbd>)</p>
<h1 dir="auto">Expected behaviour</h1>
<p dir="auto">In my example above, pressing <kbd>End</kbd> should play/pause media.</p>
<h1 dir="auto">Actual behaviour</h1>
<p dir="auto">Pressing <kbd>End</kbd> does nothing. The original <kbd>Play/Pause Media</kbd> button still works. Testing with Spotify Desktop and YouTube playing in Edge Chromium.</p>
<p dir="auto">Other keymaps work fine (see the attached screenshot).</p>
<h1 dir="auto">Screenshots</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/16009897/82395599-f63ea680-9a9f-11ea-8c39-856ce80cc271.png"><img src="https://user-images.githubusercontent.com/16009897/82395599-f63ea680-9a9f-11ea-8c39-856ce80cc271.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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.6.0</li>
<li>Operating System version: windows10</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Step to reproduce this issue</h3>
<ol dir="auto">
<li>new file src/main/resources/META-INF/dubbo/com.alibaba.dubbo.rpc.Filter ,file content is erpFilter=com.filter.ErpFilter</li>
<li>new ErpFilter Class in com.filter.ErpFilter ,ErpFilter is implements com.alibaba.dubbo.rpc.Filter interface</li>
<li>start project, run Main.main(args);</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">project is start</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">project is dubboShutdown</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<p dir="auto">[ERROR]15:21:15.835|main|||Caller+0 at com.alibaba.dubbo.container.Main.main(Main.java:91)<br>
[DUBBO] Error creating bean with name 'com.erp.server.common.reg.service.IRegisterService': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.alibaba.dubbo.config.ProviderConfig': Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:<br>
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'filter' threw exception; nested exception is java.lang.IllegalStateException: No such extension erpFilter for filter/com.alibaba.dubbo.rpc.Filter, dubbo version: 2.6.0, current host: 192.168.161.1<br>
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.erp.server.common.reg.service.IRegisterService': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.alibaba.dubbo.config.ProviderConfig': Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:<br>
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'filter' threw exception; nested exception is java.lang.IllegalStateException: No such extension erpFilter for filter/com.alibaba.dubbo.rpc.Filter<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1628)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:555)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306)<br>
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)<br>
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:761)<br>
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867)<br>
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:543)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.(ClassPathXmlApplicationContext.java:139)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.(ClassPathXmlApplicationContext.java:93)<br>
at com.alibaba.dubbo.container.spring.SpringContainer.start(SpringContainer.java:45)<br>
at com.alibaba.dubbo.container.Main.main(Main.java:85)<br>
at com.erp.server.common.reg.RegProvider.main(RegProvider.java:7)<br>
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.alibaba.dubbo.config.ProviderConfig': Error setting property values; nested exception is org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are:<br>
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property 'filter' threw exception; nested exception is java.lang.IllegalStateException: No such extension erpFilter for filter/com.alibaba.dubbo.rpc.Filter<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1568)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1276)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:553)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306)<br>
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)<br>
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202)<br>
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeansOfType(DefaultListableBeanFactory.java:519)<br>
at org.springframework.context.support.AbstractApplicationContext.getBeansOfType(AbstractApplicationContext.java:1194)<br>
at org.springframework.beans.factory.BeanFactoryUtils.beansOfTypeIncludingAncestors(BeanFactoryUtils.java:310)<br>
at com.alibaba.dubbo.config.spring.ServiceBean.afterPropertiesSet(ServiceBean.java:137)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1687)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1624)<br>
... 14 common frames omitted<br>
Caused by: org.springframework.beans.PropertyBatchUpdateException: Failed properties: Property 'filter' threw exception; nested exception is java.lang.IllegalStateException: No such extension erpFilter for filter/com.alibaba.dubbo.rpc.Filter<br>
at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:121)<br>
at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:75)<br>
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1564)<br>
... 27 common frames omitted</p> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.7</li>
<li>Operating System version: Windows 10 centos7.3</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>็ปงๆฟdubboFilter๏ผๅจinvoke(Invoker<?> invoker, Invocation invocation)ๆนๆณไธญไฝฟ็จRpcUtils.getInvokeMode(invoker.getUrl(), invocation)</li>
<li>ๅฏนไธไธช่ฟๅCompletableFuture็ๆนๆณ<br>
ๅจconsumerไธญ๏ผgetInvokeModeๅฏไปฅๅพๅฐInvokeMode.FUTURE<br>
ๅจproviderไธญ๏ผgetInvokeModeๅฏไปฅๅพๅฐInvokeMode.SYNCๆInvokeMode.ASYNC๏ผๅฝ้
็ฝฎasync=true๏ผๆถ</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">providerไธญgetInvokeModeๅบ่ฏฅไนๅพๅฐ็ๆฏInvokeMode.FUTURE</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">ๅไธไธช่ฟๅCompletableFuture็ๆนๆณๅจconsumerไธproviderไธค็ซฏ่งฃๆๅพๅฐ็InvokeModeไธไธ่ด</p>
<p dir="auto">่ทไปฃ็ ๆถๅ็ฐ๏ผๅจprovider็ซฏ่งฃๆRpcInvocationๆถ๏ผๆฒกๆๅฐๆนๆณ็returnType่ฎพ็ฝฎๅฐRpcInvocationไธญ๏ผๅจRpcUtilsไธญๅคๆญ่ฟๅ็classๆถๅฐฑๅฏผ่ดไบ้่ฏฏ</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" public static boolean isReturnTypeFuture(Invocation inv) {
Class<?> clazz;
if (inv instanceof RpcInvocation) {
clazz = ((RpcInvocation) inv).getReturnType();
} else {
clazz = getReturnType(inv);
}
return (clazz != null && CompletableFuture.class.isAssignableFrom(clazz)) || isGenericAsync(inv);
}
"><pre class="notranslate"><code class="notranslate"> public static boolean isReturnTypeFuture(Invocation inv) {
Class<?> clazz;
if (inv instanceof RpcInvocation) {
clazz = ((RpcInvocation) inv).getReturnType();
} else {
clazz = getReturnType(inv);
}
return (clazz != null && CompletableFuture.class.isAssignableFrom(clazz)) || isGenericAsync(inv);
}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcInvocation#decode(org.apache.dubbo.remoting.Channel, java.io.InputStream)ไธญ
MethodDescriptor methodDescriptor = serviceDescriptor.getMethod(getMethodName(), desc);
if (methodDescriptor != null) {
pts = methodDescriptor.getParameterClasses();
this.setReturnTypes(methodDescriptor.getReturnTypes());
}"><pre class="notranslate"><code class="notranslate">org.apache.dubbo.rpc.protocol.dubbo.DecodeableRpcInvocation#decode(org.apache.dubbo.remoting.Channel, java.io.InputStream)ไธญ
MethodDescriptor methodDescriptor = serviceDescriptor.getMethod(getMethodName(), desc);
if (methodDescriptor != null) {
pts = methodDescriptor.getParameterClasses();
this.setReturnTypes(methodDescriptor.getReturnTypes());
}
</code></pre></div>
<p dir="auto">ๅจprovider็ซฏ็ฎๅๅฏไปฅ็จorg.apache.dubbo.rpc.support.RpcUtils#getReturnType่งฃๅณ่ฟไธช้ฎ้ข๏ผไฝๆฏไผๅฝฑๅๆง่ฝ</p> | 0 |
<p dir="auto">Would it be possible to implement this interesting paper idea with jax / flax?</p>
<p dir="auto">Intelligent Matrix Exponentiation<br>
paper: <a href="https://arxiv.org/pdf/2008.03936.pdf" rel="nofollow">https://arxiv.org/pdf/2008.03936.pdf</a><br>
code: <a href="https://github.com/google-research/google-research/tree/master/m_layer">https://github.com/google-research/google-research/tree/master/m_layer</a><br>
wiki: <a href="https://en.wikipedia.org/wiki/Matrix_exponential" rel="nofollow">https://en.wikipedia.org/wiki/Matrix_exponential</a></p>
<p dir="auto">expm docs: <a href="https://jax.readthedocs.io/en/latest/_autosummary/jax.scipy.linalg.expm.html#jax.scipy.linalg.expm" rel="nofollow">https://jax.readthedocs.io/en/latest/_autosummary/jax.scipy.linalg.expm.html#jax.scipy.linalg.expm</a></p>
<p dir="auto">expm frechet looks like the right thing to make the gradient:<br>
<a href="https://jax.readthedocs.io/en/latest/_autosummary/jax.scipy.linalg.expm_frechet.html#jax.scipy.linalg.expm_frechet" rel="nofollow">https://jax.readthedocs.io/en/latest/_autosummary/jax.scipy.linalg.expm_frechet.html#jax.scipy.linalg.expm_frechet</a></p>
<p dir="auto">I tried a few options, here's a simple one:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import jax
from flax import nn
jnp = jax.numpy
vec_expm = jnp.vectorize(jax.scipy.linalg.expm, signature='(k)->(k)')
@nn.module
def MLayer(x, D=D_CODE):
x = nn.Dense(x, D ** 2)
x = x.reshape(x.shape[:-1] + (D, D))
x = vec_expm(x
x = x.reshape(x.shape[:-2] + (D ** 2,))
x = nn.Dense(x, D)
return x"><pre class="notranslate"><code class="notranslate">import jax
from flax import nn
jnp = jax.numpy
vec_expm = jnp.vectorize(jax.scipy.linalg.expm, signature='(k)->(k)')
@nn.module
def MLayer(x, D=D_CODE):
x = nn.Dense(x, D ** 2)
x = x.reshape(x.shape[:-1] + (D, D))
x = vec_expm(x
x = x.reshape(x.shape[:-2] + (D ** 2,))
x = nn.Dense(x, D)
return x
</code></pre></div>
<p dir="auto">however this crashes because of this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ValueError: Reverse-mode differentiation does not work for lax.while_loop or lax.fori_loop. Try using lax.scan instead."><pre class="notranslate"><code class="notranslate">ValueError: Reverse-mode differentiation does not work for lax.while_loop or lax.fori_loop. Try using lax.scan instead.
</code></pre></div>
<p dir="auto">Would it work if we wire up expm_frechet primitive?</p>
<p dir="auto">a simpler reproduction without other nn stuff:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import jax.numpy as jnp
import jax
rng = jax.random.PRNGKey(0)
x = jax.random.uniform(rng, (2, 2))
def f(x):
y = jax.scipy.linalg.expm(x)
credit = jnp.sum(jnp.abs(y))
return credit, y
f = jax.value_and_grad(f)
c, y = f(x)
print(c, y)"><pre class="notranslate"><code class="notranslate">import jax.numpy as jnp
import jax
rng = jax.random.PRNGKey(0)
x = jax.random.uniform(rng, (2, 2))
def f(x):
y = jax.scipy.linalg.expm(x)
credit = jnp.sum(jnp.abs(y))
return credit, y
f = jax.value_and_grad(f)
c, y = f(x)
print(c, y)
</code></pre></div>
<p dir="auto">full trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-14-f2d123ee1505> in <module>
----> 1 f(x)
~/miniconda3/lib/python3.8/site-packages/jax/api.py in value_and_grad_f(*args, **kwargs)
485 tree_map(partial(_check_input_dtype_grad, holomorphic), dyn_args)
486 if not has_aux:
--> 487 ans, vjp_py = _vjp(f_partial, *dyn_args)
488 else:
489 ans, vjp_py, aux = _vjp(f_partial, *dyn_args, has_aux=True)
~/miniconda3/lib/python3.8/site-packages/jax/api.py in _vjp(fun, *primals, **kwargs)
1514 if not has_aux:
1515 flat_fun, out_tree = flatten_fun_nokwargs(fun, in_tree)
-> 1516 out_primal, out_vjp = ad.vjp(flat_fun, primals_flat)
1517 out_tree = out_tree()
1518 else:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in vjp(traceable, primals, has_aux)
108 def vjp(traceable, primals, has_aux=False):
109 if not has_aux:
--> 110 out_primals, pvals, jaxpr, consts = linearize(traceable, *primals)
111 else:
112 out_primals, pvals, jaxpr, consts, aux = linearize(traceable, *primals, has_aux=True)
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in linearize(traceable, *primals, **kwargs)
95 _, in_tree = tree_flatten(((primals, primals), {}))
96 jvpfun_flat, out_tree = flatten_fun(jvpfun, in_tree)
---> 97 jaxpr, out_pvals, consts = pe.trace_to_jaxpr(jvpfun_flat, in_pvals)
98 out_primals_pvals, out_tangents_pvals = tree_unflatten(out_tree(), out_pvals)
99 assert all(out_primal_pval.is_known() for out_primal_pval in out_primals_pvals)
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in trace_to_jaxpr(fun, pvals, instantiate, stage_out, bottom, trace_type)
421 with core.new_master(trace_type, bottom=bottom) as master:
422 fun = trace_to_subjaxpr(fun, master, instantiate)
--> 423 jaxpr, (out_pvals, consts, env) = fun.call_wrapped(pvals)
424 assert not env
425 del master
~/miniconda3/lib/python3.8/site-packages/jax/linear_util.py in call_wrapped(self, *args, **kwargs)
148 gen = None
149
--> 150 ans = self.f(*args, **dict(self.params, **kwargs))
151 del args
152 while stack:
<ipython-input-10-995182967638> in wrapped(*args, **kwargs)
1 def value_and_jacobian(fun):
2 def wrapped(*args, **kwargs):
----> 3 return fun(*args, **kwargs), jax.jacfwd(fun)(*args, **kwargs)
4 return wrapped
~/miniconda3/lib/python3.8/site-packages/jax/api.py in value_and_grad_f(*args, **kwargs)
491 dtype = dtypes.result_type(ans)
492 tree_map(partial(_check_output_dtype_grad, holomorphic), ans)
--> 493 g = vjp_py(np.ones((), dtype=dtype))
494 g = g[0] if isinstance(argnums, int) else g
495 if not has_aux:
~/miniconda3/lib/python3.8/site-packages/jax/api.py in _vjp_pullback_wrapper(cotangent_dtypes, io_tree, fun, py_args)
1458 "match type of corresponding primal output ({})")
1459 raise TypeError(msg.format(_dtype(a), dtype))
-> 1460 ans = fun(*args)
1461 return tree_unflatten(out_tree, ans)
1462
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in unbound_vjp(pvals, jaxpr, consts, *cts)
115 cts = tuple(map(ignore_consts, cts, pvals))
116 dummy_args = [UndefinedPrimal(v.aval) for v in jaxpr.invars]
--> 117 arg_cts = backward_pass(jaxpr, consts, dummy_args, cts)
118 return map(instantiate_zeros, arg_cts)
119
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in backward_pass(jaxpr, consts, primals_in, cotangents_in)
200 cts_in_avals = [v.aval for v in eqn.outvars]
201 call_jaxpr, params = core.extract_call_jaxpr(eqn.primitive, eqn.params)
--> 202 cts_out = get_primitive_transpose(eqn.primitive)(
203 params, call_jaxpr, invals, cts_in, cts_in_avals)
204 else:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in call_transpose(primitive, params, call_jaxpr, args, ct, _)
486 new_params = update_params(new_params, map(is_undefined_primal, args),
487 [type(x) is not Zero for x in ct])
--> 488 out_flat = primitive.bind(fun, *all_args, **new_params)
489 return tree_unflatten(out_tree(), out_flat)
490 primitive_transposes[core.call_p] = partial(call_transpose, call_p)
~/miniconda3/lib/python3.8/site-packages/jax/core.py in bind(self, fun, *args, **params)
1132
1133 def bind(self, fun, *args, **params):
-> 1134 return call_bind(self, fun, *args, **params)
1135
1136 def process(self, trace, fun, tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/core.py in call_bind(primitive, fun, *args, **params)
1124 else:
1125 tracers = map(top_trace.full_raise, args)
-> 1126 outs = primitive.process(top_trace, fun, tracers, params)
1127 return apply_todos(env_trace_todo(), map(full_lower, outs))
1128
~/miniconda3/lib/python3.8/site-packages/jax/core.py in process(self, trace, fun, tracers, params)
1135
1136 def process(self, trace, fun, tracers, params):
-> 1137 return trace.process_call(self, fun, tracers, params)
1138
1139 def post_process(self, trace, out_tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in process_call(self, call_primitive, f, tracers, params)
273 update_params = call_param_updaters.get(call_primitive)
274 new_params = update_params(params, nz_tangents) if update_params else params
--> 275 result = call_primitive.bind(f_jvp, *primals, *nonzero_tangents, **new_params)
276 primal_out, tangent_out = tree_unflatten(out_tree_def(), result)
277 return [JVPTracer(self, p, t) for p, t in zip(primal_out, tangent_out)]
~/miniconda3/lib/python3.8/site-packages/jax/core.py in bind(self, fun, *args, **params)
1132
1133 def bind(self, fun, *args, **params):
-> 1134 return call_bind(self, fun, *args, **params)
1135
1136 def process(self, trace, fun, tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/core.py in call_bind(primitive, fun, *args, **params)
1124 else:
1125 tracers = map(top_trace.full_raise, args)
-> 1126 outs = primitive.process(top_trace, fun, tracers, params)
1127 return apply_todos(env_trace_todo(), map(full_lower, outs))
1128
~/miniconda3/lib/python3.8/site-packages/jax/core.py in process(self, trace, fun, tracers, params)
1135
1136 def process(self, trace, fun, tracers, params):
-> 1137 return trace.process_call(self, fun, tracers, params)
1138
1139 def post_process(self, trace, out_tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in process_call(self, primitive, f, tracers, params)
179 else PartialVal.unknown(mapped_aval(pval[0]))
180 for pval, is_mapped in zip(in_pvals, params['mapped_invars'])]
--> 181 jaxpr, out_pvals, consts, env_tracers = self.partial_eval(
182 f, in_pvals, partial(primitive.bind, **params))
183 if primitive.map_primitive:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in partial_eval(self, f, pvals, app)
279 f = trace_to_subjaxpr(f, self.master, False)
280 f, aux = partial_eval_wrapper(f, tuple(in_avals))
--> 281 out_flat, (out_avals, jaxpr, env) = app(f, *in_consts), aux()
282 out_consts, consts = split_list(out_flat, [len(out_flat)-len(jaxpr.constvars)])
283 out_pvs = map(PartialVal, zip(out_avals, out_consts))
~/miniconda3/lib/python3.8/site-packages/jax/core.py in bind(self, fun, *args, **params)
1132
1133 def bind(self, fun, *args, **params):
-> 1134 return call_bind(self, fun, *args, **params)
1135
1136 def process(self, trace, fun, tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/core.py in call_bind(primitive, fun, *args, **params)
1121 if top_trace is None:
1122 with new_sublevel():
-> 1123 outs = primitive.impl(fun, *args, **params)
1124 else:
1125 tracers = map(top_trace.full_raise, args)
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/xla.py in _xla_call_impl(fun, device, backend, name, donated_invars, *args)
524
525 def _xla_call_impl(fun: lu.WrappedFun, *args, device, backend, name, donated_invars):
--> 526 compiled_fun = _xla_callable(fun, device, backend, name, donated_invars,
527 *unsafe_map(arg_spec, args))
528 try:
~/miniconda3/lib/python3.8/site-packages/jax/linear_util.py in memoized_fun(fun, *args)
222 fun.populate_stores(stores)
223 else:
--> 224 ans = call(fun, *args)
225 cache[key] = (ans, fun.stores)
226 return ans
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/xla.py in _xla_callable(fun, device, backend, name, donated_invars, *arg_specs)
595 else:
596 pvals: Sequence[pe.PartialVal] = [pe.PartialVal.unknown(aval) for aval in abstract_args]
--> 597 jaxpr, pvals, consts = pe.trace_to_jaxpr(
598 fun, pvals, instantiate=False, stage_out=True, bottom=True)
599 map(prefetch, it.chain(consts, jaxpr_literals(jaxpr)))
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in trace_to_jaxpr(fun, pvals, instantiate, stage_out, bottom, trace_type)
421 with core.new_master(trace_type, bottom=bottom) as master:
422 fun = trace_to_subjaxpr(fun, master, instantiate)
--> 423 jaxpr, (out_pvals, consts, env) = fun.call_wrapped(pvals)
424 assert not env
425 del master
~/miniconda3/lib/python3.8/site-packages/jax/linear_util.py in call_wrapped(self, *args, **kwargs)
148 gen = None
149
--> 150 ans = self.f(*args, **dict(self.params, **kwargs))
151 del args
152 while stack:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in backward_pass(jaxpr, consts, primals_in, cotangents_in)
203 params, call_jaxpr, invals, cts_in, cts_in_avals)
204 else:
--> 205 cts_out = get_primitive_transpose(eqn.primitive)(cts_in, *invals,
206 **eqn.params)
207 cts_out = [Zero(v.aval) for v in eqn.invars] if cts_out is Zero else cts_out
~/miniconda3/lib/python3.8/site-packages/jax/lax/lax_control_flow.py in _while_transpose_error(*_, **kwargs)
536
537 def _while_transpose_error(*_, **kwargs):
--> 538 raise ValueError("Reverse-mode differentiation does not work for "
539 "lax.while_loop or lax.fori_loop. "
540 "Try using lax.scan instead.")
ValueError: Reverse-mode differentiation does not work for lax.while_loop or lax.fori_loop. Try using lax.scan instead."><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-14-f2d123ee1505> in <module>
----> 1 f(x)
~/miniconda3/lib/python3.8/site-packages/jax/api.py in value_and_grad_f(*args, **kwargs)
485 tree_map(partial(_check_input_dtype_grad, holomorphic), dyn_args)
486 if not has_aux:
--> 487 ans, vjp_py = _vjp(f_partial, *dyn_args)
488 else:
489 ans, vjp_py, aux = _vjp(f_partial, *dyn_args, has_aux=True)
~/miniconda3/lib/python3.8/site-packages/jax/api.py in _vjp(fun, *primals, **kwargs)
1514 if not has_aux:
1515 flat_fun, out_tree = flatten_fun_nokwargs(fun, in_tree)
-> 1516 out_primal, out_vjp = ad.vjp(flat_fun, primals_flat)
1517 out_tree = out_tree()
1518 else:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in vjp(traceable, primals, has_aux)
108 def vjp(traceable, primals, has_aux=False):
109 if not has_aux:
--> 110 out_primals, pvals, jaxpr, consts = linearize(traceable, *primals)
111 else:
112 out_primals, pvals, jaxpr, consts, aux = linearize(traceable, *primals, has_aux=True)
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in linearize(traceable, *primals, **kwargs)
95 _, in_tree = tree_flatten(((primals, primals), {}))
96 jvpfun_flat, out_tree = flatten_fun(jvpfun, in_tree)
---> 97 jaxpr, out_pvals, consts = pe.trace_to_jaxpr(jvpfun_flat, in_pvals)
98 out_primals_pvals, out_tangents_pvals = tree_unflatten(out_tree(), out_pvals)
99 assert all(out_primal_pval.is_known() for out_primal_pval in out_primals_pvals)
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in trace_to_jaxpr(fun, pvals, instantiate, stage_out, bottom, trace_type)
421 with core.new_master(trace_type, bottom=bottom) as master:
422 fun = trace_to_subjaxpr(fun, master, instantiate)
--> 423 jaxpr, (out_pvals, consts, env) = fun.call_wrapped(pvals)
424 assert not env
425 del master
~/miniconda3/lib/python3.8/site-packages/jax/linear_util.py in call_wrapped(self, *args, **kwargs)
148 gen = None
149
--> 150 ans = self.f(*args, **dict(self.params, **kwargs))
151 del args
152 while stack:
<ipython-input-10-995182967638> in wrapped(*args, **kwargs)
1 def value_and_jacobian(fun):
2 def wrapped(*args, **kwargs):
----> 3 return fun(*args, **kwargs), jax.jacfwd(fun)(*args, **kwargs)
4 return wrapped
~/miniconda3/lib/python3.8/site-packages/jax/api.py in value_and_grad_f(*args, **kwargs)
491 dtype = dtypes.result_type(ans)
492 tree_map(partial(_check_output_dtype_grad, holomorphic), ans)
--> 493 g = vjp_py(np.ones((), dtype=dtype))
494 g = g[0] if isinstance(argnums, int) else g
495 if not has_aux:
~/miniconda3/lib/python3.8/site-packages/jax/api.py in _vjp_pullback_wrapper(cotangent_dtypes, io_tree, fun, py_args)
1458 "match type of corresponding primal output ({})")
1459 raise TypeError(msg.format(_dtype(a), dtype))
-> 1460 ans = fun(*args)
1461 return tree_unflatten(out_tree, ans)
1462
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in unbound_vjp(pvals, jaxpr, consts, *cts)
115 cts = tuple(map(ignore_consts, cts, pvals))
116 dummy_args = [UndefinedPrimal(v.aval) for v in jaxpr.invars]
--> 117 arg_cts = backward_pass(jaxpr, consts, dummy_args, cts)
118 return map(instantiate_zeros, arg_cts)
119
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in backward_pass(jaxpr, consts, primals_in, cotangents_in)
200 cts_in_avals = [v.aval for v in eqn.outvars]
201 call_jaxpr, params = core.extract_call_jaxpr(eqn.primitive, eqn.params)
--> 202 cts_out = get_primitive_transpose(eqn.primitive)(
203 params, call_jaxpr, invals, cts_in, cts_in_avals)
204 else:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in call_transpose(primitive, params, call_jaxpr, args, ct, _)
486 new_params = update_params(new_params, map(is_undefined_primal, args),
487 [type(x) is not Zero for x in ct])
--> 488 out_flat = primitive.bind(fun, *all_args, **new_params)
489 return tree_unflatten(out_tree(), out_flat)
490 primitive_transposes[core.call_p] = partial(call_transpose, call_p)
~/miniconda3/lib/python3.8/site-packages/jax/core.py in bind(self, fun, *args, **params)
1132
1133 def bind(self, fun, *args, **params):
-> 1134 return call_bind(self, fun, *args, **params)
1135
1136 def process(self, trace, fun, tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/core.py in call_bind(primitive, fun, *args, **params)
1124 else:
1125 tracers = map(top_trace.full_raise, args)
-> 1126 outs = primitive.process(top_trace, fun, tracers, params)
1127 return apply_todos(env_trace_todo(), map(full_lower, outs))
1128
~/miniconda3/lib/python3.8/site-packages/jax/core.py in process(self, trace, fun, tracers, params)
1135
1136 def process(self, trace, fun, tracers, params):
-> 1137 return trace.process_call(self, fun, tracers, params)
1138
1139 def post_process(self, trace, out_tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in process_call(self, call_primitive, f, tracers, params)
273 update_params = call_param_updaters.get(call_primitive)
274 new_params = update_params(params, nz_tangents) if update_params else params
--> 275 result = call_primitive.bind(f_jvp, *primals, *nonzero_tangents, **new_params)
276 primal_out, tangent_out = tree_unflatten(out_tree_def(), result)
277 return [JVPTracer(self, p, t) for p, t in zip(primal_out, tangent_out)]
~/miniconda3/lib/python3.8/site-packages/jax/core.py in bind(self, fun, *args, **params)
1132
1133 def bind(self, fun, *args, **params):
-> 1134 return call_bind(self, fun, *args, **params)
1135
1136 def process(self, trace, fun, tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/core.py in call_bind(primitive, fun, *args, **params)
1124 else:
1125 tracers = map(top_trace.full_raise, args)
-> 1126 outs = primitive.process(top_trace, fun, tracers, params)
1127 return apply_todos(env_trace_todo(), map(full_lower, outs))
1128
~/miniconda3/lib/python3.8/site-packages/jax/core.py in process(self, trace, fun, tracers, params)
1135
1136 def process(self, trace, fun, tracers, params):
-> 1137 return trace.process_call(self, fun, tracers, params)
1138
1139 def post_process(self, trace, out_tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in process_call(self, primitive, f, tracers, params)
179 else PartialVal.unknown(mapped_aval(pval[0]))
180 for pval, is_mapped in zip(in_pvals, params['mapped_invars'])]
--> 181 jaxpr, out_pvals, consts, env_tracers = self.partial_eval(
182 f, in_pvals, partial(primitive.bind, **params))
183 if primitive.map_primitive:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in partial_eval(self, f, pvals, app)
279 f = trace_to_subjaxpr(f, self.master, False)
280 f, aux = partial_eval_wrapper(f, tuple(in_avals))
--> 281 out_flat, (out_avals, jaxpr, env) = app(f, *in_consts), aux()
282 out_consts, consts = split_list(out_flat, [len(out_flat)-len(jaxpr.constvars)])
283 out_pvs = map(PartialVal, zip(out_avals, out_consts))
~/miniconda3/lib/python3.8/site-packages/jax/core.py in bind(self, fun, *args, **params)
1132
1133 def bind(self, fun, *args, **params):
-> 1134 return call_bind(self, fun, *args, **params)
1135
1136 def process(self, trace, fun, tracers, params):
~/miniconda3/lib/python3.8/site-packages/jax/core.py in call_bind(primitive, fun, *args, **params)
1121 if top_trace is None:
1122 with new_sublevel():
-> 1123 outs = primitive.impl(fun, *args, **params)
1124 else:
1125 tracers = map(top_trace.full_raise, args)
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/xla.py in _xla_call_impl(fun, device, backend, name, donated_invars, *args)
524
525 def _xla_call_impl(fun: lu.WrappedFun, *args, device, backend, name, donated_invars):
--> 526 compiled_fun = _xla_callable(fun, device, backend, name, donated_invars,
527 *unsafe_map(arg_spec, args))
528 try:
~/miniconda3/lib/python3.8/site-packages/jax/linear_util.py in memoized_fun(fun, *args)
222 fun.populate_stores(stores)
223 else:
--> 224 ans = call(fun, *args)
225 cache[key] = (ans, fun.stores)
226 return ans
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/xla.py in _xla_callable(fun, device, backend, name, donated_invars, *arg_specs)
595 else:
596 pvals: Sequence[pe.PartialVal] = [pe.PartialVal.unknown(aval) for aval in abstract_args]
--> 597 jaxpr, pvals, consts = pe.trace_to_jaxpr(
598 fun, pvals, instantiate=False, stage_out=True, bottom=True)
599 map(prefetch, it.chain(consts, jaxpr_literals(jaxpr)))
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/partial_eval.py in trace_to_jaxpr(fun, pvals, instantiate, stage_out, bottom, trace_type)
421 with core.new_master(trace_type, bottom=bottom) as master:
422 fun = trace_to_subjaxpr(fun, master, instantiate)
--> 423 jaxpr, (out_pvals, consts, env) = fun.call_wrapped(pvals)
424 assert not env
425 del master
~/miniconda3/lib/python3.8/site-packages/jax/linear_util.py in call_wrapped(self, *args, **kwargs)
148 gen = None
149
--> 150 ans = self.f(*args, **dict(self.params, **kwargs))
151 del args
152 while stack:
~/miniconda3/lib/python3.8/site-packages/jax/interpreters/ad.py in backward_pass(jaxpr, consts, primals_in, cotangents_in)
203 params, call_jaxpr, invals, cts_in, cts_in_avals)
204 else:
--> 205 cts_out = get_primitive_transpose(eqn.primitive)(cts_in, *invals,
206 **eqn.params)
207 cts_out = [Zero(v.aval) for v in eqn.invars] if cts_out is Zero else cts_out
~/miniconda3/lib/python3.8/site-packages/jax/lax/lax_control_flow.py in _while_transpose_error(*_, **kwargs)
536
537 def _while_transpose_error(*_, **kwargs):
--> 538 raise ValueError("Reverse-mode differentiation does not work for "
539 "lax.while_loop or lax.fori_loop. "
540 "Try using lax.scan instead.")
ValueError: Reverse-mode differentiation does not work for lax.while_loop or lax.fori_loop. Try using lax.scan instead.
</code></pre></div> | <h3 dir="auto">Description</h3>
<p dir="auto">When we instantiate a BCOO array, there are situations in which we might like its <code class="notranslate">shape</code> to be a <code class="notranslate">DeviceArray</code> (or sequence of <code class="notranslate">DeviceArray</code>s). In particular, we might like the <code class="notranslate">shape</code> to be returned by a compiled function. JAX doesn't complain when we do this โ great.</p>
<p dir="auto">However, if we call the <code class="notranslate">BCOO</code> constructor inside a <code class="notranslate">jit</code>-compiled function with a <code class="notranslate">DeviceArray</code>-valued <code class="notranslate">shape</code>, it results in a tracer leak. Here's a minimal example:</p>
<h3 dir="auto">Setup</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax
import jax.numpy as jnp
from jax.experimental.sparse import BCOO
mk_bcoo = lambda data, indices, shape: BCOO((data, indices), shape=shape)
data = jnp.array([1, 1])
indices = jnp.array([[0], [1]])
shape = jnp.array([99])"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">jax</span>
<span class="pl-k">import</span> <span class="pl-s1">jax</span>.<span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">jnp</span>
<span class="pl-k">from</span> <span class="pl-s1">jax</span>.<span class="pl-s1">experimental</span>.<span class="pl-s1">sparse</span> <span class="pl-k">import</span> <span class="pl-v">BCOO</span>
<span class="pl-s1">mk_bcoo</span> <span class="pl-c1">=</span> <span class="pl-k">lambda</span> <span class="pl-s1">data</span>, <span class="pl-s1">indices</span>, <span class="pl-s1">shape</span>: <span class="pl-v">BCOO</span>((<span class="pl-s1">data</span>, <span class="pl-s1">indices</span>), <span class="pl-s1">shape</span><span class="pl-c1">=</span><span class="pl-s1">shape</span>)
<span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">array</span>([<span class="pl-c1">1</span>, <span class="pl-c1">1</span>])
<span class="pl-s1">indices</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">array</span>([[<span class="pl-c1">0</span>], [<span class="pl-c1">1</span>]])
<span class="pl-s1">shape</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-en">array</span>([<span class="pl-c1">99</span>])</pre></div>
<h3 dir="auto">Results</h3>
<p dir="auto">It works as expected when we don't use <code class="notranslate">jit</code> compilation.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">> mk_bcoo(data, indices, shape)
BCOO(int32[DeviceArray(99, dtype=int32)], nse=2)
>> mk_bcoo(data, indices, shape).todense()
# Works!"><pre class="notranslate"><span class="pl-c1">>></span> <span class="pl-en">mk_bcoo</span>(<span class="pl-s1">data</span>, <span class="pl-s1">indices</span>, <span class="pl-s1">shape</span>)
<span class="pl-v">BCOO</span>(<span class="pl-s1">int32</span>[<span class="pl-v">DeviceArray</span>(<span class="pl-c1">99</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">int32</span>)], <span class="pl-s1">nse</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)
<span class="pl-c1">>></span> <span class="pl-en">mk_bcoo</span>(<span class="pl-s1">data</span>, <span class="pl-s1">indices</span>, <span class="pl-s1">shape</span>).<span class="pl-en">todense</span>()
<span class="pl-c"># Works!</span></pre></div>
<p dir="auto">But if we <code class="notranslate">jit</code>, the tracer for the shape is leaked.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">> jax.jit(mk_bcoo)(data, indices, shape)
BCOO(int32[Traced<ShapedArray(int32[])>with<DynamicJaxprTrace(level=0/1)>], nse=2)
>> result = jax.jit(mk_bcoo)(data, indices, shape); result.shape
(Traced<ShapedArray(int32[])>with<DynamicJaxprTrace(level=0/1)>,)
>> jax.jit(mk_bcoo)(data, indices, shape).todense()
# Raises a TracerArrayConversionError"><pre class="notranslate"><span class="pl-c1">>></span> <span class="pl-s1">jax</span>.<span class="pl-en">jit</span>(<span class="pl-s1">mk_bcoo</span>)(<span class="pl-s1">data</span>, <span class="pl-s1">indices</span>, <span class="pl-s1">shape</span>)
<span class="pl-v">BCOO</span>(<span class="pl-s1">int32</span>[<span class="pl-v">Traced</span><span class="pl-c1"><</span><span class="pl-v">ShapedArray</span>(<span class="pl-s1">int32</span>[<span class="pl-s1"></span>])<span class="pl-c1">></span><span class="pl-s1">with</span><span class="pl-c1"><</span><span class="pl-v">DynamicJaxprTrace</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">1</span>)<span class="pl-c1">></span><span class="pl-s1"></span>], <span class="pl-s1">nse</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)
<span class="pl-c1">>></span> <span class="pl-s1">result</span> <span class="pl-c1">=</span> <span class="pl-s1">jax</span>.<span class="pl-en">jit</span>(<span class="pl-s1">mk_bcoo</span>)(<span class="pl-s1">data</span>, <span class="pl-s1">indices</span>, <span class="pl-s1">shape</span>); <span class="pl-s1">result</span>.<span class="pl-s1">shape</span>
(<span class="pl-v">Traced</span><span class="pl-c1"><</span><span class="pl-v">ShapedArray</span>(<span class="pl-s1">int32</span>[<span class="pl-s1"></span>])<span class="pl-c1">></span><span class="pl-s1">with</span><span class="pl-c1"><</span><span class="pl-v">DynamicJaxprTrace</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">1</span>)<span class="pl-c1">></span><span class="pl-s1"></span>,)
<span class="pl-c1">>></span> <span class="pl-s1">jax</span>.<span class="pl-en">jit</span>(<span class="pl-s1">mk_bcoo</span>)(<span class="pl-s1">data</span>, <span class="pl-s1">indices</span>, <span class="pl-s1">shape</span>).<span class="pl-en">todense</span>()
<span class="pl-c"># Raises a TracerArrayConversionError</span></pre></div>
<p dir="auto">Apologies if this is a duplicate.</p>
<h3 dir="auto">What jax/jaxlib version are you using?</h3>
<p dir="auto">JAX v0.3.16</p>
<h3 dir="auto">Which accelerator(s) are you using?</h3>
<p dir="auto">CPU</p>
<h3 dir="auto">Additional System Info</h3>
<p dir="auto"><em>No response</em></p> | 0 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows Build Number: 10.0.18362.0
WIndows Terminal version: 0.6.2951.0
3 Monitor Setup
- Main Screen High-DPI (Scaling 150%, 3840x2160)
- Left and right: Scaling 100%, 1920x1200"><pre lang="none" class="notranslate"><code class="notranslate">Windows Build Number: 10.0.18362.0
WIndows Terminal version: 0.6.2951.0
3 Monitor Setup
- Main Screen High-DPI (Scaling 150%, 3840x2160)
- Left and right: Scaling 100%, 1920x1200
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ul dir="auto">
<li>Start Terminal</li>
<li>Terminal window opens on Main Screen (High DPI, Scaling 150%)</li>
<li>Move Window on secondary screen (Scaling 100%)</li>
</ul>
<h1 dir="auto">Expected behavior</h1>
<ul dir="auto">
<li>(Window scales down correctly)</li>
<li>Window should stay on second monitor</li>
</ul>
<h1 dir="auto">Actual behavior</h1>
<ul dir="auto">
<li>(Window scales down correctly)</li>
<li>Terminal window disappears after around 1 second without message</li>
<li>(Process is terminated according to Task Manager/Process Explorer)</li>
</ul>
<h1 dir="auto">Additional information</h1>
<p dir="auto">If I set both screens to the same scaling (either 100% or 150%) the error does not occur.</p>
<p dir="auto">If I set the <em>secondary</em> screen to 150% and the main screen to 100%, I can move the Window from the (low-scale) main screen to the (150% scaled) secondary screen without problem. When I move the window back to the 100%-Screen, it disappears again.</p> | <p dir="auto">Currently i configure cmd.exe and pwsh.exe as taskbar shortcuts and i can configure these shortcuts to always run in admin mode when i open them.</p>
<p dir="auto">Is is possible to do the same for the terminal app? Not sure if this is possible since it is a store app, and not a win32 app, but it would be really convenient if i didn't have to right click a couple of times and then select Run as Administrator every time i launch the terminal.</p> | 0 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=neilhart" rel="nofollow">Neil Hart</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2649?redirect=false" rel="nofollow">SPR-2649</a></strong> and commented</p>
<p dir="auto">There is a Sun bug: <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665132" rel="nofollow">http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665132</a> that causes us to fail when loading our XML config files. When using this within JWS and with a very limit security policy we get the following stack trace:</p>
<p dir="auto">java.security.AccessControlException: access denied (java.lang.RuntimePermission getClassLoader)<br>
at java.security.AccessControlContext.checkPermission(Unknown Source)<br>
at java.security.AccessController.checkPermission(Unknown Source)<br>
at java.lang.SecurityManager.checkPermission(Unknown Source)<br>
at java.lang.Thread.getContextClassLoader(Unknown Source)<br>
at org.springframework.util.ClassUtils.getDefaultClassLoader(ClassUtils.java:101)<br>
at org.springframework.core.io.DefaultResourceLoader.<init>(DefaultResourceLoader.java:53)<br>
at org.springframework.context.support.AbstractApplicationContext.<init>(AbstractApplicationContext.java:178)<br>
at org.springframework.context.support.AbstractRefreshableApplicationContext.<init>(AbstractRefreshableApplicationContext.java:78)<br>
at org.springframework.context.support.AbstractXmlApplicationContext.<init>(AbstractXmlApplicationContext.java:58)<br>
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:90)<br>
at com.creditex.spring.SpringRegistry$StaticSpringRegistry.add(SpringRegistry.java:127)</p>
<p dir="auto">Can we/you change the ClassUtils.getDefaultClassLoader() to get the Thread's classLoader in a try/catch block? Like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public static ClassLoader getDefaultClassLoader() {
ClassLoader cl = null;
try {
cl = Thread.currentThread().getContextClassLoader();
}
catch (Throwable ex) {
if (logger.isDebugEnabled()) {
logger.debug("Getting the thread class loader cause a failure: " + ex);
}
}
if (cl == null) {
// No thread context class loader -> use class loader of this class.
cl = ClassUtils.class.getClassLoader();
}
return cl;
}"><pre class="notranslate"><code class="notranslate">public static ClassLoader getDefaultClassLoader() {
ClassLoader cl = null;
try {
cl = Thread.currentThread().getContextClassLoader();
}
catch (Throwable ex) {
if (logger.isDebugEnabled()) {
logger.debug("Getting the thread class loader cause a failure: " + ex);
}
}
if (cl == null) {
// No thread context class loader -> use class loader of this class.
cl = ClassUtils.class.getClassLoader();
}
return cl;
}
</code></pre></div>
<p dir="auto">The current workaround I have now is to duplicate the class hierarchy:</p>
<p dir="auto">AbstractApplicationContext<br>
AbstractRefreshableApplicationContext<br>
AbstractXmlApplicationContext<br>
ClassPathXmlApplicationContext</p>
<p dir="auto">so that my AbstractApplicationContext passes in the ClassLoader to DefaultResourceLoader</p>
<p dir="auto">Thanks</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 1.2.8, 2.0 RC3, 2.0 RC4</p>
<p dir="auto"><strong>Backported to:</strong> <a href="https://github.com/spring-projects/spring-framework/milestone/39?closed=1">1.2.9</a></p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=mkanaley" rel="nofollow">Michael Kanaley</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2326?redirect=false" rel="nofollow">SPR-2326</a></strong> and commented</p>
<p dir="auto">Spring 2.0 now supports ApplicationContexts implementing the Lifecycle interface. I would like to see the start/stop functionality treated identically to that of init/destroy in the following way:</p>
<ul dir="auto">
<li>sending of an ApplicationEvent after start and before stop<br>
Currently init and destroy of ApplicationContexts send events as well. I would like to see this for start/stop too.</li>
</ul>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 RC2</p> | 0 |
<p dir="auto">Hello everyone,<br>
I have a project on react / typescript with webpack 2 and different components and modules and submodules refered by the main module from outside.<br>
The structure is this:<br>
in index.ts - are all my exports with</p>
<p dir="auto">export * from './"helper1"<br>
export * from './"helper2"<br>
export * from './"helper3"<br>
export * from './"authorize"</p>
<p dir="auto">and in the upper levels I'm exporting the folder name like this<br>
export * from './Common'</p>
<p dir="auto">export * from './Core'</p>
<p dir="auto">example:<br>
-App(folder)<br>
-Core(folder)<br>
-Common(folder)<br>
-helper1.ts<br>
-helper2.ts<br>
-helper3.ts<br>
-authorize.tsx<br>
index.ts - (export * from './helper1' export * from './helper2' export * from './helper3' export * from './authorize')</p>
<p dir="auto"><strong>when generate the final bundle with index exports it duplicates components (one and the same component is occured 2 or 3 times in bundle instead of one with different numbers like this:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* 445 */
/***/ (function(module, exports, __webpack_require__) {
var LogAppender = __webpack_require__(441);
var log4js = __webpack_require__(21);
var Helper1;
(function (Helper1) {
function initializeLogger(Service1) {
log4js.clearAppenders();
log4js.loadAppender("ajaxLogAppender", ajaxLogAppender);
log4js.addAppender(log4js.appenders.ajaxLogAppender({ type: 'ajaxLogAppender', category: 'corp', logService: Service1, logInConsole: true }), 'corp');
var logger = log4js.getLogger('corp');
logger.setLevel('info');
}
Helper1.initializeLogger = initializeLogger;
})(Helper1 = exports.Helper1 || (exports.Helper1 = {}));
exports.logger = log4js.getLogger('corp');
/***/ }),"><pre class="notranslate"><code class="notranslate">/* 445 */
/***/ (function(module, exports, __webpack_require__) {
var LogAppender = __webpack_require__(441);
var log4js = __webpack_require__(21);
var Helper1;
(function (Helper1) {
function initializeLogger(Service1) {
log4js.clearAppenders();
log4js.loadAppender("ajaxLogAppender", ajaxLogAppender);
log4js.addAppender(log4js.appenders.ajaxLogAppender({ type: 'ajaxLogAppender', category: 'corp', logService: Service1, logInConsole: true }), 'corp');
var logger = log4js.getLogger('corp');
logger.setLevel('info');
}
Helper1.initializeLogger = initializeLogger;
})(Helper1 = exports.Helper1 || (exports.Helper1 = {}));
exports.logger = log4js.getLogger('corp');
/***/ }),
</code></pre></div>
<p dir="auto"><strong>and the second occurance:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* 464 */
/***/ (function(module, exports, __webpack_require__) {
var LogAppender = __webpack_require__(460);
var log4js = __webpack_require__(21);
var Helper1;
(function (Helper1) {
function initializeLogger(Service1) {
log4js.clearAppenders();
log4js.loadAppender("ajaxLogAppender", ajaxLogAppender);
log4js.addAppender(log4js.appenders.ajaxLogAppender({ type: 'ajaxLogAppender', category: 'corp', logService: Service1, logInConsole: true }), 'corp');
var logger = log4js.getLogger('corp');
logger.setLevel('info');
}
Helper1.initializeLogger = initializeLogger;
})(Helper1 = exports.Helper1 || (exports.Helper1 = {}));
exports.logger = log4js.getLogger('corp');
/***/ }),"><pre class="notranslate"><code class="notranslate">/* 464 */
/***/ (function(module, exports, __webpack_require__) {
var LogAppender = __webpack_require__(460);
var log4js = __webpack_require__(21);
var Helper1;
(function (Helper1) {
function initializeLogger(Service1) {
log4js.clearAppenders();
log4js.loadAppender("ajaxLogAppender", ajaxLogAppender);
log4js.addAppender(log4js.appenders.ajaxLogAppender({ type: 'ajaxLogAppender', category: 'corp', logService: Service1, logInConsole: true }), 'corp');
var logger = log4js.getLogger('corp');
logger.setLevel('info');
}
Helper1.initializeLogger = initializeLogger;
})(Helper1 = exports.Helper1 || (exports.Helper1 = {}));
exports.logger = log4js.getLogger('corp');
/***/ }),
</code></pre></div>
<p dir="auto">**when the route is static route to component like this: (import { Helper1 } from 'App/Core/Common/Helper1') then the occurence is only one, but when I import it like this:<br>
(import { Helper1 } from 'Core') it does multiple occurences in the final bundle.<br>
**</p>
<p dir="auto">I've tried to add the dedupe plugin in webpack.config / it does some optimization but it does not solve the duplication of my components (in some sites there is information that dedupe is deprecated in webpack 2. is it realy deprecated or not?). Tried also the commonchunks plugin.</p> | <p dir="auto"><strong>Do you want to request a feature or report a bug?</strong><br>
Bug</p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
When used with commonsChunk with <code class="notranslate">async:true</code> and <code class="notranslate">children:true</code> I get a message that I have missing dependencies in all the folders specified in the <code class="notranslate">resolve.alias</code> config.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br>
Using laravel-mix for setting up webpack.<br>
My two entries are:<br>
'resources/assets/js/app.js'<br>
'resources/assets/js/admin.js'<br>
config: <a href="https://gist.github.com/dobromir-hristov/546c4cc0d321e6c6ca3486d89fa766b9">https://gist.github.com/dobromir-hristov/546c4cc0d321e6c6ca3486d89fa766b9</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
Should be able to find the aliased files.</p>
<p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version and Operating System.</strong><br>
Node - 6.9.1<br>
Webpack 3.2.0, 3.3.0<br>
Windows 10</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9863944/28641253-409a392a-7257-11e7-8970-a5bdcee07f78.png"><img src="https://user-images.githubusercontent.com/9863944/28641253-409a392a-7257-11e7-8970-a5bdcee07f78.png" alt="127 0 0 1-8888-" style="max-width: 100%;"></a></p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.5.10</li>
<li>Operating System version: win10</li>
<li>Java version: 10</li>
</ul>
<h3 dir="auto">Step to reproduce this issue</h3>
<ol dir="auto">
<li>add dependency hessian into maven</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
<version>4.0.7</version>
</dependency>"><pre class="notranslate"><code class="notranslate"><dependency>
<groupId>com.caucho</groupId>
<artifactId>hessian</artifactId>
<version>4.0.7</version>
</dependency>
</code></pre></div>
<ol start="2" dir="auto">
<li>Use API Configuration to setup a consumer, with spring-boot</li>
<li>Use Generic Reference to invoke a remote provider, using protocol hessian</li>
</ol>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">got a error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.IllegalStateException: Unsupported protocol hessian in notified url: hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686 from registry localhost:2181 to consumer x.x.x.x, supported protocol: [dubbo, http, injvm, mock, redis, registry, rmi, thrift]"><pre class="notranslate"><code class="notranslate">java.lang.IllegalStateException: Unsupported protocol hessian in notified url: hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686 from registry localhost:2181 to consumer x.x.x.x, supported protocol: [dubbo, http, injvm, mock, redis, registry, rmi, thrift]
</code></pre></div>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2018-08-03 17:28:45.564 ERROR 26132 --- [ main] c.a.d.r.integration.RegistryDirectory : Unsupported protocol hessian in notified url: hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686 from registry localhost:2181 to consumer x.x.x.x, supported protocol: [dubbo, http, injvm, mock, redis, registry, rmi, thrift]
java.lang.IllegalStateException: Unsupported protocol hessian in notified url: hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686 from registry localhost:2181 to consumer x.x.x.x, supported protocol: [dubbo, http, injvm, mock, redis, registry, rmi, thrift]
at com.alibaba.dubbo.registry.integration.RegistryDirectory.toInvokers(RegistryDirectory.java:362)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.refreshInvoker(RegistryDirectory.java:251)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.notify(RegistryDirectory.java:221)
at com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:407)
at com.alibaba.dubbo.registry.support.FailbackRegistry.doNotify(FailbackRegistry.java:273)
at com.alibaba.dubbo.registry.support.FailbackRegistry.notify(FailbackRegistry.java:259)
at com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry.doSubscribe(ZookeeperRegistry.java:182)
at com.alibaba.dubbo.registry.support.FailbackRegistry.subscribe(FailbackRegistry.java:189)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.subscribe(RegistryDirectory.java:159)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.doRefer(RegistryProtocol.java:302)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.refer(RegistryProtocol.java:283)
at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper.refer(ProtocolFilterWrapper.java:98)
at com.alibaba.dubbo.qos.protocol.QosProtocolWrapper.refer(QosProtocolWrapper.java:63)
at com.alibaba.dubbo.rpc.protocol.ProtocolListenerWrapper.refer(ProtocolListenerWrapper.java:63)
at com.alibaba.dubbo.rpc.Protocol$Adaptive.refer(Protocol$Adaptive.java)
at com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:394)
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:333)
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.getGenericService(DubboHessianGenericDomeTest.java:60)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.testInputStream(DubboHessianGenericDomeTest.java:44)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.springframework.test.context.junit4.statements.RunBeforeTestExecutionCallbacks.evaluate(RunBeforeTestExecutionCallbacks.java:73)
at org.springframework.test.context.junit4.statements.RunAfterTestExecutionCallbacks.evaluate(RunAfterTestExecutionCallbacks.java:83)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:251)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:97)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:190)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
2018-08-03 17:28:45.565 ERROR 26132 --- [ main] c.a.d.r.integration.RegistryDirectory : urls to invokers error .invokerUrls.size :1, invoker.size :0. urls :[hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686]
java.lang.IllegalStateException: urls to invokers error .invokerUrls.size :1, invoker.size :0. urls :[hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686]
at com.alibaba.dubbo.registry.integration.RegistryDirectory.refreshInvoker(RegistryDirectory.java:256)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.notify(RegistryDirectory.java:221)
at com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:407)
at com.alibaba.dubbo.registry.support.FailbackRegistry.doNotify(FailbackRegistry.java:273)
at com.alibaba.dubbo.registry.support.FailbackRegistry.notify(FailbackRegistry.java:259)
at com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry.doSubscribe(ZookeeperRegistry.java:182)
at com.alibaba.dubbo.registry.support.FailbackRegistry.subscribe(FailbackRegistry.java:189)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.subscribe(RegistryDirectory.java:159)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.doRefer(RegistryProtocol.java:302)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.refer(RegistryProtocol.java:283)
at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper.refer(ProtocolFilterWrapper.java:98)
at com.alibaba.dubbo.qos.protocol.QosProtocolWrapper.refer(QosProtocolWrapper.java:63)
at com.alibaba.dubbo.rpc.protocol.ProtocolListenerWrapper.refer(ProtocolListenerWrapper.java:63)
at com.alibaba.dubbo.rpc.Protocol$Adaptive.refer(Protocol$Adaptive.java)
at com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:394)
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:333)
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.getGenericService(DubboHessianGenericDomeTest.java:60)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.testInputStream(DubboHessianGenericDomeTest.java:44)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.springframework.test.context.junit4.statements.RunBeforeTestExecutionCallbacks.evaluate(RunBeforeTestExecutionCallbacks.java:73)
at org.springframework.test.context.junit4.statements.RunAfterTestExecutionCallbacks.evaluate(RunAfterTestExecutionCallbacks.java:83)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:251)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:97)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:190)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)"><pre class="notranslate"><code class="notranslate">2018-08-03 17:28:45.564 ERROR 26132 --- [ main] c.a.d.r.integration.RegistryDirectory : Unsupported protocol hessian in notified url: hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686 from registry localhost:2181 to consumer x.x.x.x, supported protocol: [dubbo, http, injvm, mock, redis, registry, rmi, thrift]
java.lang.IllegalStateException: Unsupported protocol hessian in notified url: hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686 from registry localhost:2181 to consumer x.x.x.x, supported protocol: [dubbo, http, injvm, mock, redis, registry, rmi, thrift]
at com.alibaba.dubbo.registry.integration.RegistryDirectory.toInvokers(RegistryDirectory.java:362)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.refreshInvoker(RegistryDirectory.java:251)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.notify(RegistryDirectory.java:221)
at com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:407)
at com.alibaba.dubbo.registry.support.FailbackRegistry.doNotify(FailbackRegistry.java:273)
at com.alibaba.dubbo.registry.support.FailbackRegistry.notify(FailbackRegistry.java:259)
at com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry.doSubscribe(ZookeeperRegistry.java:182)
at com.alibaba.dubbo.registry.support.FailbackRegistry.subscribe(FailbackRegistry.java:189)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.subscribe(RegistryDirectory.java:159)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.doRefer(RegistryProtocol.java:302)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.refer(RegistryProtocol.java:283)
at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper.refer(ProtocolFilterWrapper.java:98)
at com.alibaba.dubbo.qos.protocol.QosProtocolWrapper.refer(QosProtocolWrapper.java:63)
at com.alibaba.dubbo.rpc.protocol.ProtocolListenerWrapper.refer(ProtocolListenerWrapper.java:63)
at com.alibaba.dubbo.rpc.Protocol$Adaptive.refer(Protocol$Adaptive.java)
at com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:394)
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:333)
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.getGenericService(DubboHessianGenericDomeTest.java:60)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.testInputStream(DubboHessianGenericDomeTest.java:44)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.springframework.test.context.junit4.statements.RunBeforeTestExecutionCallbacks.evaluate(RunBeforeTestExecutionCallbacks.java:73)
at org.springframework.test.context.junit4.statements.RunAfterTestExecutionCallbacks.evaluate(RunAfterTestExecutionCallbacks.java:83)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:251)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:97)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:190)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
2018-08-03 17:28:45.565 ERROR 26132 --- [ main] c.a.d.r.integration.RegistryDirectory : urls to invokers error .invokerUrls.size :1, invoker.size :0. urls :[hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686]
java.lang.IllegalStateException: urls to invokers error .invokerUrls.size :1, invoker.size :0. urls :[hessian://x.x.x.x:8081/com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider?accesslog=true&anyhost=true&application=mock-dubbo-provider&default.delay=-1&delay=-1&dubbo=2.0.1&generic=false&interface=com.xx.xx.xx.mock.dubbo.provider.dubbo.GenericReferenceHessianProtocolProvider&methods=getInputStreamByUrl,getInputStream&pid=15020&server=jetty&side=provider&timestamp=1533283864686]
at com.alibaba.dubbo.registry.integration.RegistryDirectory.refreshInvoker(RegistryDirectory.java:256)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.notify(RegistryDirectory.java:221)
at com.alibaba.dubbo.registry.support.AbstractRegistry.notify(AbstractRegistry.java:407)
at com.alibaba.dubbo.registry.support.FailbackRegistry.doNotify(FailbackRegistry.java:273)
at com.alibaba.dubbo.registry.support.FailbackRegistry.notify(FailbackRegistry.java:259)
at com.alibaba.dubbo.registry.zookeeper.ZookeeperRegistry.doSubscribe(ZookeeperRegistry.java:182)
at com.alibaba.dubbo.registry.support.FailbackRegistry.subscribe(FailbackRegistry.java:189)
at com.alibaba.dubbo.registry.integration.RegistryDirectory.subscribe(RegistryDirectory.java:159)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.doRefer(RegistryProtocol.java:302)
at com.alibaba.dubbo.registry.integration.RegistryProtocol.refer(RegistryProtocol.java:283)
at com.alibaba.dubbo.rpc.protocol.ProtocolFilterWrapper.refer(ProtocolFilterWrapper.java:98)
at com.alibaba.dubbo.qos.protocol.QosProtocolWrapper.refer(QosProtocolWrapper.java:63)
at com.alibaba.dubbo.rpc.protocol.ProtocolListenerWrapper.refer(ProtocolListenerWrapper.java:63)
at com.alibaba.dubbo.rpc.Protocol$Adaptive.refer(Protocol$Adaptive.java)
at com.alibaba.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:394)
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:333)
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.getGenericService(DubboHessianGenericDomeTest.java:60)
at com.xx.xx.api.gateway.gateway.config.test.DubboHessianGenericDomeTest.testInputStream(DubboHessianGenericDomeTest.java:44)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.springframework.test.context.junit4.statements.RunBeforeTestExecutionCallbacks.evaluate(RunBeforeTestExecutionCallbacks.java:73)
at org.springframework.test.context.junit4.statements.RunAfterTestExecutionCallbacks.evaluate(RunAfterTestExecutionCallbacks.java:83)
at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:251)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:97)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:190)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
</code></pre></div> | <ul class="contains-task-list">
<li>[โ] I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.3</li>
<li>Operating System version: Windows 10</li>
<li>Java version: Oracle JDK 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>set <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/reference/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/reference">@reference</a>(timeout = 10000)</li>
<li>kill -9 provider</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">fast return when timeout is not reached</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">What actually happens?</p>
<p dir="auto">the consumer returns until the timeout ends</p>
<p dir="auto">detail see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="334154640" data-permission-text="Title is private" data-url="https://github.com/apache/dubbo/issues/1968" data-hovercard-type="issue" data-hovercard-url="/apache/dubbo/issues/1968/hovercard" href="https://github.com/apache/dubbo/issues/1968">#1968</a></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>
NgModule constructor calls two times when loading of module lazy using loadChildren (Active route is different)<br>
But when NgModule is active route, constructor invoked single time</p>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
Single time loading and compiling</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> Chrome 53</li>
<li><strong>Language:</strong> TypeScript 2.0</li>
</ul> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@Directive({
selector: 'parent child'
})"><pre class="notranslate"><code class="notranslate">@Directive({
selector: 'parent child'
})
</code></pre></div>
<p dir="auto">Should throw an error, since we don't support selectors which cross elements.</p> | 0 |
<p dir="auto">Two recent requests recently to suppress logging on console <a href="http://stackoverflow.com/questions/35911252/disable-tensorflow-debugging-information" rel="nofollow">1</a>, <a href="http://stackoverflow.com/questions/35869137/avoid-tensorflow-print-on-standard-error" rel="nofollow">2</a></p>
<p dir="auto">Since TensorFlow uses Google logging library standard flags should work, ie "export GLOG_logtostderr=0" should turn off logging to console. However that doesn't work, I suspect these flags are explicitly overriden in code somewhere</p> | <p dir="auto"><a href="https://www.tensorflow.org/get_started/get_started" rel="nofollow">https://www.tensorflow.org/get_started/get_started</a><br>
Basic Usage example output:</p>
<p dir="auto">WARNING:tensorflow:Using temporary folder as model directory: C:\Users\pocherka\AppData\Local\Temp\tmpaq48b_3u<br>
WARNING:tensorflow:From C:\Users\pocherka\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\contrib\learn\python\learn\estimators\head.py:625: scalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will be removed after 2016-11-30.<br>
Instructions for updating:<br>
Please switch to tf.summary.scalar. Note that tf.summary.scalar uses the node name instead of the tag. This means that TensorFlow will automatically de-duplicate summary names based on the scope they are created in. Also, passing a tensor or list of tags to a scalar summary op is no longer supported.<br>
WARNING:tensorflow:From C:\Users\pocherka\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\contrib\learn\python\learn\estimators\head.py:625: scalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will be removed after 2016-11-30.<br>
Instructions for updating:<br>
Please switch to tf.summary.scalar. Note that tf.summary.scalar uses the node name instead of the tag. This means that TensorFlow will automatically de-duplicate summary names based on the scope they are created in. Also, passing a tensor or list of tags to a scalar summary op is no longer supported.<br>
WARNING:tensorflow:From C:\Users\pocherka\AppData\Local\Programs\Python\Python35\lib\site-packages\tensorflow\contrib\learn\python\learn\estimators\head.py:625: scalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will be removed after 2016-11-30.<br>
Instructions for updating:<br>
Please switch to tf.summary.scalar. Note that tf.summary.scalar uses the node name instead of the tag. This means that TensorFlow will automatically de-duplicate summary names based on the scope they are created in. Also, passing a tensor or list of tags to a scalar summary op is no longer supported.<br>
train loss: {'global_step': 1000, 'loss': 2.3828899e-11}<br>
eval loss: {'global_step': 1000, 'loss': 0.0025255322}sic usage</p> | 0 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.5.17</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://codepen.io/megacromulent/pen/gdMYLx?editors=1010" rel="nofollow">https://codepen.io/megacromulent/pen/gdMYLx?editors=1010</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>Create vue app with items displaying in a list.</li>
<li>Add transition group with <strong>v-for</strong> with format like <strong>v-for="(item, index) in items"</strong></li>
<li>Use "index" from v-for as the <strong>v-bind:key</strong> (like: v-bind:key="<strong>index</strong>" )</li>
<li>Add and remove items from the data.</li>
</ol>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">The item being removed/added should have the transition applied to it.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">The last item in the list gets the transition applied.</p>
<hr>
<p dir="auto">This may be an old bug, as I was hunting for a solution to my problem, I ran into this from May 2017:</p>
<p dir="auto"><a href="https://stackoverflow.com/questions/43598308/vue-js-wrong-transition-group-animation-position" rel="nofollow">https://stackoverflow.com/questions/43598308/vue-js-wrong-transition-group-animation-position</a></p>
<p dir="auto">If this is the intended behavior using index as the key, then can their be at least a warning message in the dev version of Vue.js to explain this? Or perhaps searchable text in the documentation with something like "only last item in list is animating/transition applied" so a solution can be found without thinking there is a bug in Vue.js.</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://cdn.jsdelivr.net/npm/[email protected]" rel="nofollow">cdn.jsdelivr.net</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Our project cannot be accessed because vue cannot be obtained from <a href="https://cdn.jsdelivr.net/npm/[email protected]%EF%BC%8CCopying" rel="nofollow">https://cdn.jsdelivr.net/npm/[email protected]๏ผCopying</a> the link to the browser will report an error</p>
<p dir="auto">google chrome error info๏ผ<br>
cdn.jsdelivr.net ้ๅธธไผไฝฟ็จๅ ๅฏๆๆฏๆฅไฟๆคๆจ็ไฟกๆฏใGoogle Chrome ๆญคๆฌกๅฐ่ฏ่ฟๆฅๅฐ cdn.jsdelivr.net ๆถ๏ผๆญค็ฝ็ซๅๅไบๅผๅธธ็้่ฏฏๅญๆฎใ่ฟๅฏ่ฝๆฏๅ ไธบๆๆปๅป่
ๅจ่ฏๅพๅๅ
cdn.jsdelivr.net๏ผๆ Wi-Fi ็ปๅฝๅฑๅนไธญๆญไบๆญคๆฌก่ฟๆฅใ่ฏทๆพๅฟ๏ผๆจ็ไฟกๆฏไป็ถๆฏๅฎๅ
จ็๏ผๅ ไธบ Google Chrome ๅฐๆช่ฟ่กไปปไฝๆฐๆฎไบคๆขไพฟๅๆญขไบ่ฟๆฅใ</p>
<p dir="auto">ๆจ็ฎๅๆ ๆณ่ฎฟ้ฎ cdn.jsdelivr.net๏ผๅ ไธบๆญค็ฝ็ซไฝฟ็จไบ HSTSใ็ฝ็ป้่ฏฏๅๆปๅป้ๅธธๆฏๆๆถ็๏ผๅ ๆญค๏ผๆญค็ฝ้กต็จๅๅฏ่ฝไผๆขๅคๆญฃๅธธใ</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">can visit</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Not accessible</p> | 0 |
Subsets and Splits